Skip to content

Commit 6c0a30f

Browse files
committed
ibid
1 parent a98e3e5 commit 6c0a30f

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
![Nixie clocks](https://i.imgur.com/FemMWax.jpg)
44

5-
**A digital clock with perpetual calendar, alarm, countdown timer/appliance timer, and day counter.** Written for the Arduino Nano at the heart of [RLB Designs'](http://rlb-designs.com/) Universal Nixie Driver Board (UNDB) v5.0, featuring a DS3231 thermocompensated battery-backed real-time clock, and driving up to 6 digits multiplexed in pairs via two SN74141 driver chips.
5+
**A digital clock with perpetual calendar, alarm, countdown timer/appliance timer, and day counter.** Written for the Arduino Nano at the heart of [RLB Designs'](http://rlb-designs.com/) Universal Nixie Driver Board (UNDB) v5.0, featuring a DS3231 real-time clock, and driving up to 6 digits multiplexed in pairs via two SN74141 driver chips.
66

7-
[The latest release can be downloaded here.](https://github.com/clockspot/arduino-nixie/releases/latest). Skip to [Hardware Configuration](#hardware-configuration) for details on how to tweak the sketch for your clock's hardware configuration.
7+
[The latest release can be downloaded here.](https://github.com/clockspot/arduino-nixie/releases/latest) Skip to [Hardware Configuration](#hardware-configuration) for details on how to tweak the sketch for your clock's hardware configuration.
88

9-
## How to Operate the Clock
9+
## Clock Operating Instructions
1010

11-
_Note: Many variations of these instructions are possible, depending on the hardware configuration of your clock; but this covers most cases._
11+
_Note: Many variations are possible, depending on your clock's hardware; but this covers most cases._
1212

1313
### Clock Functions
1414

@@ -70,14 +70,14 @@ A number of hardware-related settings are specified in consts at the top of the
7070
* **What type of Adjust controls** are equipped: pushbuttons (default) or rotary encoders.
7171
* **What type of signal outputs** are equipped: a piezo beeper (default) and/or a relay.
7272
* **Signal duration** (default 3min) and **piezo pulse duration** (default 500ms)
73-
* If relay is equipped, **whether relay is switched** (default) **or pulsed:**
74-
* In pulse mode, the relay will be pulsed, like the beeper is, to control an intermittent signaling device like a solenoid or indicator lamp; specify **relay pulse duration** (default 200ms)
75-
* In switch mode, the relay will be switched to control an appliance like a radio or light fixture. If used with timer, it will switch on while timer is running (like a "sleep" function). If used with alarm, it will switch on when alarm trips; specify **alarm switch duration** (default 2 hours). Also specify:
76-
* **whether soft alarm switch** is enabled. Default is yes; it is switched with Adjust while viewing the alarm time. Change to no if the appliance has its own alarm switch; the clock's alarm will be permanently on.
77-
* **whether soft power switch** is enabled. Default is yes; appliance can be switched manually with Adujust while viewing the time of day. Change to no if the appliance has an independent power switch or does not need to be manually switched.
73+
* If relay is equipped, **relay mode**:
74+
* In switched mode (default), the relay will be switched to control an appliance like a radio or light fixture. If used with timer, it will switch on while timer is running (like a "sleep" function). If used with alarm, it will switch on when alarm trips; specify **alarm switch duration** (default 2 hours).
75+
* In pulse mode, the relay will be pulsed, like the beeper is, to control an intermittent signaling device like a solenoid or indicator lamp; specify **relay pulse duration** (default 200ms).
76+
* **Soft alarm switch** enabled: default is yes; it is switched with Adjust while viewing the alarm time. Change to no if the signal output/appliance has its own switch on this relay circuit; the clock's alarm will be permanently on.
77+
* **Soft power switch** enabled (switched relay only): default is yes; appliance can be switched manually with Adjust while viewing the time of day. Change to no if the appliance has its own power switch (independent of this relay circuit) or does not need to be manually switched.
7878
* **Various other durations** for things like scrolling speed, set mode timeouts, short and long button holds, "hold to set faster" thresholds, etc.
7979

80-
You can also set the defaults for the options menu to better suit the clock's intended use.
80+
You can also set the **defaults for the options menu** to better suit the clock's intended use.
8181

8282
**To compile the edited sketch:** You will need to add the [ooPinChangeInt](https://code.google.com/archive/p/oopinchangeint/downloads) and [NorthernWidget DS3231](https://github.com/NorthernWidget/DS3231) libraries to your Arduino IDE.
8383

sixtube_lm/sixtube_lm.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ const word relayPulse = 200; //ms - used with pulsed relay
7373

7474
const byte enableSoftAlarmSwitch = 1;
7575
// 1 = yes. Alarm can be switched on and off when clock is displaying the alarm time (fnIsAlarm).
76-
// 0 = no. Alarm will be permanently on. Use with switched relay if the connected device has its own switch.
76+
// 0 = no. Alarm will be permanently on. Use with switched relay if the appliance has its own switch on this relay circuit.
7777
const byte enableSoftPowerSwitch = 1; //works with switched relay only
7878
// 1 = yes. Relay can be switched on and off directly when clock is displaying time of day (fnIsTime). This is useful if connecting an appliance (e.g. radio) that doesn't have its own switch, or if replacing the clock unit in a clock radio where the clock does all the switching (e.g. Telechron).
79-
// 0 = no. Use if the connected appliance has an independent power switch or does not need to be manually switched.
79+
// 0 = no. Use if the connected appliance has its own power switch (independent of this relay circuit) or does not need to be manually switched.
8080

8181
const byte unoffDur = 10; //when display is dim/off, a press will light the tubes for this many seconds
8282

0 commit comments

Comments
 (0)