I've graduate from a gist to a full repo. See https://github.com/ccutrer/balboa_worldwide_app, especially https://github.com/ccutrer/balboa_worldwide_app/blob/master/doc/protocol.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local wibox = require( "wibox" ) | |
local awful = require( "awful" ) | |
local rad_tag = require( "radical.impl.common.tag" ) | |
local beautiful = require( "beautiful" ) | |
local radical = require( "radical" ) | |
local rad_task = require( "radical.impl.tasklist" ) | |
local chopped = require( "chopped" ) | |
local collision = require( "collision" ) | |
local color = require( "gears.color" ) | |
local infobg = require( "radical.widgets.infoshapes" ) |
- usbipd.service (server/physical device)
- usbip.service (client/HASS host)
- udev rules file for client host -- maps USB device to
/dev/zwave
(add to/etc/udev/rules.d/
) - Client Manager Script
See the original instructions here: https://community.home-assistant.io/t/rpi-as-z-wave-zigbee-over-ip-server-for-hass/23006 also see the notes below in each file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
#You'll need to enable IPMI over lan in idrac first | |
#iDRAC Settings -> Network -> IPMI Settings | |
#Channel Privilege Level Limit needs to be Administrator | |
#You may want to create a dedicated username/pass with IPMI permission in iDRAC Settings -> User Authentication | |
IPMIHOST=idracip | |
IPMIUSER=username | |
IPMIPW=password | |
IPMIEK=0000000000000000000000000000000000000000 |