From c396dbf3f6123d41c5526af64e778603dae10fc8 Mon Sep 17 00:00:00 2001 From: Thomas Gohle Date: Mon, 22 Jun 2026 15:47:09 +0200 Subject: [PATCH] 1st functional beta --- .../ATTINY85_2026_MorseThrowie.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/firmware/ATTINY85_2026_MorseThrowie/ATTINY85_2026_MorseThrowie.ino b/firmware/ATTINY85_2026_MorseThrowie/ATTINY85_2026_MorseThrowie.ino index 04cc1da..6e12380 100644 --- a/firmware/ATTINY85_2026_MorseThrowie/ATTINY85_2026_MorseThrowie.ino +++ b/firmware/ATTINY85_2026_MorseThrowie/ATTINY85_2026_MorseThrowie.ino @@ -75,9 +75,9 @@ Inspired by Karl Lunt's FireFly project: // --------------------------------------------------------------------------- // Sleep interval. -// Watchdog setup uses 8 s. For final use, change sleepCycles from 1 to 4 -// for about 32 s between sensing/blinking activations. -const uint8_t sleepCycles = 4; +// Watchdog setup uses 8 s. For final use, change sleepCycles from 4 to 6 +// for about 32s - 48s between sensing/blinking activations. Goal ~ 1 blink/min +const uint8_t sleepCycles = 6; // --------------------------------------------------------------------------- // 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. // Test setup: 20 x "0" because 0 = "-----" gives maximum LED ON time for test. // 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....5....0...5....0 // ---------------------------------------------------------------------------