aa146b15e5
Signed-off-by: Thomas Klaehn <thomas.klaehn@u-blox.com>
19 lines
373 B
Python
19 lines
373 B
Python
'''
|
|
Created on Dec 24, 2016
|
|
|
|
@author: tkl
|
|
'''
|
|
import sys
|
|
import time
|
|
import light_sensor
|
|
import mqtt
|
|
|
|
def main():
|
|
conn = mqtt.Mqtt(hostname='proxy')
|
|
light = light_sensor.LightSensor(1, 0x23)
|
|
conn.transmit("outdoor/chickenhouse/sensors/light", \
|
|
str(int(time.time())) + " " + str(light.read()))
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|