File tree Expand file tree Collapse file tree 2 files changed +17
-22
lines changed
display_configs/LilyGo-TDeck Expand file tree Collapse file tree 2 files changed +17
-22
lines changed Original file line number Diff line number Diff line change
1
+
2
+ _I2S_WS = const (5 )
3
+ _I2S_DA = const (6 )
4
+ _I2S_BCK = const (7 )
5
+
6
+ _C3_INT = const (46 )
7
+
8
+ _ES7210_DIN = const (14 )
9
+ _ES2710_LRCK = const (21 )
10
+ _ES2710_SCLK = const (47 )
11
+ _ES2710_MCLK = const (48 )
12
+
13
+
14
+ _GPIO0 = const (0 )
15
+
16
+ _UART0_RX = const (43 )
17
+ _UART0_TX = const (44 )
Original file line number Diff line number Diff line change 4
4
import machine
5
5
from micropython import const # NOQA
6
6
7
- _I2S_WS = const (5 )
8
- _I2S_DA = const (6 )
9
- _I2S_BCK = const (7 )
10
-
11
- _C3_INT = const (46 )
12
-
13
- _ES7210_DIN = const (14 )
14
- _ES2710_LRCK = const (21 )
15
- _ES2710_SCLK = const (47 )
16
- _ES2710_MCLK = const (48 )
17
-
18
-
19
- _GPIO0 = const (0 )
20
-
21
- _LCD_CS = const (12 )
22
- _LCD_DC = const (11 )
23
- _LCD_EN = const (42 )
24
-
25
- _UART0_RX = const (43 )
26
- _UART0_TX = const (44 )
27
-
28
-
29
7
_UP = 0x01
30
8
_DOWN = 0x02
31
9
_LEFT = 0x04
You can’t perform that action at this time.
0 commit comments