From d21f22cd292182db5b4850b95c650eaa4601e83c Mon Sep 17 00:00:00 2001
From: jkerdreux-imt <jerome.kerdreux@imt-atlantique.fr>
Date: Fri, 31 Jan 2025 01:27:03 +0100
Subject: [PATCH] Starting

As usual, no doc, no sample file.. this should be funny
---
 devices/protocols/ZwaveJS/xaal/zwavejs/gw.py | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/devices/protocols/ZwaveJS/xaal/zwavejs/gw.py b/devices/protocols/ZwaveJS/xaal/zwavejs/gw.py
index 3bc80a7d..829265e6 100644
--- a/devices/protocols/ZwaveJS/xaal/zwavejs/gw.py
+++ b/devices/protocols/ZwaveJS/xaal/zwavejs/gw.py
@@ -1,15 +1,29 @@
 # from xaal.lib import tools
 
+import pdb
 import logging
+from zwave_js_server.client import Client as ZwaveClient
+from aiohttp.client import ClientSession
+
 
 PACKAGE_NAME = 'xaal.zwavejs'
 logger = logging.getLogger(__name__)
 
+URL = "ws://10.77.3.143:3000"
+
 
 class GW:
     def __init__(self, engine):
         self.engine = engine
         logger.debug("ZwaveJS gateway initialized")
+        engine.on_start(self.start)
+
+    async def start(self):
+        sess = ClientSession()
+        self.client = ZwaveClient(URL, sess)
+        await self.client.connect()
+        await self.client.initialize()
+        await self.client.receive_until_closed()
 
 
 def setup(eng):
-- 
GitLab