Anzeige aller Sensoren, die am Mosquitto angeschlossen sind: (IP-Adresse des BBB 192.168.80.106)
$ mosquitto_sub -h 192.168.80.106 -v -t /#
/Sensor/3B1B3A {"ID": "3B1B3A", "TI": 25.48, "L": 98875.38, "F": 43.48, "T": 21.75}
Im Python Programm für [paho](https://www.eclipse.org/paho/clients/python/ den Sensor eintragen)
def on_connect(client, userdata, flags, rc):
print("Connected with result code " + str(rc))
client.subscribe('/Sensor/3B1B3A')
Tags: beaglebone paho mqtt