forked from espressif/arduino-esp32
- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpins_arduino.h
52 lines (41 loc) · 1.5 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
52
#ifndefPins_Arduino_h
#definePins_Arduino_h
#include<stdint.h>
#include"soc/soc_caps.h"
#defineUSB_VID 0x303A
#defineUSB_PID 0x1001
#defineUSB_MANUFACTURER "RFtek Electronics"
#defineUSB_PRODUCT "cezerio dev ESP32C6"
#defineUSB_SERIAL ""
#definePIN_RGB_LED 3
// BUILTIN_LED can be used in new Arduino API digitalWrite() like in Blink.ino
staticconstuint8_tLED_BUILTIN=SOC_GPIO_PIN_COUNT+PIN_RGB_LED;
#defineBUILTIN_LED LED_BUILTIN // backward compatibility
#defineLED_BUILTIN LED_BUILTIN // allow testing #ifdef LED_BUILTIN
// RGB_BUILTIN and RGB_BRIGHTNESS can be used in new Arduino API rgbLedWrite()
#defineRGB_BUILTIN LED_BUILTIN
#defineRGBLED LED_BUILTIN
#defineRGB_BRIGHTNESS 64
staticconstuint8_tBUT_BUILTIN=9;
#defineBUILTIN_BUT BUT_BUILTIN // backward compatibility
#defineBUT_BUILTIN BUT_BUILTIN // allow testing #ifdef BUT_BUILTIN
#defineBOOT BUT_BUILTIN
staticconstuint8_tTX=16;
staticconstuint8_tRX=17;
staticconstuint8_tSDA=8;
staticconstuint8_tSCL=7;
staticconstuint8_tSS=14;
staticconstuint8_tMOSI=22;
staticconstuint8_tMISO=23;
staticconstuint8_tSCK=21;
staticconstuint8_tA0=0;
staticconstuint8_tA1=1;
staticconstuint8_tA2=2;
staticconstuint8_tA3=3;
staticconstuint8_tA4=4;
staticconstuint8_tA5=5;
staticconstuint8_tA6=6;
staticconstuint8_tMATRIX=18;
staticconstuint8_tIMUSD=8;
staticconstuint8_tIMUSC=7;
#endif/* Pins_Arduino_h */