diff --git a/ESP32-Console/main/cmd_gpio_set.h b/ESP32-Console/main/cmd_gpio_set.h index 2fc6a87e3..83297c7d4 100644 --- a/ESP32-Console/main/cmd_gpio_set.h +++ b/ESP32-Console/main/cmd_gpio_set.h @@ -69,7 +69,7 @@ static int exec_gpio_set_cmd (int argc, char **argv) { 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.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 the given GPIO."); gpio_set_args.end = arg_end(2);