forked from espressif/arduino-esp32
- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpins_arduino.h
42 lines (30 loc) · 1008 Bytes
/
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
#ifndefPins_Arduino_h
#definePins_Arduino_h
#include<stdint.h>
#include"soc/soc_caps.h"
// User LED
staticconstuint8_tLED_BUILTIN=4;
#defineBUILTIN_LED LED_BUILTIN // backward compatibility
#defineLED_BUILTIN LED_BUILTIN // allow testing #ifdef LED_BUILTIN
// Neopixel
staticconstuint8_tPIN_NEOPIXEL=2;
// RGB_BUILTIN and RGB_BRIGHTNESS can be used in new Arduino API rgbLedWrite() and digitalWrite() for blinking
#defineRGB_BUILTIN (PIN_NEOPIXEL + SOC_GPIO_PIN_COUNT)
#defineRGB_BRIGHTNESS 64
staticconstuint8_tTX=9;
staticconstuint8_tRX=10;
#defineTX1 TX
#defineRX1 RX
staticconstuint8_tSDA=14;
staticconstuint8_tSCL=13;
staticconstuint8_tSS=23;
staticconstuint8_tMOSI=9;
staticconstuint8_tMISO=10;
staticconstuint8_tSCK=18;
staticconstuint8_tA0=27;
// internal switch
staticconstuint8_tBUTTON=0;
staticconstuint8_tT0=27;
staticconstuint8_tDAC1=25;
staticconstuint8_tDAC2=26;
#endif/* Pins_Arduino_h */