Skip to content

Commit 5dc34d1

Browse files
committed
- Update board and filesystem detail.
- use LED_BUILTIN instead of BUILTIN_LED. - update package_esp8266com_index.template.json file.
1 parent b01a766 commit 5dc34d1

File tree

5 files changed

+18
-3
lines changed

5 files changed

+18
-3
lines changed

doc/boards.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ title: Supported Hardware
44

55
## Table of contents
66
* [Adafruit HUZZAH ESP8266 (ESP\-12)](#adafruit-huzzah-esp8266-esp-12)
7+
* [ESPresso Lite 1.0](#espresso-lite)
8+
* [ESPresso Lite 2.0](#espresso-lite)
79
* [NodeMCU 0\.9 <a name="user\-content\-nodemcu\-0\-9"></a>](#nodemcu-09-)
810
* [Pin mapping](#pin-mapping)
911
* [NodeMCU 1\.0](#nodemcu-10)
@@ -32,6 +34,11 @@ title: Supported Hardware
3234

3335
*TODO: add notes*
3436

37+
## ESPresso Lite
38+
39+
The latest Arduino-compatible ESP8266 Wi-Fi development board for makers and novice learners to build their very own Internet-of-Things (IoT) projects.
40+
41+
3542
## NodeMCU 0.9
3643

3744
### Pin mapping
@@ -190,7 +197,7 @@ ESPxx Hardware
190197
| CH_PD | PullUp | |
191198

192199
* Note
193-
- if no RTS is used a manual power toggle is needed
200+
- if no RTS is used a manual power toggle is needed
194201

195202
### Minimal Hardware Setup for Running only ##
196203

doc/filesystem.md

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ Generic module | 1M | 64k, 128k, 256k, 512k
4343
Generic module | 2M | 1M
4444
Generic module | 4M | 3M
4545
Adafruit HUZZAH | 4M | 1M, 3M
46+
ESPresso Lite 1.0 | 4M | 1M, 3M
47+
ESPresso Lite 2.0 | 4M | 1M, 3M
4648
NodeMCU 0.9 | 4M | 1M, 3M
4749
NodeMCU 1.0 | 4M | 1M, 3M
4850
Olimex MOD-WIFI-ESP8266(-DEV)| 2M | 1M

package/package_esp8266com_index.template.json

+6
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@
3737
{
3838
"name": "Adafruit HUZZAH ESP8266 (ESP-12)"
3939
},
40+
{
41+
"name": "ESPresso Lite 1.0"
42+
},
43+
{
44+
"name": "ESPresso Lite 2.0"
45+
},
4046
{
4147
"name": "SparkFun Thing"
4248
},

variants/espresso_lite_v1/pins_arduino.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ static const uint8_t MOSI = 13;
4242
static const uint8_t MISO = 12;
4343
static const uint8_t SCK = 14;
4444

45-
static const uint8_t BUILTIN_LED = 16;
45+
static const uint8_t LED_BUILTIN = 16;
4646

4747
static const uint8_t A0 = 17;
4848

variants/espresso_lite_v2/pins_arduino.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ static const uint8_t MOSI = 13;
4242
static const uint8_t MISO = 12;
4343
static const uint8_t SCK = 14;
4444

45-
static const uint8_t BUILTIN_LED = 2;
45+
static const uint8_t LED_BUILTIN = 2;
4646

4747
static const uint8_t A0 = 17;
4848

0 commit comments

Comments
 (0)