-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemo.py
42 lines (33 loc) · 1.06 KB
/
demo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import os, time, machine, onewire, ds18x20, network
from machine import PWM, Pin, ADC
from umqtt.simple import MQTTClient
import urequests as requests
# LED an GPIO12
led = machine.Pin(12, Pin.OUT) # Pin für LED
# OneWire an GPIO19
pin_ow = machine.Pin(19) # Pin für OneWire-Bus
ow = onewire.OneWire(pin_ow)
ds = ds18x20.DS18X20(ow)
#b'(ad\x11\xb3\x94V\xf5'
#b'(ad\x11\x83\xd6q\x81'
# Netzwerk
net()
mqtt_client = MQTTClient('ich', '10.0.0.2')
mqtt_client.connect()
# Endlosschleife
while 1:
# Temperatur lesen
ds.convert_temp() # Messung starten
time.sleep_ms(750) # Messzeit abwarten: 750ms
t = ds.read_temp(b'(ad\x11\x83\xd6q\x81')
print(t)
# MQTT-Broker benachrichtigen
mqtt_client.publish('/zuhause/temp/ds', str(t))
# Abhängig von Temperatur Steckdose und LED schalten
if t < 17:
requests.get("http://fs200.fritz.box/cm?cmnd=Power%20On")
led.on()
elif t > 22:
requests.get("http://fs200.fritz.box/cm?cmnd=Power%20Off")
led.off()
time.sleep(9)