Simple MQTT Broker
sMQTTBroker is light and fast mqtt broker
Stable release

Platform:

Documentation:

IDE

Features
- Mqtt 3.1.1 / Qos 0 supported
Quickstart
{c++}
#include<sMQTTBroker.h>
{c++}
sMQTTBroker broker;
#define PORT 1883
{c++}
void setup(){
broker.init(PORT);
};
{c++}
void loop(){
broker.update();
};
Examples
SimpleBroker
AdvanceBroker
TODO
- [x] Client Identifier
- [ ] DUP
- [x] keep alive
- [x] user/password
- [x] append support Qos 1
- [x] PUBACK
- [ ] PUBREC
- [ ] PUBREL
- [ ] PUBCOMP
- [ ] append support MQTT 5.0

License