forked from espressif/arduino-esp32
- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpins_arduino.h
51 lines (40 loc) · 1.21 KB
/
pins_arduino.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndefPins_Arduino_h
#definePins_Arduino_h
#include<stdint.h>
#defineUSB_VID 0x3343
#defineUSB_PID 0x8364
#defineUSB_MANUFACTURER "DFRobot"
#defineUSB_PRODUCT "Beetle ESP32-C3"
#defineUSB_SERIAL "" // Empty string for MAC address
staticconstuint8_tLED_BUILTIN=10;
#defineBUILTIN_LED LED_BUILTIN // backward compatibility
#defineLED_BUILTIN LED_BUILTIN // allow testing #ifdef LED_BUILTIN
staticconstuint8_tTX=21;
staticconstuint8_tRX=20;
staticconstuint8_tSDA=8;
staticconstuint8_tSCL=9;
staticconstuint8_tSS=7;
staticconstuint8_tMOSI=6;
staticconstuint8_tMISO=5;
staticconstuint8_tSCK=4;
staticconstuint8_tA0=0;
staticconstuint8_tA1=1;
staticconstuint8_tA2=2;
staticconstuint8_tA3=3;
staticconstuint8_tA4=4;
staticconstuint8_tA5=5;
#defineGDI_DISPLAY_FPC_INTERFACE
#ifdefGDI_DISPLAY_FPC_INTERFACE
#defineGDI_BLK LED_BUILTIN
#defineGDI_SPI_SCLK SCK
#defineGDI_SPI_MOSI MOSI
#defineGDI_SPI_MISO MISO
#defineGDI_DC A1
#defineGDI_RES A2
#defineGDI_CS SS
#defineGDI_SDCS A0
#defineGDI_TCS A3
#defineGDI_SCL SCL
#defineGDI_SDA SDA
#endif
#endif/* Pins_Arduino_h */