mirror of
https://github.com/me-no-dev/ESPAsyncWebServer.git
synced 2026-01-26 16:52:20 +01:00
- fixes - SPIFFSEditor is changed to be standalone - works with acefull.js.gz, see the example Added a real SmartSwitch application to examples
13 lines
490 B
Plaintext
13 lines
490 B
Plaintext
ESP12
|
|
|
|
static const uint8_t D0 = 16;
|
|
static const uint8_t D1 = 5;
|
|
static const uint8_t D2 = 4; // DHT DATA I/O
|
|
static const uint8_t D3 = 0; // BUTTON - most modules have it populated on PCB
|
|
static const uint8_t D4 = 2; // LED (RELAY) - most modules have it populated on PCB
|
|
static const uint8_t D5 = 14;
|
|
static const uint8_t D6 = 12;
|
|
static const uint8_t D7 = 13;
|
|
static const uint8_t D8 = 15;
|
|
static const uint8_t D9 = 3;
|
|
static const uint8_t D10 = 1; |