Added GPIO 20 and 21 for ESP32-C3 (#979)

* Added GPIO 20 and 21 for C3

* Updated webapp after changing GPIO for C3
This commit is contained in:
Gunnar Skjold
2025-09-25 10:39:55 +02:00
committed by GitHub
parent 94ff9d6da7
commit 9bd9826835
2 changed files with 2 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@@ -7,7 +7,7 @@
case 'esp8266': gpioMax = 16; break;
case 'esp32s2': gpioMax = 44; break;
case 'esp32s3': gpioMax = 46; break;
case 'esp32c3': gpioMax = 19; break;
case 'esp32c3': gpioMax = 21; break;
}
}
</script>
@@ -23,4 +23,3 @@
<option value={i}>GPIO{i}</option>
{/if}
{/each}