Skip to content

Instantly share code, notes, and snippets.

@halimbimantara
Forked from PhirePhly/mqtt_led_client.py
Last active August 12, 2021 02:44
Show Gist options
  • Save halimbimantara/58dc75b3682151097e5d15020c429951 to your computer and use it in GitHub Desktop.
Save halimbimantara/58dc75b3682151097e5d15020c429951 to your computer and use it in GitHub Desktop.
[RPI MQtt] #Python #Iot #Microcontroller
#!/usr/bin/env python
import paho.mqtt.client as mqtt
import RPi.GPIO as GPIO
def on_connect(client, userdata, rc):
#print ("Connected with rc: " + str(rc))
client.subscribe("kwf/demo/led")
def on_message(client, userdata, msg):
#print ("Topic: "+ msg.topic+"\nMessage: "+str(msg.payload))
if "green" in msg.payload:
#print(" Green on!")
GPIO.output(11, True)
else:
#print(" Green off!")
GPIO.output(11, False)
if "yellow" in msg.payload:
#print(" Yellow on!")
GPIO.output(12, True)
else:
#print(" Yellow off!")
GPIO.output(12, False)
if "red" in msg.payload:
#print(" Red on!")
GPIO.output(13, True)
else:
#print(" Red off!")
GPIO.output(13, False)
client = mqtt.Client()
client.on_connect = on_connect
client.on_message = on_message
client.connect("test.mosquitto.org", 1883, 60)
GPIO.setmode(GPIO.BOARD)
GPIO.setup(11, GPIO.OUT)
GPIO.setup(12, GPIO.OUT)
GPIO.setup(13, GPIO.OUT)
client.loop_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment