LoRa_APRS_Tracker/src/pins.h

25 wiersze
384 B
C
Czysty Zwykły widok Historia

#ifndef PINS_H_
#define PINS_H_
#undef OLED_SDA
#undef OLED_SCL
#undef OLED_RST
2021-10-14 21:31:56 +00:00
#define OLED_SDA 21
#define OLED_SCL 22
#define OLED_RST 16
#define BUTTON_PIN 38 // The middle button GPIO on the T-Beam
2020-11-03 19:11:10 +00:00
#ifdef TTGO_T_Beam_V0_7
2021-10-14 21:31:56 +00:00
#define GPS_RX 15
#define GPS_TX 12
#endif
2023-09-09 21:13:48 +00:00
#if defined(TTGO_T_Beam_V1_0) || defined(TTGO_T_Beam_V1_2)
2021-10-14 21:31:56 +00:00
#define GPS_RX 12
#define GPS_TX 34
#endif
#endif