From 9e3681b41d7a5d944ffe429d9e0438e9dff5e862 Mon Sep 17 00:00:00 2001 From: Verkehrsrot Date: Fri, 25 Jan 2019 20:13:11 +0100 Subject: [PATCH 1/2] 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 --- variants/t-beam/pins_arduino.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/variants/t-beam/pins_arduino.h b/variants/t-beam/pins_arduino.h index 62ad7a01aff..49e3f20c72a 100644 --- a/variants/t-beam/pins_arduino.h +++ b/variants/t-beam/pins_arduino.h @@ -19,8 +19,8 @@ #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 TX = 1; static const uint8_t RX = 3; @@ -45,9 +45,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 +55,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 */ From bfd35a120993beb489390bb900887cad6f6546ee Mon Sep 17 00:00:00 2001 From: Verkehrsrot Date: Fri, 25 Jan 2019 20:23:47 +0100 Subject: [PATCH 2/2] Update pins_arduino.h Button and LED added --- variants/t-beam/pins_arduino.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/variants/t-beam/pins_arduino.h b/variants/t-beam/pins_arduino.h index 49e3f20c72a..977b6b26734 100644 --- a/variants/t-beam/pins_arduino.h +++ b/variants/t-beam/pins_arduino.h @@ -22,6 +22,11 @@ #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;