Very simple example working. To get it going:
- set a different message than 0, save
- set message to 0 and start continuous, save
The message should send once, but really it is limited to…
Oh wow, you can get the duration of the Morse effect with Serial.println(morseEffectMO5.Period());
or similar.
This will let me calculate how many repeats fit into each step length.
Then…
GTK (https://github.com/jandelgado/jled/issues/11#issuecomment-429887353):
There is no need to redefine the object each time. Just call the variable with the new parameters.
ex:…
Neat but not what I'm looking for: https://github.com/tfeldmann/Arduino-Blinkenlight.
Another example (https://github.com/jandelgado/jled/issues/34):
#include <Arduino.h>
#include<jled.h>
// blink internal LED every second; 1 second on, 0.5 second off.
auto led =…
So close to being able to use Jled sequences natively, if I could figure out how to calculate the number of times to repeat for a given step length.
This looks helpful (https://arduino.stackex…
To send a cycle, we need to set up the duration of each repeating message.
- Need entries (#8) for
- step length
- cycle ID
- number of transmitters
- Need a function…
I thought I had typed this all out, but
- Alarm2 has only minute resolution
- Alarm1 has second resolution
So when I set up Alarm2 but turn off cycle, if I turned cycle back on within the…
Using timespans might work to fix this and #35 if I can fix #27.
Random times every once in a while again.
https://www.reddit.com/r/arduino/comments/hdg70t/ds3231_rtc_random_numbers/
Before I too far, consider just comparing rtc.now()
and the start time in loop()
to trigger the scheduled program.
Confirming that I can't set an alarm more than a month in advance (or maybe ~2 months if the current month has 30 days and the next month has 31 days, and you set it for the 31st). Wild.
https:/…
Feel slightly better:
yourInputTime: 1694187947
RTC can't set time. Trying again.
UTC time from browser: 2023/9/8 (5) 15:45:47
rtc.now().unixtime(): 1694187947
Writing file: /inputFloat.t…
I can set Alarm2 and have SQW notify of the alarm. I tried
- setting, turning off the ESP32, waiting past alarm time, and it does not trigger on boot (this is good)
- setting, rebooting ESP32,…