Skip to content

Commit 993f184

Browse files
authored
Merge pull request #9 from mcuw/5-board-lilygo-t-rgb
#5 add LilyGo-T-RGB board
2 parents c657841 + 6a8673c commit 993f184

File tree

3 files changed

+69
-3
lines changed

3 files changed

+69
-3
lines changed

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,25 @@ Update the [CHANGELOG.md](CHANGELOG.md) file before you are creating a new relea
7979

8080
## Supported boards
8181

82-
- ESP32 (buy with affiliate link: [LILYGO T-Beam](https://s.click.aliexpress.com/e/_DBzslDV) with LoRA, lolin32, lolin D32 pro)
82+
Buy on AliExpress (affiliate links) ...
83+
84+
- ESP32
85+
- [LILYGO T-Beam](https://s.click.aliexpress.com/e/_DBzslDV) with LoRA
86+
- lolin32
87+
- lolin D32 pro
8388
- ESP32 S2
84-
- ESP32 S3 (buy with affiliate link: [LILYGO T-Display S3](https://s.click.aliexpress.com/e/_DBmOMkn), [LILYGO T-Display-S3 AMOLED](https://s.click.aliexpress.com/e/_DmboYpZ), [LILYGO T-Display-S3 Touch](https://s.click.aliexpress.com/e/_DCBgPlV), [LILYGO T-Display S3 Long](https://s.click.aliexpress.com/e/_Dl6UVMx)), [LilyGo T-Watch S3](https://s.click.aliexpress.com/e/_DEZVvH1), [LilyGo T-CameraPlus ESP32-S3](https://s.click.aliexpress.com/e/_DkytBeT)
85-
- ESP32 C6 with WiFi 6 and BT-5 LE (buy with affiliate link: [UICPAL nanoESP32-C6](https://s.click.aliexpress.com/e/_DdZ83IB) with up to 16MB flash, [ESP32-C6](https://s.click.aliexpress.com/e/_DeLjVMb) with 4MB flash and W2812 RGB LED)
89+
- ESP32 S3
90+
- [LILYGO T-Display S3](https://s.click.aliexpress.com/e/_DBmOMkn)
91+
- [LILYGO T-Display-S3 AMOLED](https://s.click.aliexpress.com/e/_DmboYpZ)
92+
- [LILYGO T-Display-S3 Touch](https://s.click.aliexpress.com/e/_DCBgPlV)
93+
- [LILYGO T-Display S3 Long](https://s.click.aliexpress.com/e/_Dl6UVMx))
94+
- [LilyGo T-Watch S3](https://s.click.aliexpress.com/e/_DEZVvH1)
95+
- [LilyGo T-CameraPlus ESP32-S3](https://s.click.aliexpress.com/e/_DkytBeT)
96+
- [LilyGo T-RGB](https://s.click.aliexpress.com/e/_Dem6i0b)
97+
98+
- ESP32 C6 with WiFi 6 and BT-5 LE
99+
- [UICPAL nanoESP32-C6](https://s.click.aliexpress.com/e/_DdZ83IB) with up to 16MB flash
100+
- [ESP32-C6](https://s.click.aliexpress.com/e/_DeLjVMb) with 4MB flash and W2812 RGB LED
86101

87102
## Disclaimer
88103

boards/LilyGo-T-RGB.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32s3_out.ld",
5+
"memory_type": "qio_opi",
6+
"partitions": "default_16MB.csv"
7+
},
8+
"core": "esp32",
9+
"extra_flags": [
10+
"-D LILYGO_T_RGB",
11+
"-D ARDUINO_USB_MODE=1",
12+
"-D BOARD_HAS_PSRAM",
13+
"-D ARDUINO_RUNNING_CORE=1",
14+
"-D ARDUINO_EVENT_RUNNING_CORE=1"
15+
],
16+
"f_cpu": "240000000L",
17+
"f_flash": "80000000L",
18+
"flash_mode": "qio",
19+
"hwids": [["0x303A", "0x1001"]],
20+
"mcu": "esp32s3",
21+
"variant": "esp32s3"
22+
},
23+
"connectivity": ["wifi", "bluetooth"],
24+
"debug": {
25+
"default_tool": "esp-builtin",
26+
"onboard_tools": ["esp-builtin"],
27+
"openocd_target": "esp32s3.cfg"
28+
},
29+
"frameworks": ["arduino", "espidf"],
30+
"name": "LilyGo T-RGB (16M Flash 8M OPI PSRAM )",
31+
"upload": {
32+
"flash_size": "16MB",
33+
"maximum_ram_size": 327680,
34+
"maximum_size": 16777216,
35+
"require_upload_port": true,
36+
"speed": 921600
37+
},
38+
"url": "https://www.lilygo.cc/products/t-rgb",
39+
"vendor": "LilyGo"
40+
}

platformio.ini

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,17 @@ lib_deps =
225225
[env:lilygo-t-cameraplus-s3]
226226
board = LilyGo-T-CameraPlus-ESP32-S3
227227
board_build.partitions = huge_app.csv
228+
build_flags =
229+
${esp32s3.build_flags}
230+
lib_deps =
231+
${esp32s3.lib_deps}
232+
233+
; LILYGO: https://www.lilygo.cc/products/t-rgb
234+
; repository: https://github.com/Xinyuan-LilyGO/LilyGo-T-RGB
235+
; Buy and support mcuw on aliexpress (affiliate link): https://s.click.aliexpress.com/e/_Dem6i0b
236+
[env:lilygo-t-rgb]
237+
board = LilyGo-T-RGB
238+
board_build.partitions = huge_app.csv
228239
build_flags =
229240
${esp32s3.build_flags}
230241
lib_deps =

0 commit comments

Comments
 (0)