MQTT, IoT projeleri için kullanılan hafif bir mesajlaşma protokolüdür. Raspberry Pi ile bir MQTT istemcisi oluşturmak için şu Python kodunu kullanabilirsiniz:
import paho.mqtt.client as mqtt
def on_connect(client, userdata, flags, rc):
print("Bağlandı.")
client.subscribe("test/topic")
def on_message(client, userdata, msg):
print(f"Mesaj: {msg.payload.decode()}")
client = mqtt.Client()
client.on_connect = on_connect
client.on_message = on_message
client.connect("mqtt.eclipseprojects.io", 1883, 60)
client.loop_forever()
Bu kod, belirli bir MQTT konusuna abone olur ve gelen mesajları terminalde gösterir.