Compare commits
No commits in common. "abdb3fe00c0d36290c47cc5570ef9407df6f6ace" and "c042597b65dc21483d34001b1f614edec94b026c" have entirely different histories.
abdb3fe00c
...
c042597b65
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,4 +1,4 @@
|
||||
dist/
|
||||
build/
|
||||
__pycache__/
|
||||
*.egg-info/
|
||||
greenhouse.egg-info/
|
||||
|
@ -76,11 +76,11 @@ class GreenControl(Thread):
|
||||
off_time = now.replace(hour=int(off_time_pattern[0]), minute=int(off_time_pattern[1]), second=0, microsecond=0)
|
||||
|
||||
if now > on_time and now <= off_time and not self.__water_state:
|
||||
GPIO.output(self.__pin, 1)
|
||||
GPIO.output(self.__pin, 0)
|
||||
self.__water_state = True
|
||||
log.info("Switch water on by time")
|
||||
elif now > off_time and self.__water_state:
|
||||
GPIO.output(self.__pin, 0)
|
||||
GPIO.output(self.__pin, 1)
|
||||
self.__water_state = False
|
||||
log.info("Switch water off by time")
|
||||
sleep(1)
|
||||
|
Loading…
Reference in New Issue
Block a user