A simple solar power monitoring application for the Arduino UNO Q, which uses an INA219 sensor to read data from a small 80x45mm solar panel and prints them on an e-paper display.
For Arduino UNO Q (Zephyr) applications, you need to patch #undef guards on Adafruit_EPD.h because it
defines macros as #define MISO 0 (and similar), which clashes with any library that uses those names as function parameters.
at line 31 on the Adafruit_EPD.h:
#ifdef MISO
#undef MISO
#endif
#ifdef MOSI
#undef MOSI
#endif
#ifdef SCK
#undef SCK
#endif
#ifdef SS
#undef SS
#endifDistributed under the MIT License. See LICENSE for more information.