From 5f9cab899218aa92d9b90d392fe3d964dc3f0a99 Mon Sep 17 00:00:00 2001 From: hsaturn Date: Mon, 21 Nov 2022 01:44:54 +0100 Subject: [PATCH 1/2] Update README.md Wildcards --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 42f8383..46bee6a 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ TinyMqtt is a small, fast and capable Mqtt Broker and Client for Esp8266 / Esp32 The max I've seen was 2k msg/s (1 client 1 subscription) - Act as as a mqtt broker and/or a mqtt client - Mqtt 3.1.1 / Qos 0 supported +- Wildcards supported (+ # $ and * (even if not part of the spec...)) - Standalone (can work without WiFi) (degraded/local mode) - Brokers can connect to another broker and becomes then a proxy for clients that are connected to it. @@ -66,7 +67,7 @@ no need for having tons of clients (also RAM is the problem with many clients) * ~~MqttClient auto re-subscribe (::resubscribe works bad on broker.emqx.io)~~ * MqttClient auto reconnection * MqttClient user/password -* Wildcards (I may implement only # as I'm not interrested by a clever and cpu consuming matching) +* ~~Wildcards (I may implement only # as I'm not interrested by a clever and cpu consuming matching)~~ * I suspect that MqttClient::parent could be removed and replaced with a simple boolean (this'll need to rewrite a few functions) From 4b12aaa198379141537ec0e1c467071cba456f28 Mon Sep 17 00:00:00 2001 From: hsaturn Date: Mon, 21 Nov 2022 01:47:47 +0100 Subject: [PATCH 2/2] Update README.md Unit tests in features --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 46bee6a..7790fe3 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ TinyMqtt is a small, fast and capable Mqtt Broker and Client for Esp8266 / Esp32 - zeroconf, this is a strange but very powerful mode where all brokers tries to connect together on the same local network. - small memory footprint (very efficient topic storage) +- TinyMQTT is largely unit tested, so once a bug is fixed, it is fixed forever ## Limitations