Difference between revisions of "RGB64x32MatrixPanel"

From RevSpace
Jump to navigation Jump to search
(Initial)
 
(Platformio.ini)
Line 16: Line 16:
  
 
== MCU ==
 
== MCU ==
 
 
== Platformio.ini ==
 
<nowiki>
 
[common_env_data]
 
lib_deps =
 
Adafruit GFX Library
 
Adafruit BusIO
 
Wire
 
FastLED
 
 
[env:ttgo-t1]
 
platform = espressif32
 
board = ttgo-t1
 
board_build.mcu = esp32
 
board_build.f_cpu = 240000000L
 
framework = arduino
 
upload_protocol = esptool
 
upload_port = /dev/cu.SLAB_USBtoUART
 
upload_speed = 1500000
 
monitor_speed = 115200
 
lib_deps =
 
${common_env_data.lib_deps}
 
</nowiki>
 

Revision as of 16:58, 25 September 2020

RGB64x32MatrixPanel on ESP32

For a friend I'm making a RGB LED panel, and need to pull some social media numbers and display them on the panel.

For this I wanted an ESP32 so it could do HTTP REST calls over wifi. I came across this library for efficiently talking to HUB75 RGB panels on an ESP32:

https://github.com/mrfaptastic/ESP32-RGB64x32MatrixPanel-I2S-DMA

Parts List

MCU