Support for 3rd party Vera plugins ?
-
The AltHue plugin works fine as well as RfxTrx plugin and, of course, your own Switchboard, Virtual Sensor, Sonos. I have not installed, yet, the Harmony plugin so I can not test it now, although I have a Harmony in the TV-room.
-
@pabla said in Support for 3rd party Vera plugins ?:
Can confirm that Vera Reactor has Harmony support. You’re able to start/end activities and send device commands too
Sounds promising if it already works in Reactor plugin for Vera.
In addition I'd need to be able to also tell which Harmony Activity is currently active? Or if the Power Off activity is active etc.
-
@matohl said in Support for 3rd party Vera plugins ?:
The AltHue plugin works fine as well
In MSR or in the Reactor plugin for Vera?
-
@matohl Is it ?
I can't see how to run a Hue Scene or start the ColorLoop off the Hue Bridge.
There doesn't appear to be any Actions implemented yet against the AltHue device.
-
@matohl Is it ?
I can't see how to run a Hue Scene or start the ColorLoop off the Hue Bridge.
There doesn't appear to be any Actions implemented yet against the AltHue device.
-
As @rigpapa said, he needs to map them.
Since we're at it, I think both my VeraAlexa and VeraTelegram plug-ins are good candidate as a native MSR plug-in, since they could be written as node.js/bash script. Virtual HTTP Devices plug-in is using standard services, so we should be good.
-
And that’s ok if you want to send text only, but images/videos could be complex, since you need to send a file as well.
@therealdb said in Support for 3rd party Vera plugins ?:
but images/videos could be complex, since you need to send a file as well.
Yeah I'm not doing that currently just text.
-
Telegram plugin will be supported in 21055 (build later today). I am working on ALTHUE. Challenging since I don't own these devices.
-
Telegram plugin will be supported in 21055 (build later today). I am working on ALTHUE. Challenging since I don't own these devices.
@toggledbits said in Support for 3rd party Vera plugins ?:
Challenging since I don't own these devices.
let me know if you need help. for ALTHue, I think an emulator (ie: HA-Bridge) could be enough.
-
I got all your stuff. That really helps. First pass support is in for 21055. Let's see how it goes.
-
HARMONY SEND DEVICE COMMAND - CONFIRMED AS WORKING
I've tested sending a Device Command to an IR device via the Harmony hub in an MSR rule, see my note on the ticket here.
I can now see the Harmony plugin's ServiceID functions under an Entity Action in MSR, by selecting the Harmony Hub device.
I tried issuing a Device Command first, to turn on an Amplifier that runs the speaker in my Bathroom ceiling.
I used the Harmony plugin for Vera HTTP API with these commands to work out what information I needed. Or I could have looked in the Variables tab in Vera for this Harmony Hub device instead.
You can see here on the Vera forum about these HTTP commands.
List All Devices
(214 Is the Vera Device ID number of the Harmony Hub device)
http://VERA-IP/port_3480/data_request?id=lr_Harmony214&cmd=list_devices
In the results I found the device I wanted to send a command to.
{ "Device": "Denon Mini System", "Manufacturer": "Denon", "ID": "70564644", "Model": "UDM31" }
So 70564644 is the devices ID number.
List All Commands of that device
http://VERA-IP/port_3480/data_request?id=lr_Harmony214&cmd=list_device_commands&cmdp1=70564644
In the results I then found the "Command" that I want to send from MSR, in this case its PowerToggle
[ { "Function": "Power", "Commands": [ { "Action": "PowerToggle", "Label": "Power Toggle" } ]
Duration is the length of time the Harmony Hub should blast the IR command I set this to 1
My MSR rule here is linked / triggered by a virtual ON / OFF switch in Vera, so I also configured the "Reset Reaction" in the rule.
When I turn ON or OFF the "Bathroom Amplifier" virtual switch in Vera, the IR command "PowerToggle" is sent to the amplifier OK, so its working !
Today I will also test starting different Harmony Activities and Powering Off the Harmony Hub.