Compare commits
1 Commits
ef9cc23744
...
2c9ca24164
Author | SHA1 | Date | |
---|---|---|---|
|
2c9ca24164 |
@ -1,3 +1,4 @@
|
|||||||
|
import os
|
||||||
import json
|
import json
|
||||||
import datetime
|
import datetime
|
||||||
import logging
|
import logging
|
||||||
@ -18,7 +19,7 @@ heat_pin = 26
|
|||||||
|
|
||||||
heat_state = False
|
heat_state = False
|
||||||
|
|
||||||
CONFIG_FILE = "config/greenhouse.json"
|
CONFIG_FILE = "greenhouse/config/greenhouse.json"
|
||||||
|
|
||||||
GPIO.setwarnings(False)
|
GPIO.setwarnings(False)
|
||||||
GPIO.setmode(GPIO.BCM)
|
GPIO.setmode(GPIO.BCM)
|
||||||
@ -94,6 +95,7 @@ class GreenControl(Thread):
|
|||||||
while self.__run_condition:
|
while self.__run_condition:
|
||||||
if self.__trigger_read_config:
|
if self.__trigger_read_config:
|
||||||
self.__trigger_read_config = False
|
self.__trigger_read_config = False
|
||||||
|
log.info(os.getcwd())
|
||||||
with open(self.cfg_file, "r") as f:
|
with open(self.cfg_file, "r") as f:
|
||||||
self.config = json.load(f)
|
self.config = json.load(f)
|
||||||
now = datetime.datetime.now()
|
now = datetime.datetime.now()
|
||||||
|
Loading…
Reference in New Issue
Block a user