Syntax completion and error checking works for me. These are my VSC workspace settings for the modified ports:
{
"openhab.host": "<host IP>",
"openhab.port": 18080,
"openhab.karafCommand": "ssh openhab@<host IP> -p 8102",
"openhab.lspPort": 5008
}
Mh, for me this was the solution. To double check here is exactly what I did for my ZStick Gen5:
- Created
/lib/udev/rules.d/55-usb-zwave.rules
with following content:
SUBSYSTEM=="tty", ATTRS{idVendor}=="0658", ATTRS{idProduct}=="0200", SYMLINK+="usbZwave", MODE="0666"
- Update
docker-compose.yml
:
[...]
EXTRA_JAVA_OPTS: "[...] -Dgnu.io.rxtx.SerialPorts=/dev/usbZwave"
[...]
devices:
- "/dev/usbZwave:/dev/usbZwave"