light: change mqtt broker

Signed-off-by: Thomas Klaehn <thomas.klaehn@u-blox.com>
This commit is contained in:
Thomas Klaehn 2017-03-30 10:32:42 +02:00
parent 28b0b82237
commit 0870736845

View File

@ -4,17 +4,15 @@ Created on Dec 24, 2016
@author: tkl
'''
import sys
from time import time
import paho.mqtt.client as mqtt
import time
from light_sensor.light_sensor import light_sensor
import mqtt
def main():
client = mqtt.Client()
client.connect("192.168.178.37", 1883, 60)
client.loop_start()
conn = mqtt.Mqtt(hostname='proxy')
light = light_sensor(1, 0x23)
client.publish("chickenhouse/sensors/light", str(int(time())) + " " + \
str(light.read()) + " lx")
conn.transmit("outdoor/chickenhouse/sensors/light", str(int(time.time())) + " " + \
str(light.read()) + " lx")
if __name__ == "__main__":
sys.exit(main())