EmbeddedMqttBroker
EmbeddedMqttBroker copied to clipboard
This is a Mqtt broker for embedded devices, developed in C++, FreeRTOS to use advanced multitasking capabilities, and arduino core. Tested in an Esp32 and esp8266.
Using SSCOM tool: ``` AT+CSQ +CSQ: 27,99 OK AT+CPIN? +CPIN: READY OK AT+CPSI? +CPSI: LTE,Online,214-03,0x2526,248405103,497,EUTRAN-BAND3,1849,5,0,8,50,55,10 OK AT+CMQTTSTART OK +CMQTTSTART: 0 AT+CMQTTACCQ=0,"a1accq",0 OK AT+CMQTTCFG="argtopic",0,1,1 OK AT+CMQTTCONNECT=0,"tcp://192.168.43.128:1883",20,1 +CMQTTCONNECT: 0,3 ERROR AT+CMQTTCONNECT=0,"tcp://192.168.43.128",20,1 +CMQTTCONNECT:...
Hey I was trying to make a website that can toggle the state of an LED using the liberally but I don't know how to publish a message from the...
do you see a way to make this code work over websockets so it's compatible with paho-mqtt js? thanks in advance Michael
that should be right in the headline.
Hello, Currently I use a Raspi with Mosquito as a broker to distribute the data from the Ahoy DTU and a Shelly Pro3EM. This also works very well. Now I...
I modified httpServerAndMqttBroker.ino to operate as as WIFI_AP and to allow up to 8 clients. ``` #include #include #include #include "EmbeddedMqttBroker.h" ... void setup(){ Serial.begin(115200); Serial.println(); Serial.println("Configuring access point..."); WiFi.mode(WIFI_AP);...
In console from EmbeddedMqttBroker appears: [226869][W][NewClientListenerTask.cpp:38] run(): Client from 192.168.2.60 rejected.
Is it possible to add mTLS support for this -- I need SecureMQTT
I'm running the simpleMqttBroker example, 2 clients are publishing and 2 are subscribing. After about 10 minutes, the broker consistently drops off the network. When this happens, I get the...