Skip to content

Commit

Permalink
Heltec Wireless Stick display fix
Browse files Browse the repository at this point in the history
  • Loading branch information
richonguzman committed Jan 8, 2025
1 parent 1a3966e commit f325c54
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/LoRa_APRS_iGate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ___________________________________________________________________*/
#include "A7670_utils.h"
#endif

String versionDate = "2025.01.07";
String versionDate = "2025.01.08";
Configuration Config;
WiFiClient espClient;
#ifdef HAS_GPS
Expand Down
4 changes: 2 additions & 2 deletions src/power_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,10 @@ namespace POWER_Utils {

#ifdef VEXT_CTRL
pinMode(VEXT_CTRL,OUTPUT); // GPS + TFT on HELTEC Wireless_Tracker and only for Oled in HELTEC V3
#ifndef HELTEC_WSL_V3
#if defined(HELTEC_WIRELESS_TRACKER) || defined(HELTEC_V3)
digitalWrite(VEXT_CTRL, HIGH);
#endif
#ifdef HELTEC_WP
#if defined(HELTEC_WP) || defined(HELTEC_WS)
digitalWrite(VEXT_CTRL, LOW);
#endif
#endif
Expand Down
6 changes: 3 additions & 3 deletions variants/heltec_wireless_stick/board_pinout.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
#undef OLED_SCL
#undef OLED_RST

#define OLED_SDA 4
#define OLED_SCL 15
#define OLED_RST 16
#define OLED_SDA 17
#define OLED_SCL 18
#define OLED_RST 21
#define OLED_DISPLAY_HAS_RST_PIN

// Aditional Config
Expand Down

0 comments on commit f325c54

Please sign in to comment.