This commit is contained in:
Klaus K Wilting 2018-04-24 22:37:20 +02:00
parent 244eb10c29
commit bedd90bede
3 changed files with 5 additions and 5 deletions

View File

@ -3,11 +3,11 @@
// std::set for unified array functions // std::set for unified array functions
#include <set> #include <set>
//#include <array> #include <array>
//#include <algorithm> #include <algorithm>
// OLED Display
#ifdef HAS_DISPLAY #ifdef HAS_DISPLAY
// OLED Display
#include <U8x8lib.h> #include <U8x8lib.h>
#endif #endif

View File

@ -553,7 +553,7 @@ void loop() {
// simple state machine for controlling display, LED, button, etc. // simple state machine for controlling display, LED, button, etc.
uptimecounter = uptime() / 1000; // counts uptime in seconds (64bit) uptimecounter = uptime() / 1000; // counts uptime in seconds (64bit)
currentMillis = millis(); // timebase for state machine in milliseconds (32bit) currentMillis = millis(); // timebase for state machine in milliseconds (32bit)
#ifdef HAS_LED #ifdef HAS_LED
switchLEDstate(); switchLEDstate();

View File

@ -1,6 +1,6 @@
// program version - note: increment version after modifications to configData_t struct!! // program version - note: increment version after modifications to configData_t struct!!
#define PROGVERSION "1.3.2" // use max 10 chars here! #define PROGVERSION "1.3.21" // use max 10 chars here!
#define PROGNAME "PAXCNT" #define PROGNAME "PAXCNT"
//--- Declarations --- //--- Declarations ---