mtnbrit

Results 8 comments of mtnbrit

Not sure if this is the same issue, but im seeing memory issues with Safari on this simple dashboard. What info can I provide to help diagnose the issue? ![nr1](https://user-images.githubusercontent.com/11318990/81433540-90eecb00-9119-11ea-9718-57cf612d0e55.jpg)

Is there an example sketch for MQTT over TLS please? or is it as simple as WiFiClientSecure client; PubSubClient client(client, server); and proceed as usual?

Yep it crashes the esp for me, so i think the issue is client-side. Perhaps @igrr can chime in with a working example?

Folks, any progress on getting TLS to work? I can test anything needed on client or broker.

Its working. http://github.com/esp8266/Arduino/issues/43#issuecomment-154773929

I tried brew remove and brew install but it still bounces. What would be the steps to fully purge-remove the app and any dependencies and reinstall from scratch? It does...

Hi, I had an odd incident today where one of my sensors running arduino/esp8266 and lmroy pubsubclient was seemingly connected to the mosquitto server and sending publishes, in my loop...

You need to base64 decode the IV. Heres a working decoder lib edit the AESLib.cpp file with this ``` String AESLib::decrypt(String msg, byte key[], String my_iv) { aes.set_key(key, sizeof(key)); char...