SQ9MDD / TTGO-T-Beam-LoRa-APRS

Use TTGO T-Beam as LoRa APRS Tracker
64 stars 23 forks source link

Display not working with Lora32 v2.1 version #47

Closed mi-gri closed 2 years ago

mi-gri commented 2 years ago

Using the version for my Lora32 v2.1 board and the display keeps dark. I tried the Lora32 v2 version of the software instead and the display works.

US1GHQ commented 2 years ago

If you build from source, find this code in TTGO_T-Beam_LoRa_APRS.ino

elif LORA32_21

define I2C_SDA 4

define I2C_SCL 15

define BUTTON 2 //pin number for BUTTO

define BUZZER 13 // enter your buzzer pin gpio

const byte TXLED = 4; //pin number for LED on TX Tracker

and change to

elif LORA32_21

define I2C_SDA 21

define I2C_SCL 22

define BUTTON 2 //pin number for BUTTO

define BUZZER 13 // enter your buzzer pin gpio

const byte TXLED = 4; //pin number for LED on TX Tracker

mi-gri commented 2 years ago

Thank you - that worked for me.

iu2frl commented 2 years ago

is this a custom board or should we make it definitive?

mi-gri commented 2 years ago

I'm not sure if this is the default for the 2.1 versions, but I have now three boards, all need this change.

iu2frl commented 2 years ago

merged, we can close it