homebridge-cmdswitch2
homebridge-cmdswitch2 copied to clipboard
CMD Plugin for HomeBridge (API 2.0): https://github.com/nfarina/homebridge
I have 3 cmd switches set up, and every 2 minutes all 3 report their current state in the homebridge logs. Ex: [2/17/2022, 10:45:27 AM] [cmdSwitch2] Fog Button is off....
Since updating to Homebridge v1.4.0, I'm getting "No Response" from my switchable items in the Home app, and the following in the Homebridge logs: ``` [1/29/2022, 9:02:45 AM] [homebridge-cmdswitch2] This...
Hi, I'm not seeing the functionality expected with `"synchronous": true`. Three lights and some Python code to bit bash a 433 MHz transmitter. All three lights configured to the same...
I have a switch setup with this as the off command: "off_cmd": "/home/pi/venv/bin/xbox-poweroff --address 192.168.1.35 --liveid FXXXXXXXXXXXXXXX" this works fine if I run it from a terminal in PuTTy. if...
Hey there, really hoping for some help. Here is part of my conf (I did remove creds): { "platform": "cmdSwitch2", "name": "cmdSwitch2", "switches": [ { "name": "SDL ALERT", "on_cmd": "curl...
@luisiam I'm seeking a way to identify "No Response" for a critical Homekit smart plug as a trigger to create an audio alert for a disabled family member. Power "Off"...
I added some PS4 titles in my config but they're not showing up anywhere. ``` { "platform": "cmdSwitch2", "name": "CMD Switch", "switches": [ { "name": "Playstation 4", "on_cmd": "/usr/bin/ps4-waker -c...
Hi! When I manually turn off the PS4 the state not changed in Home app, it's always on. Homebridge log: [2020-12-27 23:22:04] [CMD Switch] Failed to determine Playstation state. [2020-12-27...
Thanks for writing this plugin; it's great! I'm using it with `ps4-waker` to turn on and off my PS4. I am running into a problem, though. The first time I...
Let's say I have a configuration like: ``` { "name": "Linux Computer", "on_cmd": "wakeonlan xx:xx:xx:xx:xx:xx", "off_cmd": "sshpass -p mypassword ssh -tt [email protected] '/sbin/poweroff'", "state_cmd": "ping -c 2 -W 1 192.168.0.4...