Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#5 add LilyGo-T-RGB board #9

Merged
merged 2 commits into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,25 @@ Update the [CHANGELOG.md](CHANGELOG.md) file before you are creating a new relea

## Supported boards

- ESP32 (buy with affiliate link: [LILYGO T-Beam](https://s.click.aliexpress.com/e/_DBzslDV) with LoRA, lolin32, lolin D32 pro)
Buy on AliExpress (affiliate links) ...

- ESP32
- [LILYGO T-Beam](https://s.click.aliexpress.com/e/_DBzslDV) with LoRA
- lolin32
- lolin D32 pro
- ESP32 S2
- 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)
- 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)
- ESP32 S3
- [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)
- [LilyGo T-RGB](https://s.click.aliexpress.com/e/_Dem6i0b)

- ESP32 C6 with WiFi 6 and BT-5 LE
- [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

## Disclaimer

Expand Down
40 changes: 40 additions & 0 deletions boards/LilyGo-T-RGB.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"build": {
"arduino": {
"ldscript": "esp32s3_out.ld",
"memory_type": "qio_opi",
"partitions": "default_16MB.csv"
},
"core": "esp32",
"extra_flags": [
"-D LILYGO_T_RGB",
"-D ARDUINO_USB_MODE=1",
"-D BOARD_HAS_PSRAM",
"-D ARDUINO_RUNNING_CORE=1",
"-D ARDUINO_EVENT_RUNNING_CORE=1"
],
"f_cpu": "240000000L",
"f_flash": "80000000L",
"flash_mode": "qio",
"hwids": [["0x303A", "0x1001"]],
"mcu": "esp32s3",
"variant": "esp32s3"
},
"connectivity": ["wifi", "bluetooth"],
"debug": {
"default_tool": "esp-builtin",
"onboard_tools": ["esp-builtin"],
"openocd_target": "esp32s3.cfg"
},
"frameworks": ["arduino", "espidf"],
"name": "LilyGo T-RGB (16M Flash 8M OPI PSRAM )",
"upload": {
"flash_size": "16MB",
"maximum_ram_size": 327680,
"maximum_size": 16777216,
"require_upload_port": true,
"speed": 921600
},
"url": "https://www.lilygo.cc/products/t-rgb",
"vendor": "LilyGo"
}
11 changes: 11 additions & 0 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,17 @@ lib_deps =
[env:lilygo-t-cameraplus-s3]
board = LilyGo-T-CameraPlus-ESP32-S3
board_build.partitions = huge_app.csv
build_flags =
${esp32s3.build_flags}
lib_deps =
${esp32s3.lib_deps}

; LILYGO: https://www.lilygo.cc/products/t-rgb
; repository: https://github.com/Xinyuan-LilyGO/LilyGo-T-RGB
; Buy and support mcuw on aliexpress (affiliate link): https://s.click.aliexpress.com/e/_Dem6i0b
[env:lilygo-t-rgb]
board = LilyGo-T-RGB
board_build.partitions = huge_app.csv
build_flags =
${esp32s3.build_flags}
lib_deps =
Expand Down