You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
649 B
31 lines
649 B
4 years ago
|
import time
|
||
|
from grove.grove_light_sensor_v1_2 import GroveLightSensor
|
||
|
from grove.grove_led import GroveLed
|
||
|
import paho.mqtt.client as mqtt
|
||
|
import json
|
||
|
|
||
|
light_sensor = GroveLightSensor(0)
|
||
|
led = GroveLed(5)
|
||
|
|
||
|
id = '<ID>'
|
||
|
|
||
|
client_telemetry_topic = id + '/telemetry'
|
||
|
client_name = id + 'nightlight_client'
|
||
|
|
||
|
mqtt_client = mqtt.Client(client_name)
|
||
|
mqtt_client.connect('test.mosquitto.org')
|
||
|
|
||
|
mqtt_client.loop_start()
|
||
|
|
||
|
print("MQTT connected!")
|
||
|
|
||
|
while True:
|
||
|
light = light_sensor.light
|
||
|
telemetry = json.dumps({'light' : light})
|
||
|
|
||
|
print("Sending telemetry ", telemetry)
|
||
|
|
||
|
mqtt_client.publish(client_telemetry_topic, telemetry)
|
||
|
|
||
|
time.sleep(5)
|