Skip to content

Commit

Permalink
ready for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
richonguzman committed Nov 5, 2024
1 parent 210c7ac commit 7c5e58f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#define lineSpacing 12
#endif
#else
#if HAS_EPAPER
#ifdef HAS_EPAPER
//
#else
#include <Adafruit_GFX.h>
Expand Down Expand Up @@ -59,7 +59,7 @@ void displaySetup() {
tft.setTextFont(0);
tft.fillScreen(TFT_BLACK);
#else
#if HAS_EPAPER
#ifdef HAS_EPAPER
//
#else
#ifdef OLED_DISPLAY_HAS_RST_PIN
Expand Down Expand Up @@ -92,7 +92,7 @@ void displayToggle(bool toggle) {
#ifdef HAS_TFT
digitalWrite(TFT_BL, HIGH);
#else
#if HAS_EPAPER
#ifdef HAS_EPAPER
// ... to be continued
#else
if (displayFound) display.ssd1306_command(SSD1306_DISPLAYON);
Expand All @@ -102,7 +102,7 @@ void displayToggle(bool toggle) {
#ifdef HAS_TFT
digitalWrite(TFT_BL, LOW);
#else
#if HAS_EPAPER
#ifdef HAS_EPAPER
// ... to be continued
#else
if (displayFound) display.ssd1306_command(SSD1306_DISPLAYOFF);
Expand Down
2 changes: 1 addition & 1 deletion variants/heltec_wireless_tracker/board_pinout.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#define HAS_DISPLAY
#define HAS_TFT
#define HAS_GPS
#define GPS_BAUDRATE=115200
#define GPS_BAUDRATE 115200

/*#undef OLED_SDA
#undef OLED_SCL
Expand Down

0 comments on commit 7c5e58f

Please sign in to comment.