blob: ef9c04e02f277c278c72b5645e19b5665d4ef996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
// Avoid and QSPI pins
#define R1_PIN_DEFAULT 7
#define G1_PIN_DEFAULT 4
#define B1_PIN_DEFAULT 1
#define R2_PIN_DEFAULT 6
#define G2_PIN_DEFAULT 3
#define B2_PIN_DEFAULT 0
#define A_PIN_DEFAULT 20
#define B_PIN_DEFAULT 21
#define C_PIN_DEFAULT 22
#define D_PIN_DEFAULT 23
#define E_PIN_DEFAULT -1 // required for 1/32 scan panels, like 64x64. Any available pin would do, i.e. IO32
#define LAT_PIN_DEFAULT 5
#define OE_PIN_DEFAULT 2
#define CLK_PIN_DEFAULT 10
|