I am looking for an inexpensive or free cloud based MQTT broker, found Beebotte.
I built a simple Pi CPU temp flow. Debug shows temp OK, but there's nothing showing at the Beebotte end.
MQTT node shows disconnected when flow initiated, is that normal behaviour?
[{"id":"c09fa8b6a33f5ce7","type":"tab","label":"Flow 2","disabled":false,"info":""},{"id":"f9c23d23.c8c24","type":"exec","z":"c09fa8b6a33f5ce7","command":"vcgencmd measure_temp","addpay":false,"append":"","useSpawn":"false","timer":"","winHide":false,"oldrc":false,"name":"Raspberry CPU Temperature","x":440,"y":60,"wires":[["a0ad4644.0efbf8"],[],[]]},{"id":"a0ad4644.0efbf8","type":"function","z":"c09fa8b6a33f5ce7","name":"Extract CPU Temp","func":"const re = /^temp=(.*)'C$/gm;\nmsg.payload = Number(msg.payload.replace(re, '$1'));\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":810,"y":40,"wires":[["8317134.cff18f","1447e421761f79c5"]]},{"id":"a97d78fc.40c268","type":"inject","z":"c09fa8b6a33f5ce7","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"60","crontab":"","once":true,"onceDelay":0.1,"topic":"","payloadType":"date","x":150,"y":60,"wires":[["f9c23d23.c8c24"]]},{"id":"8317134.cff18f","type":"debug","z":"c09fa8b6a33f5ce7","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1070,"y":140,"wires":[]},{"id":"1447e421761f79c5","type":"mqtt out","z":"c09fa8b6a33f5ce7","name":"cputemp","topic":"cputemp","qos":"","retain":"true","respTopic":"","contentType":"","userProps":"","correl":"","expiry":"","broker":"8e908f158b20c915","x":1070,"y":340,"wires":[]},{"id":"8e908f158b20c915","type":"mqtt-broker","z":"c09fa8b6a33f5ce7","name":"","broker":"mqtt.beebotte.com","port":"1883","clientid":"","usetls":false,"protocolVersion":"4","keepalive":"0","cleansession":true,"birthTopic":"","birthQos":"0","birthPayload":"","birthMsg":{},"closeTopic":"","closeQos":"0","closePayload":"","closeMsg":{},"willTopic":"","willQos":"0","willPayload":"","willMsg":{},"sessionExpiry":"","credentials":{}}]
The Beebotte API and Secret Key are not used anywhere.
Is it correct that you only use the Beebotte channel token as security, in the MQTT node username filed?
Thank you.