Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build-clang-doxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ jobs:
- name: Install extra Arduino libraries
run: |
git clone --quiet --branch 2.2.54 https://github.com/adafruit/SdFat.git /home/runner/Arduino/libraries/SdFat
git clone --branch funhouse-fix-bsp335 https://github.com/adafruit/Adafruit_SleepyDog.git /home/runner/Arduino/libraries/Adafruit_SleepyDog_Library
cat /home/runner/Arduino/libraries/Adafruit_SleepyDog_Library/library.properties
arduino-cli lib list
git clone --quiet --branch v4.0.3 https://github.com/milesburton/Arduino-Temperature-Control-Library.git /home/runner/Arduino/libraries/Arduino-Temperature-Control-Library
git clone --quiet https://github.com/pstolarz/OneWireNg.git /home/runner/Arduino/libraries/OneWireNg
git clone --quiet https://github.com/adafruit/Adafruit_HX8357_Library.git /home/runner/Arduino/libraries/Adafruit_HX8357_Library
Expand Down
3 changes: 2 additions & 1 deletion src/components/display/drivers/dispDrvBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
*/
#ifndef WS_DISP_DRV_BASE_H
#define WS_DISP_DRV_BASE_H

#ifndef ARDUINO_ARCH_ESP8266
#include "../assets/icons.h"
#include "../assets/splash.h"
#endif // ARDUINO_ARCH_ESP8266
#include "Adafruit_ThinkInk.h"
#include "Wippersnapper.h"

Expand Down
3 changes: 3 additions & 0 deletions src/components/display/drivers/dispDrvSt7789.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ class dispDrvSt7789 : public dispDrvBase {
return true;
}

#ifndef ARDUINO_ARCH_ESP8266
/*!
@brief Displays the splash screen on the display.
*/
Expand Down Expand Up @@ -236,6 +237,8 @@ class dispDrvSt7789 : public dispDrvBase {
}
}

#endif // ARDUINO_ARCH_ESP8266

/*!
@brief Writes a message to the display.
@param message
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ class drvDispThinkInkGrayscale4Eaamfgn : public dispDrvBase {
return true;
}

#ifndef ARDUINO_ARCH_ESP8266
/*!
@brief Displays a splash screen
*/
Expand Down Expand Up @@ -210,6 +211,9 @@ class drvDispThinkInkGrayscale4Eaamfgn : public dispDrvBase {
_display->display();
}

#endif // ARDUINO_ARCH_ESP8266


/*!
@brief Writes a message to the display.
@param message
Expand Down
3 changes: 2 additions & 1 deletion src/components/display/drivers/dispDrvThinkInkGrayscale4T5.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ class dispDrvThinkInkGrayscale4T5 : public dispDrvBase {
return true;
}

#ifndef ARDUINO_ARCH_ESP8266
/*!
@brief Draws a status bar at the top of the display.
@param io_username
Expand Down Expand Up @@ -193,7 +194,7 @@ class dispDrvThinkInkGrayscale4T5 : public dispDrvBase {

_display->display();
}

#endif // ARDUINO_ARCH_ESP8266
/*!
@brief Writes a message to the display.
@param message
Expand Down
Loading