fix missing variable for Rev0

This commit is contained in:
Kyle Gabriel 2019-08-25 20:58:12 -04:00
parent e7c53e4d34
commit e5bb5dd000
2 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
/*
TTGO-BEAM based TTN Tracker
TTGO T-BEAM Tracker for The Things Network
Copyright (C) 2018 by Xose Pérez <xose dot perez at gmail dot com>

View File

@ -29,12 +29,13 @@
#ifdef T_BEAM_V10
#include "axp20x.h"
AXP20X_Class axp;
bool ssd1306_found = false;
bool axp192_found = false;
bool pmu_irq = false;
String baChStatus = "No charging";
#endif
bool ssd1306_found = false;
bool axp192_found = false;
// Message counter, stored in RTC memory, survives deep sleep
RTC_DATA_ATTR uint32_t count = 0;