moeskerv
moeskerv
Same here [ERROR][main.py:95:log_exception()]-Logging an uncaught exception Traceback (most recent call last): File "main.py", line 193, in File "main.py", line 159, in main File "controller.py", line 65, in __init__ File "parameters.py",...
Win10 PrusaControl 0.9.4_415 beta - but issue seems to be fixed now.
It seems that https://github.com/prusa3d/PrusaControl-settings/commit/e53b853e22f6bedbc4bf26d68d8193ea8933233f fixed the issue.
I had to do a change for the BME280 as the Adafruit driver changed, bit then U still can compile the code and also it still works on my target....
in the wip_scd30 branch I recently added support for a scd30 CO2 sensor. Your may also try this branch. This is the version I checked today.
Seems that I see a similar behavior using RTCZero in combination with the Radiohead library. I also make use of a Adafruit Feather M0-based with Lora 433 module on it....
Some results from my tests: - Using RTCZero V1.6.0 in my setup causes the device to not wake up any more after a few hours of operation, reproducible on two...
As it seems this part of the changes done between version 1.5.2 and 1.6.0 causes the issue: ``` +// Default date & time after reset +#define DEFAULT_YEAR 2000 // 2000..2063...
I can confirm this. Basically sleeping for some seconds only seems to always add 1s extra: rtc.setSeconds(0); rtc.setAlarmSeconds(0); rtc.enableAlarm(rtc.MATCH_SS); rtc.standbyMode(); -> Above results in a sleep for 1s. rtc.setSeconds(0); rtc.setAlarmSeconds(1);...
Interestingly the ArduinoLowPower (which uses the RTC too) lib does the same on my Feather M0 LowPower.sleep(0); -> sleeps for 1s LowPower.sleep(1000); -> sleeps for 2s I tested with the...