Board T-Beam: Update pins_arduino.h (#2380)

* Board T-Beam: Update pins_arduino.h

DAC2 is not wired, only DAC1 is -> corrected
LORA pins 27 + 19 are only wired on pcb, but not connected to header -> deleted

* Update pins_arduino.h

Button and LED added
This commit is contained in:
Verkehrsrot 2019-02-14 12:53:45 +01:00 committed by Me No Dev
parent aa2393b573
commit e302a6848a

View File

@ -19,8 +19,13 @@
#define LORA_RST 23 // GPIO23 - SX1276 RST
#define LORA_IRQ 26 // GPIO26 - SX1276 IO0
#define LORA_IO0 LORA_IRQ // alias
#define LORA_IO1 33 // GPIO33 - SX1276 IO1
#define LORA_IO2 32 // GPIO32 - SX1276 IO2
#define LORA_IO1 33 // GPIO33 - SX1276 IO1 -> wired on pcb AND connected to header pin LORA1
#define LORA_IO2 32 // GPIO32 - SX1276 IO2 -> wired on pcb AND connected to header pin LORA2
static const uint8_t KEY_BUILTIN = 39;
static const uint8_t LED_BUILTIN = 14;
#define BUILTIN_LED LED_BUILTIN // backward compatibility
static const uint8_t TX = 1;
static const uint8_t RX = 3;
@ -45,9 +50,7 @@ static const uint8_t A11 = 0;
static const uint8_t A12 = 2;
static const uint8_t A14 = 13;
static const uint8_t A16 = 14;
static const uint8_t A17 = 27; //lora
static const uint8_t A18 = 25;
static const uint8_t A19 = 26; //lora
static const uint8_t T0 = 4;
static const uint8_t T1 = 0;
@ -57,6 +60,6 @@ static const uint8_t T6 = 14;
static const uint8_t T8 = 33;
static const uint8_t T9 = 32;
static const uint8_t DAC2 = 26;
static const uint8_t DAC1 = 25;
#endif /* Pins_Arduino_h */