Trying to get dependency wire

pull/156/head
Michael-Paul Moore 2022-04-10 15:28:54 -07:00
parent 195a4b7d8e
commit 402b45e584
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "WatchyExpanded", "name": "WatchyExpanded",
"version": "1.4.2", "version": "1.4.3",
"description": "Watchy - An Open Source E-Paper Watch by SQFMI", "description": "Watchy - An Open Source E-Paper Watch by SQFMI",
"authors": [ "authors": [
{ {
@ -20,6 +20,7 @@
{ "name": "Arduino_JSON" }, { "name": "Arduino_JSON" },
{ "name": "DS3232RTC" }, { "name": "DS3232RTC" },
{ "name": "NTPClient" }, { "name": "NTPClient" },
{ "name": "Wire" },
{ {
"name": "Rtc_Pcf8563", "name": "Rtc_Pcf8563",
"version": "https://github.com/orbitalair/Rtc_Pcf8563.git#master" "version": "https://github.com/orbitalair/Rtc_Pcf8563.git#master"

View File

@ -3,6 +3,9 @@
// ESP // ESP
#include <esp_sleep.h> #include <esp_sleep.h>
// Wire
#include <Wire.h>
CWatchyExpanded::CWatchyExpanded() : m_display(GxEPD2_154_D67(DISPLAY_CS, DISPLAY_DC, DISPLAY_RES, DISPLAY_BUSY)) CWatchyExpanded::CWatchyExpanded() : m_display(GxEPD2_154_D67(DISPLAY_CS, DISPLAY_DC, DISPLAY_RES, DISPLAY_BUSY))
{ {
} }