diff --git a/grow_system_api.py b/grow_system_api.py deleted file mode 100644 index 8a73310..0000000 --- a/grow_system_api.py +++ /dev/null @@ -1,38 +0,0 @@ -from http_client import HTTPClient -from device_info import DeviceInfo -import json - - -class GrowSystemApi: - - http_client = HTTPClient() - - device_info = DeviceInfo() - - base_url = '' - - def __init__(self): - self.base_url = self.device_info.server_url - - def activate(self, config): - response = self.http_client.post(self.base_url + "/api/device/activate", self._get_device_data()) - return self_get_json_encoded(response.text) - - def say_hello(self): - response = self.http_client.post(self.base_url + "/api/device", self._get_device_data()) - print(response.text) - jsonResult = json.loads(response.text) - print(jsonResult) - return jsonResult; - - def send_measurements(self, device_id, data): - url = self.base_url + "/api/device/" + str(device_id) + "/sensor-log" - response = self.http_client.post(url, data) - return json.loads(response.text) - - def _get_device_data(self): - return self.device_info.get_all_device_infos() - - def _get_json_encoded(self, text): - return json.loads(text) - diff --git a/growsystem.py b/growsystem.py deleted file mode 100644 index 31a151c..0000000 --- a/growsystem.py +++ /dev/null @@ -1,41 +0,0 @@ -from gs.setup import Setup -import os - - -class GrowSystem: - - version = "1.0" - - def __init__(self): - print("Initialize Growsystem", self.version) - if self._is_config_existing(): - print("Skip Setup. Config existing.") - elif self._is_initial_config_existing(): - self._activate() - else: - print("No config existing. Start setup ...") - self._setup() - - def _setup(self): - setup = Setup() - setup.setup_pico() - - def _activate(self): - print("Start activation!") - - def _is_config_existing(self): - return self._is_file_existing('/gs/config/config.py') - - def _is_initial_config_existing(self): - return self._is_file_existing('/gs/config/initial_config.py') - - def _is_file_existing(self, filepath): - try: - f = open(filepath, "r") - f.close() - # continue with the file. - return True - except OSError: # open failed - # handle the file open cas - return False - diff --git a/gs/config/device_config.py b/gs/config/device_config.py new file mode 100644 index 0000000..4111c92 --- /dev/null +++ b/gs/config/device_config.py @@ -0,0 +1 @@ +sensors = [{"pin_int_sda": 8, "type": "ambilight", "pin_int": 8, "pin_int_scl": 9}, {"pin_int": 15, "type": "dht22"}, {"pin_int": 26, "type": "moisture"}] \ No newline at end of file diff --git a/gs/config/initial_config.py b/gs/config/initial_config.py index fb8b537..9a3b791 100644 --- a/gs/config/initial_config.py +++ b/gs/config/initial_config.py @@ -1 +1 @@ -config = {"pin": "4628", "password": "95%04-MM", "ssid": "Oppa-95.lan"} \ No newline at end of file +config = {"pin": "1234", "password": "95%04-MM", "ssid": "Oppa-95.lan"} \ No newline at end of file diff --git a/gs/device_info.py b/gs/device_info.py index c88ffa7..eb4c1da 100644 --- a/gs/device_info.py +++ b/gs/device_info.py @@ -1,4 +1,5 @@ import network +import json class DeviceInfo: @@ -58,6 +59,9 @@ class DeviceInfo: 'ip_address': self.get_ipaddress(), 'token': self.token} + def config(self): + return self._loadConfig() + def _format_mac(self, mac): # Split the MAC address into pairs of two characters each pairs = [mac[i:i+2] for i in range(0, len(mac), 2)] @@ -65,4 +69,10 @@ class DeviceInfo: formatted_mac = ":".join(pairs) return formatted_mac + def _loadConfig(self): + with open('/gs/config/sensors.py', 'r') as file: + json_content = file.read() + return json.loads(json_content) + + \ No newline at end of file diff --git a/gs/grow_system_api.py b/gs/grow_system_api.py index a40ed6b..fa7ab66 100644 --- a/gs/grow_system_api.py +++ b/gs/grow_system_api.py @@ -17,6 +17,10 @@ class GrowSystemApi: self.base_url = self.device_info.server_url self.connect_wifi(ic.config['ssid'], ic.config['password']) + # config = self.device_info.config() + # print("Config:", config) + # print("Test", config['test']) + def activate(self, config): data = self._get_device_data() data.update({ diff --git a/gs/growsystem.py b/gs/growsystem.py index fad5818..26885ad 100644 --- a/gs/growsystem.py +++ b/gs/growsystem.py @@ -1,5 +1,6 @@ from gs.setup import Setup import os +import ujson class GrowSystem: @@ -34,7 +35,14 @@ class GrowSystem: import gs.config.initial_config as ic self.initial_config = ic.config device_config = self.gsapi.activate(self.initial_config) - print("Device Config:", device_config) + #print("Device Config:", device_config['data']) + sensors = device_config['data']['sensors'] + sensor_configs = [] + for sensor in sensors: + sensor_configs.append(sensor['config']) + print(sensor['config']) + with open("/gs/config/device_config.py", "w") as f: + f.write("sensors = " + ujson.dumps(sensor_configs)) def _is_config_existing(self): return self._is_file_existing('/gs/config/config.py') diff --git a/little_apache.py b/little_apache.py deleted file mode 100644 index 841c96c..0000000 --- a/little_apache.py +++ /dev/null @@ -1,110 +0,0 @@ -import socket -from gs.classes.http_request import HttpRequest - - -class LittleApache(): - - available_wifis = [] - keep_webserver_alive = True - - - def __init__(self, net): - self.net = net - addr = socket.getaddrinfo('0.0.0.0', 80)[0][-1] - self.s = socket.socket() - self.s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) - self.s.bind(addr) - self.s.listen() - # print('Listening on', addr) - - def start(self): - print("Webserver started. Connect to: " + self.net.ifconfig()[0]) - print(self.net.ifconfig()) - - while self.keep_webserver_alive: - try: - conn, addr = self.s.accept() - #print('Got a connection from', addr) - - # Receive and parse the request - request = conn.recv(1024) - # print("Request (RAW)", request) - http_request = HttpRequest(request) - self.http_request = http_request - request = str(request) - # print('Request content = %s' % request) - #try: - # request = request.split()[1] - # print('Request:', request) - #except IndexError: - # pass - response = self.response(http_request) - # Send the HTTP response and close the connection - conn.send('HTTP/1.0 200 OK\r\nContent-type: text/html\r\n\r\n') - conn.send(response) - conn.close() - except OSError as e: - conn.close() - print('Connection closed') - return self - - def response(self, request: HttpRequest): - #print("Webpage: ", request) - print("Request method: ", request.method, "Request path: ", request.path) - - header = f""" - - -
-