-
Notifications
You must be signed in to change notification settings - Fork 3
/
fan.py
50 lines (36 loc) · 1.58 KB
/
fan.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
43
44
45
46
47
48
49
50
################################################################################
# Fan
################################################################################
################################################################################
# IMPORTS
################################################################################
import socket
import json
from gpio import *
################################################################################
# CLASSES
################################################################################
################################################################################
# VARIABLES
################################################################################
################################################################################
# FUNCTIONS
################################################################################
################################################################################
# MAIN
################################################################################
def main():
#We want network traffic in UDP from the TC
sensor_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sensor_socket.bind(("0.0.0.0", 4445))
g = gpio(9)
g.set_direction(gpio.Direction.Output)
while True:
# Wait for next request from client
message, addr = sensor_socket.recvfrom(128)
print "FAN: ", message, addr
message = json.loads(message)
if "enable" in message:
g.set_value(message["enable"])
if __name__ == "__main__":
main()