Skip to content

Instantly share code, notes, and snippets.

@rohansingh
Created April 5, 2021 13:26
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rohansingh/7972d01f467b1fe4edd1ce9e32f430b7 to your computer and use it in GitHub Desktop.
Save rohansingh/7972d01f467b1fe4edd1ce9e32f430b7 to your computer and use it in GitHub Desktop.
Tidbyt LED matrix pinout

These pinouts are formatted for use with SmartMatrix, but the pin numbers will work for any library.

#pragma message "tidbyt v6 wiring"
// ADDX is output directly using GPIO
#define CLKS_DURING_LATCH 0
#define MATRIX_I2S_MODE I2S_PARALLEL_BITS_16
#define MATRIX_DATA_STORAGE_TYPE uint16_t
#define R1_PIN GPIO_NUM_21
#define G1_PIN GPIO_NUM_2
#define B1_PIN GPIO_NUM_22
#define R2_PIN GPIO_NUM_23
#define G2_PIN GPIO_NUM_4
#define B2_PIN GPIO_NUM_27
#define A_PIN GPIO_NUM_26
#define B_PIN GPIO_NUM_5
#define C_PIN GPIO_NUM_25
#define D_PIN GPIO_NUM_18
#define E_PIN -1
#define LAT_PIN GPIO_NUM_19
#define OE_PIN GPIO_NUM_32
@petersem
Copy link

petersem commented Jan 8, 2023

What does the E-Pin = -1 line mean? (line 19)

@rohansingh
Copy link
Author

What does the E-Pin = -1 line mean? (line 19)

It means that we don't have or use an E pin.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment