update library

pull/193/head v1.4.2
sqfmi 2022-10-08 16:22:33 -04:00
parent 53acbe6929
commit 8adde783be
4 changed files with 14 additions and 10 deletions

View File

@ -1,6 +1,6 @@
{
"name": "Watchy",
"version": "1.4.1",
"version": "1.4.2",
"description": "Watchy - An Open Source E-Paper Watch by SQFMI",
"authors": [
{

View File

@ -1,5 +1,5 @@
name=Watchy
version=1.4.1
version=1.4.2
author=SQFMI
maintainer=SQFMI
sentence=Watchy - An Open Source E-Paper Watch by SQFMI

View File

@ -47,7 +47,7 @@ void WatchyRTC::read(tmElements_t &tm) {
if (rtcType == DS3231) {
rtc_ds.read(tm);
} else {
rtc_pcf.getDateTime();
rtc_pcf.getDate();
tm.Year = y2kYearToTm(rtc_pcf.getYear());
tm.Month = rtc_pcf.getMonth();
tm.Day = rtc_pcf.getDay();

View File

@ -2,6 +2,14 @@
#define CONFIG_H
//pins
#if !defined(ARDUINO_WATCHY_V10) && !defined(ARDUINO_WATCHY_V15) && !defined(ARDUINO_WATCHY_V20)
#pragma message "Please install the latest ESP32 Arduino Core (2.0.5+) and choose Watchy as the target board"
#pragma message "Hardware revision is not defined at the project level, please define in config.h. Defaulting to ARDUINO_WATCHY_V20"
//Change to your board version
#define ARDUINO_WATCHY_V20
#define MENU_BTN_PIN 26
#define BACK_BTN_PIN 25
#define DOWN_BTN_PIN 4
@ -14,12 +22,6 @@
#define VIB_MOTOR_PIN 13
#define RTC_INT_PIN 27
#if !defined(ARDUINO_WATCHY_V10) && !defined(ARDUINO_WATCHY_V15) && !defined(ARDUINO_WATCHY_V20)
#warning Hardware revision is not defined at the project level. Using hard-coded value
#define ARDUINO_WATCHY_V20
#endif
#if defined (ARDUINO_WATCHY_V10)
#define UP_BTN_PIN 32
#define BATT_ADC_PIN 33
@ -43,6 +45,8 @@
#define ACC_INT_MASK GPIO_SEL_14
#define BTN_PIN_MASK MENU_BTN_MASK|BACK_BTN_MASK|UP_BTN_MASK|DOWN_BTN_MASK
#endif
//display
#define DISPLAY_WIDTH 200
#define DISPLAY_HEIGHT 200
@ -72,5 +76,5 @@
#define HARDWARE_VERSION_MAJOR 1
#define HARDWARE_VERSION_MINOR 0
// Versioning
#define WATCHY_LIB_VER "1.4.0"
#define WATCHY_LIB_VER "1.4.2"
#endif