Max Prokhorov
Max Prokhorov
It's not that I want it, it is what git wants. Basically, the text patch cannot apply. It uses nearby lines and since they are not exact match between branches...
Also, see: https://travis-ci.org/xoseperez/espurna/jobs/436669250#L534 It does not show up in github checks panel here for some reason. I did try this out and it got some problems: - if blynk server...
Yep, phone app. I'll cite the blynk.cc :) > It's a digital dashboard where you can build a graphic interface for your project by simply dragging and dropping widgets. I...
Sorry for delay. I am fixing some things with this and will share it with you to review.
@thaeger71 Thx! Note about 128 pins limit origin - https://community.blynk.cc/t/using-127-virtual-pins-in-sketch/30491/11. For general use they have bulk of special functions per pin like BlynkWidgetRead64, BlynkWidgetWrite120 used from definitions like BLYNK_WRITE(V64) etc....
@xoseperez this on par with domoticz / thingspeak - sync relays, send sensor data, - but can also be modified to support any input / output as vpins can hold...
It is an actually cool approach at this 👍 *(and something i never knew i wanted 🙄)* - Would it make sense to make **broker** generic event dispatcher here? i.e....
Baseline to know about c++ objects: `new` allocates forever, needs `delete` `Object obj` lives inside {}, destroyed afterwards `something(Object obj)` copies the object, `something(Object& obj)` does not Nice magic is...
tldr; I'd use spiffs for now and not worry about it just yet. And build settings can be tweaked to make .bin smaller for some specific applications (like removing debug...
Will check ASAP. I would also add following env to the platformio.ini: ``` [env:nodemcu-lolin-flow] platform = ${common.platform_latest} framework = ${common.framework} board = ${common.board_4m} board_build.flash_mode = ${common.flash_mode} lib_deps = ${common.lib_deps} lib_ignore...