From 36a0fee5dff8413c360e50a8ae40b2d2dc34a94b Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Fri, 17 Jan 2025 18:20:20 -0500 Subject: [PATCH] ESP32-Console --- ESP32-Console/main/cmd_gpio_set.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ESP32-Console/main/cmd_gpio_set.h b/ESP32-Console/main/cmd_gpio_set.h index e71f96c2f..233c3622b 100644 --- a/ESP32-Console/main/cmd_gpio_set.h +++ b/ESP32-Console/main/cmd_gpio_set.h @@ -60,7 +60,7 @@ static void register_gpio_set_cmd (void) { gpio_set_args.gpio = arg_int0("p", "gpio", "", "Specifies GPIO to be used"); gpio_set_args.mode = arg_str0("m", "mode", "", "Sets the mode of GPIO."); gpio_set_args.level = arg_int0("l", "level", "<1|0>", "Sets the logical level of GPIO."); - gpio_set_args.pwm = arg_int0("f", "pwm", "", "Set PWM for GPIO."); + gpio_set_args.pwm = arg_int0("f", "pwm", "", "Set PWM for the given GPIO."); gpio_set_args.end = arg_end(2); const esp_console_cmd_t gpio_set_cmd = { .command = "gpio-set",