1 Commits

Author SHA1 Message Date
c396dbf3f6 1st functional beta 2026-06-22 15:47:09 +02:00

View File

@ -75,9 +75,9 @@ Inspired by Karl Lunt's FireFly project:
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// Sleep interval. // Sleep interval.
// Watchdog setup uses 8 s. For final use, change sleepCycles from 1 to 4 // Watchdog setup uses 8 s. For final use, change sleepCycles from 4 to 6
// for about 32 s between sensing/blinking activations. // for about 32s - 48s between sensing/blinking activations. Goal ~ 1 blink/min
const uint8_t sleepCycles = 4; const uint8_t sleepCycles = 6;
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// LED pin definitions (N-side = cathode, P-side = anode for sensing/driving). // LED pin definitions (N-side = cathode, P-side = anode for sensing/driving).
@ -97,7 +97,7 @@ const uint8_t sleepCycles = 4;
// below are emitted. Lowercase letters are converted to uppercase. // below are emitted. Lowercase letters are converted to uppercase.
// Test setup: 20 x "0" because 0 = "-----" gives maximum LED ON time for test. // Test setup: 20 x "0" because 0 = "-----" gives maximum LED ON time for test.
// shorter text will better, more text will cost more power. // shorter text will better, more text will cost more power.
const char morseText[] PROGMEM = "TOGO LAB"; const char morseText[] PROGMEM = "TGO 26";
// Ruler: 0....0....1...1....2 // Ruler: 0....0....1...1....2
// Ruler: 0....5....0...5....0 // Ruler: 0....5....0...5....0
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------