Max Prokhorov
Max Prokhorov
Setting pulse timer works here? Timer will continuously tick down to 0 while the relay is ON, and periodically publishing `my-switch-device/relay/0/set 1` will reset it back the initial value. When...
Returning to the OT then - what is a definitive way to do that? Ping is one, yes. Other way is to poll connectivity services like iOS, Windows, Android, etc.,...
Re-uploaded after running clang-format https://github.com/mcspr/ESP8266SdFat/commit/85e06665a1f26e548a42baaa412b0d95281db270 https://github.com/mcspr/ESP8266SdFat/commit/85e06665a1f26e548a42baaa412b0d95281db270.diff https://github.com/mcspr/ESP8266SdFat/commit/85e06665a1f26e548a42baaa412b0d95281db270.patch I also forgot about Print::flush() in the first one
Hm... this was added for StreamDev.h API in ESP8266 (previosuly virtual size_t readBytes()), so it is definitely not real-real Arduino API. We can change it to have `if defined(ESP8266)` in...
flush() can lose override keyword, apparently C++ does not care whether it is there (I did care, though :) https://en.cppreference.com/w/cpp/language/virtual#In_detail But warnings would still trigger for different arguments in similarly...
No warnings w/ the suggested change for PrintFile. I do see now that StreamFile is what ESP8266 have been using through File32, PrintFile just got noticed at the same time...
re esp8266/Arduino#8422 My understanding is that you have not tried Cores 3.0.0+, since the lib can't be built at all b/c we added `-Werror=return-type` and `size_t write()` is incorrectly omitting...
Does it work without the `PROGMEM` for the char array? ```diff - uint8_t pl_S[8] PROGMEM = { + uint8_t pl_S[8] = { ```
ref. commit above (4f520a8) > warn user about 10 limitation (on the text at the top of the page) warn user when trying to add more than 10 schedules in...
> 2024-06-19 22:04:32 UTC > or better: 2024-06-19 23:04:32 CET What about explicit offset then? Currently, there is none ``` 2024-06-19 22:04:32 ``` Commit above adds +HH:MM offset at the...