LoRa_APRS_Tracker/src/pins.h

23 lines
290 B
C
Raw Normal View History

#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
2020-11-03 19:11:10 +00:00
#ifdef TTGO_T_Beam_V0_7
#define GPS_RX 15
#define GPS_TX 12
#endif
2020-11-03 19:11:10 +00:00
#ifdef TTGO_T_Beam_V1_0
#define GPS_RX 12
#define GPS_TX 34
#endif
#endif