From 389996f0b353f45c445a4831366055ed143669dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maik=20Mu=CC=88ller?= Date: Sat, 4 May 2024 11:46:32 +0200 Subject: [PATCH] Save --- grow_system_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grow_system_api.py b/grow_system_api.py index 0e3376c..5b9ccb3 100644 --- a/grow_system_api.py +++ b/grow_system_api.py @@ -15,7 +15,7 @@ class GrowSystemApi: self.base_url = self.device_info.server_url def say_hello(self): - response = self.http_client.post(self.base_url + "/api/device", self._get_device_data()) + response = self.http_client.post(self.base_url + "/api/device/hello", self._get_device_data()) print(response.text) jsonResult = json.loads(response.text) print(jsonResult)