Skip to content

Commit d08c4a7

Browse files
authored
Merge pull request #4 from clockspot/feature/alarm-skip
Feature/alarm skip
2 parents bb49dce + 52a55c4 commit d08c4a7

File tree

3 files changed

+5
-18
lines changed

3 files changed

+5
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ If your clock is equipped with an **Alt** button, it will do one of two things (
6262

6363
* In most cases, the **Alt** button works as a function preset, similar to a preset button in a car radio. While viewing the function you want quick access to, hold **Alt** until it beeps twice; then you can use **Alt** to jump straight to that function. It works best for Alarm or Timer.
6464

65-
* TIP: If used with Alarm, the **Alt** button will also toggle the skip” state – so to skip or unskip the next alarm, you only need to press the **Alt** button twice: once to show it, and once to change it.
65+
* TIP: If used with Alarm, the **Alt** button will also toggle the skip mode – so to skip or unskip the next alarm, you only need to press the **Alt** button twice: once to display it, and once to change it.
6666

6767
* If your clock has a switched relay with soft power switch enabled, the **Alt** button switches the relay on and off – great for using the clock as an appliance timer.
6868

arduino-nixie/arduino-nixie.ino

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,12 @@
99

1010
#include "configs/v8c-6tube.h"
1111

12-
#include "song.h"
13-
14-
// Song woody(0); //declare a Song object called woody
15-
//
16-
// void setup(){
17-
// woody.play();
18-
// }
19-
//
20-
// void loop(){
21-
// woody.check(false);
22-
// }
23-
12+
////////// Software version //////////
13+
const byte vMajor = 1;
14+
const byte vMinor = 6;
15+
const byte vPatch = 0;
2416

2517
////////// Other includes, global consts, and vars //////////
26-
#include "version.h"
2718
#include <Wire.h> //Arduino - GNU LPGL
2819
#include <EEPROM.h> //Arduino - GNU LPGL
2920
#include <DS3231.h> //NorthernWidget - The Unlicense
@@ -1223,7 +1214,6 @@ void displaySun(char which, int d, int tod){
12231214
//Old code to calculate sun at display time, with test serial output, is in commit 163ca33
12241215
//which is 0=prev, 1=next
12251216
int evtTime = 0; bool evtIsRise = 0;
1226-
serialPrintTime(tod);
12271217
if(d==sunDate){ //displaying same day as calc
12281218
//before sunrise: prev is calcday-1 sunset, next is calcday sunrise
12291219
//daytime: prev is calcday sunrise, next is calcday sunset

arduino-nixie/version.h

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)