Patrick Lapointe

Results 21 comments of Patrick Lapointe

A workaround for this is to use a different docker container for mmjpg-streamer. I run the docker image `tdicola/pi_mjpeg_streamer` with this command : ``` docker run --name mmjpg-streamer -d \...

I may replace the internal WiFI handling completly with the new EspSimpleWifiHandler from https://github.com/plapointe6/EspSimpleWifiHandler I like the idea of more than one wifi config. I will take a look into...

The dev branch was meant to be released for alpha testing, but I have issues. It seems that there are some incompatibilities between different versions of ESP32 / ESP8266 core....

I have pushed the suggested fix into de `dev` branch. Thanks for pointing this out. I have to do more testing before merging the `dev` branch into `master`, but you...

Thank you, these logs are valuable. It works well on my side (with both ESP32 and ESP8266), but I am not sure wich ESP32 core version I had when I...

Hello, Can you please specify wich web page is affected ? Is it the firmware update form ? Thanks

Unfortunatly, there is no SSL/TLS support yet with this lib. I will add that to the TODO list. Here is a PubSubClient issue discussing how you can achieve this with...

Hi, Currently, EspMQTTClient rely on the PubSubClient library to handle MQTT communication. Unfortunatly, the mqtt connect function of PubSubClient block the execution until the timeout is reached. The timount is...

The main issue here is that when _mqttClient.connect() is called in ESPMQTTClient, PubsubClient block the loop completly until a connection is established. The issue does not come from this lib....

Unfortunatly, it seems that AVR boards like Arduino Uno, Arduino Mega, etc does not support the c++ std library. For now, I will add a note to the readme to...