Fabiano Riccardi
Fabiano Riccardi
Hi, I think that the best way to download *without deleting* the log from the filesystem is using `streamFile(..)`: server.sendHeader("Content-Type", "text/text"); server.sendHeader("Content-Disposition", "attachment; filename="+filename); server.sendHeader("Connection", "close"); server.streamFile(downloadFile, "application/octet-stream"); or calling...
I agree with the previous posts, I would be great to have this feature back or, at least, another system to run pre-/ post- scripts before/after a build. Is still...
Just happened, but it is very rare, I can't reproduce it.
I have tried to read your code.. Are you loading Solution-specific setting when `OnSolutionOpened` is triggered, right? Maybe 2 events (OnSolutionOpened and OnSolutionSettingsLoaded) may help to fix?
I didn't know this, thanks for pointing me out! In `General` tab there is also the option to specify the maximum line length. It would be nice if these options...
Closing since: - on Arduino: the issue is fixable by downgrading the core to v1.8.2 or deleting the `dimmable_light_manager.*` if you don't need that class. - on ESP8266: I cannot...
> Switching it to 60Hz mode breaks some code in dimmable_light_linearized.h - line 62 is missing a ; Solved. The lasted question of Robert was not answered, but after staling...
Technically there is no limit (leaving out the memory and pins) to the number of dimmers. Just change the "soft" limit to the desired value here: https://github.com/fabianoriccardi/dimmable-light/blob/c7803314f92708f895227ede46426f68ac7863e4/src/thyristor.h#L165 and here: https://github.com/fabianoriccardi/dimmable-light/blob/c7803314f92708f895227ede46426f68ac7863e4/src/dimmable_light.h#L129
I have never tested more than 8 dimmers, so I didn't want to document what it is not tested. However, if you have succeeded, I will add a note and...
Which board are you using? I don't think using a single ZC pin is an issue, since I guess your lamps are all connected to the same AC network, hence...