Skip to content

Commit

Permalink
Merge pull request #100 from sqfmi/dev
Browse files Browse the repository at this point in the history
Update to v1.2.7
  • Loading branch information
sqfmi authored Oct 30, 2021
2 parents 80c4444 + 47976fa commit 3e69aad
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
10 changes: 8 additions & 2 deletions examples/WatchFaces/7_SEG/Watchy_7_SEG.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,16 @@ void Watchy7SEG::drawWatchFace(){
void Watchy7SEG::drawTime(){
display.setFont(&DSEG7_Classic_Bold_53);
display.setCursor(5, 53+5);
if(currentTime.Hour < 10){
int displayHour;
if(HOUR_12_24==12){
displayHour = ((currentTime.Hour+11)%12)+1;
} else {
displayHour = currentTime.Hour;
}
if(displayHour < 10){
display.print("0");
}
display.print(currentTime.Hour);
display.print(displayHour);
display.print(":");
if(currentTime.Minute < 10){
display.print("0");
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Watchy",
"version": "1.2.6",
"version": "1.2.7",
"description": "Watchy - An Open Source E-Paper Watch by SQFMI",
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Watchy
version=1.2.6
version=1.2.7
author=SQFMI
maintainer=SQFMI
sentence=Watchy - An Open Source E-Paper Watch by SQFMI
Expand Down
3 changes: 2 additions & 1 deletion src/Watchy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,8 @@ weatherData Watchy::getWeatherData(){
}

float Watchy::getBatteryVoltage(){
return analogRead(ADC_PIN) / 4096.0 * 7.23;
// Battery voltage goes through a 1/2 divider.
return analogReadMilliVolts(ADC_PIN) / 1000.0f * 2.0f;
}

uint16_t Watchy::_readRegister(uint8_t address, uint8_t reg, uint8_t *data, uint16_t len)
Expand Down
3 changes: 2 additions & 1 deletion src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
#define SET_MONTH 3
#define SET_DAY 4
#define YEAR_OFFSET 1970
#define HOUR_12_24 24
//BLE OTA
#define BLE_DEVICE_NAME "Watchy BLE OTA"
#define WATCHFACE_NAME "Watchy 7 Segment"
Expand All @@ -57,4 +58,4 @@
#define HARDWARE_VERSION_MAJOR 1
#define HARDWARE_VERSION_MINOR 0

#endif
#endif

0 comments on commit 3e69aad

Please sign in to comment.