Raspberry Pi - MQTT for IoT
Identify the error in this MQTT client setup code on a Raspberry Pi:
client = mqtt.Client()
client.connect("broker.local")
client.subscribe("home/kitchen/temperature")
client.loop_forever()
# Missing on_message callback assignment