firmware wip - begin to seperate things into header files

This commit is contained in:
Marcus 2024-05-09 20:33:26 +02:00
parent abbaedfbbc
commit 60d282fb34
4 changed files with 2 additions and 7 deletions

View file

@ -1,4 +1,3 @@
/* /*
* *
* Constants * Constants
@ -154,5 +153,3 @@ ESP8266WebServer webserver(80);
* Display Stuff * Display Stuff
*/ */
Adafruit_SSD1306 display = Adafruit_SSD1306(128, 64, &WIRE); Adafruit_SSD1306 display = Adafruit_SSD1306(128, 64, &WIRE);
// 'CanGrow_Logo', 128x32px

View file

@ -1,3 +1,4 @@
// 'CanGrow_Logo', 128x32px
const unsigned char bmpCanGrow_Logo [] PROGMEM = { const unsigned char bmpCanGrow_Logo [] PROGMEM = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

View file

@ -1,13 +1,11 @@
/* /*
* *
* *
* Functions * System Functions
* *
* *
*/ */
void wipeEEPROM() { void wipeEEPROM() {
Serial.println(":: wipe EEPROM ::"); Serial.println(":: wipe EEPROM ::");

View file

@ -1,4 +1,3 @@
/* /*
* *
* *