This repository was archived by the owner on Dec 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhumidityChecker.py
executable file
·99 lines (81 loc) · 2.52 KB
/
humidityChecker.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/python
import time, os, twitter
import readSensor
import ConfigParser
#settings id name threshold
sensorLookUp = {"PIN0" : ("flower1", 500)}
def check():
sensorReadings = {}
readings = 0
while 1:
try:
value, id, sensor = readSensor.readSensor()
except:
print "not able to get sensor reading",
continue
try:
if sensor != "Humidity":
continue
#if sensor have allready have been read then we have
#read them all
if sensorReadings.has_key(sensorLookUp[id][0]):
break
sensorReadings[sensorLookUp[id][0]] = int(value)
except:
print "ID:", id, "not found in sensorLookUp, please add"
return sensorReadings;
class TweetRc(object):
def __init__(self):
self._config = None
def getUsername(self):
return self._getOption('username')
def getPassword(self):
return self._getOption('password')
def _getOption(self, option):
try:
return self._getConfig().get('Tweet', option)
except:
return None
def _getConfig(self):
if not self._config:
self._config = ConfigParser.ConfigParser()
self._config.read(os.path.expanduser('~/.tweetrc'))
return self._config
def alarm(name, value):
print name, "got dry value:", value
rc = TweetRc()
api = twitter.Api(username=rc.getUsername(), password=rc.getPassword())
api.PostUpdate("Im starting to get thirsty now, please give me " +
"something to drink :)")
def dealarm(name, value):
print name, "got dry value:", value
rc = TweetRc()
api = twitter.Api(username=rc.getUsername(), password=rc.getPassword())
api.PostUpdate("nom nom nom, i got some water now :)")
def main():
thresholdLimit = 5 # how many time in a row before triggering alarm
thresholdGuard = {}
for id, setting in sensorLookUp.items() :
# threshold #triggerd
thresholdGuard[setting[0]] = [setting[1], 0]
while 1:
readings = check()
for name, value in readings.items():
if thresholdGuard[name][0] < value and \
thresholdGuard[name][1] < 0:
thresholdGuard[name][1] -= 1
print name, value, "detrigged"
elif thresholdGuard[name][0] > value and \
thresholdGuard[name][1] >= 0:
thresholdGuard[name][1] += 1
print name, value, "trigged"
if thresholdGuard[name][1] >= thresholdLimit:
alarm(name, value)
thresholdGuard[name][1] = -1 #active alarm
elif thresholdGuard[name][1] <= -thresholdLimit:
dealarm(name, value)
thresholdGuard[name][1] = 0 #deactive alarm
print ".",
time.sleep(30) # sleep 30 seconds
if __name__ == "__main__":
main()