--
To learn more about MQTT please visit http://mqtt.org
---
You received this message because you are subscribed to the Google Groups "MQTT" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mqtt+uns...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mqtt/800d9bca-2e18-4a1c-9099-94cac7c03b56%40googlegroups.com.
Having had a bit of a google and looking thru some code - this library might do at least QoS=1BTW what is your use case for needing QoS 1/2 from an ESP type client?Simon
On Mon, 9 Mar 2020, 6:20 am Geoff Lethbridge, <geoff.l...@gmail.com> wrote:
--Is there a well written and reliable, in your experience, client that has all three QoS's for the ESP8266?I have been using PubSub but it is old and would like to use a client with all three QoS'sRegardsGeoff
To learn more about MQTT please visit http://mqtt.org
---
You received this message because you are subscribed to the Google Groups "MQTT" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mq...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to mqtt+uns...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mqtt/5484e031-bb3f-4e28-87c1-f72edcacff98%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mqtt/CAFnwT58ToVDYaNFuSUYfQLddpMdChT3FMGtsKE%3DUdCvMnxJ-vg%40mail.gmail.com.
QoS 2 is actually like two QoS 1 message back to back… QoS 0 is the easy one - QoS 1 and 2 are similarly hard (as you point out, they need message and state storage and a retry queue). It doesn’t *have* to be durable, though: do the best you can with what you’ve got.As long as the battery doesn’t fail, in-memory is probably good enough ;)
--
To learn more about MQTT please visit http://mqtt.org
---
You received this message because you are subscribed to the Google Groups "MQTT" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mqtt+uns...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mqtt/CAFnwT58GCFcQo69dEQg0HSxhFmfvRi03T8%3DB%3DWjMXpVOURoMEA%40mail.gmail.com.
I know ;)
Regarding libraries, I found https://github.com/256dpi/arduino-mqtt to be pretty well written. I sent in a PR a few months ago to add MQTT v5 support...