wget -O - razberry.z-wave.me/install/v2.2.2-test-new-webserver-8-ga9cd319 | sudo bash Z-Way is a Hub for Z-Wave, Enocean devices, various WiFi bulbs, sockets, locks and other IoT controlled by HTTP and TCP requests. The web interface is available on port 8083.
wget https://nodejs.org/dist/v4.4.5/node-v4.4.5-linux-armv6l.tar.xz tar -xvf node-v4.4.5-linux-armv6l.tar.xz cd node-v4.4.5-linux-armv6l sudo cp -R * /usr/local/ Node.js is a platform for running JavaScript code on a server based on the Google V8 engine.
sudo npm install -g homebridge sudo npm install -g homebridge-zway Homebrige provides support for Homekit. Homebrige-zway is a plugin that adds improved support for Homekit in Z-Way.
{ "bridge": { "name": "Homebridge", "username": "CC:22:3D:E3:CE:31", "port": 51826, "pin": "031-45-154" }, "platforms": [ { "platform": "ZWayServer", "url": "http://localhost:8083/", "login": "admin", "password": "admin" } ] } The last slash in the url is very important, it does not work without it. sudo /etc/init.d/z-way-server start sudo homebridge -U /usr/local/lib/node_modules/homebridge & If everything is correct, then in the log you will see devices that you can control and a PIN code.
Source: https://habr.com/ru/post/394621/
All Articles