Jack Jansen
Jack Jansen
What I want to get at is having a fully rest/coap/web interface/ble/ota enabled _Blink_ example something like ``` #include "iotsa.h" #define PIN_LED 13 IotsaApplication app("Blink"); IotsaMainModule mod(app, "Blink settings"); int...
There's too many issues with LittleFS on esp32, disabling it for now: - directories are not created, but it seems `LITTEFS.open()` doesn't complain (so writes to config files fail). -...
Let me ask you for help:-) I have (for a long time) been thinking about adding streaming interfaces (wss/websockets is an option, but also http push events, or raw TCP...
Ok, that sounds like you want your "WebSocket channel" to be sort-of independent of the iotsa framework. So use iotsa for control, for example, and use a streaming connection for...
Completely different idea just struck me: what is the amount of data you need to stream? I.e. how many bytes/kilobytes per second? Because a completely different solution could be (if...
I had a look at https://github.com/Links2004/arduinoWebSockets and it looks very promising. I wasn't aware of it, thanks! I think you can drop this right in: just create a module that...
I have stayed away from async services for iotsa, because I want to keep the Arduino paradigm of `setup()` and `loop()` as the basic structure. And if you start using...
By the way: if you implement the WSS in a way that may be reusable, _and_ if you're willing to share it (iotsa is MIT license) I'd love to add...
@mehotkhan did you make any progress on WSS? As said: I'd love to incorporate the functionality in iotsa, and I'm working on a new release at the moment, so if...
Now that hirotakaster/CoAP-simple-library#22 has been fixed and closed and 1.3.21 includes that fix the hard-coding in b14168c can be removed again.