Antoine Bertin

Results 102 comments of Antoine Bertin

In case anyone is interested, I used `acpid` to trigger `autorandr` on lid change. ```bash sudo pacman -S acpid sudo systemctl enable --now acpid ``` Then in `/etc/acpi/handler.sh` I added...

MQTT il already supported with this library: https://github.com/knolleary/pubsubclient As for REST this is not planned and I think it's another layer of abstraction that would better fit in another library...

The ESP8266Client implements the Client interface so you can use it with PubSubClient. Check out PubSubClient documentation about that.

You can subclass the ESP8266 class to achieve what you want or create a wrapper or use @lasselukkari's ESP8266Server class. The ESP8266 class does not aim to abstract this behavior....

Why no add a readPacket method that reads exactly one IPD block?

Hardware yes, I'm looking for a software approach because GPIO 13 and 15 are not available on the ESP-01

I planned to do a QTFF parser for a while and had started working on it but nothing concrete here and I have very few videos using that format anyway....

I'm not sure about the bracket access for tags, I find it confusing. mkv[50] isn't something very explicit. However something like mkv.tags[50] looks better. Same for the div thing, not...