ESP32-Console

This commit is contained in:
2025-01-17 18:06:22 -05:00
parent ca35c5a600
commit 5685d15088
5 changed files with 7 additions and 4 deletions

View File

@@ -35,7 +35,10 @@ static int exec_gpio_set_cmd (int argc, char **argv) {
// Check that the minimal required arguments were passed, i.e. pin #, mode, and logic level.
if (gpio_set_args.gpio->count > 0 && gpio_set_args.level->count > 0) {
// Display brief summary of passed arguments.
ESP_LOGI("GPIO", "pin: %i, mode: %s, level: %i", gpio_set_args.gpio->ival[0], gpio_set_args.mode->sval[0], gpio_set_args.level->ival[0]);
ESP_LOGI("GPIO", "pin: %i, mode: %s, level: %i",
gpio_set_args.gpio->ival[0],
gpio_set_args.mode->sval[0],
gpio_set_args.level->ival[0]);
// Set the bit mask for the pin number that was passed
pin_config.pin_bit_mask = 1ULL << gpio_set_args.gpio->ival[0];
// Since we are setting the pin level, set the pin mode to OUTPUT