Add clear version of commit 72f30ad.

This commit is contained in:
Grzegorz Hetman 2016-02-18 18:42:50 +01:00
parent e12077513f
commit 6178865cc6
16 changed files with 1044 additions and 0 deletions

View file

@ -0,0 +1,20 @@
# DS19B20 Broadcaster
>In this example you can see how to get data from multiple
>ds18b20 sensor and emit result over udb broadcaster address.
As a client server, you can use this simple udp receiver, writen in python:
```
import select, socket
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.bind(('<broadcast>', 8005))
s.setblocking(0)
while True:
result = select.select([s],[],[])
msg = result[0][0].recv(1024)
print msg.strip()
```