This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mport paho.mqtt.client as mqtt | |
| import time | |
| import subprocess | |
| def on_connect(client, userdata, flags, rc): | |
| print("Connected with result code " + str(rc)) | |
| # Subscribing in on_connect() means that if we lose the connection and | |
| # reconnect then subscriptions will be renewed. | |
| client.subscribe([("homeassistant/piDisplay/switch/set", 1), ("homeassistant/piDisplay/brightness/set", 1)]) |