I am in the process of moving from Indigo to HA. I’ve installed HA on vanilla Ubuntu in a python venv. Everything good so far.
Since my Linux server is in a basement room, I have my Aeotec stick plugged into a Raspberry Pi on my main floor. I then set this up to “share” the stick over a socket connection. In Indigo, I was able to simply give the address of the stick as:
socket://192.168.5.101:3333
Looking at the Z-wave configuration in configuration.yaml, it looks like I need to specify the address as:
usb_path: /dev/ttyUSB0
Is there a way to use a socket connection instead?
… in case anyone is interested, this is how I configured my Pi to serve the USB stick over a socket:
pi@Zwave-Pi:~ $ sudo vi /etc/ser2net.conf
append the following:
3333:raw:0:/dev/ttyUSB0:115200 8DATABITS NONE 1STOPBIT
pi@Zwave-Pi:~ $ sudo service z-way-server stop
pi@Zwave-Pi:~ $ sudo service ser2net restart