mirror of
https://github.com/lora-aprs/LoRa_APRS_Tracker.git
synced 2026-01-26 10:24:27 +01:00
23 lines
290 B
C
23 lines
290 B
C
#ifndef PINS_H_
|
|
#define PINS_H_
|
|
|
|
#undef OLED_SDA
|
|
#undef OLED_SCL
|
|
#undef OLED_RST
|
|
|
|
#define OLED_SDA 21
|
|
#define OLED_SCL 22
|
|
#define OLED_RST 16
|
|
|
|
#ifdef TTGO_T_Beam_V0_7
|
|
#define GPS_RX 15
|
|
#define GPS_TX 12
|
|
#endif
|
|
|
|
#ifdef TTGO_T_Beam_V1_0
|
|
#define GPS_RX 12
|
|
#define GPS_TX 34
|
|
#endif
|
|
|
|
#endif
|