Jump to content

maverick2041

Members
  • Posts

    11
  • Joined

  • Last visited

maverick2041's Achievements

Newbie

Newbie (1/6)

4

Reputation

  1. I'm happy to report, thanks to developer shbatm in the two aforementioned repos, that this is now working directly in Home Assistant via the isy994 integration. Tested with an Inovelli Red Series On/Off switch as-of release 3.0.0.dev17 here: https://github.com/shbatm/hacs-isy994/releases
  2. Also a good idea, thank you! ? Though I was hoping to do this as directly as possible. I managed to find two issues on GitHub tracking feature requests for this exact functionality for PyISY & the ISY994 home assistant component, so it looks like it may be possible in the future. PyISY: https://github.com/automicus/PyISY/issues/140 ISY994 HA component: https://github.com/shbatm/hacs-isy994/issues/70
  3. Thanks very much for the suggestion Javi. I tried to implement what you had and came up with this for the service call in Home Assistant: entity_id: switch.zw_002_on_off_power_switch command: CONFIG parameters: {"num.uom107":8,"val.uom114":33884690} Home Assistant won't accept the dict for parameters unless I encase the key names in quotes "" Based on the UOM values found here: https://wiki.universal-devices.com/index.php?title=ISY_Developers:API:V5:Appendix:Units_of_Measure Home Assistant however throws this error using "CONFIG" for the command: Failed to call service isy994/send_raw_node_command. Invalid ISY Command. for dictionary value @ data['command'] It accepts the command if I change CONFIG to ST, or DON, DOF, etc, but it just performs the command and ignores the parameters. I found the REST equivalent of what I'm trying to do here: https://wiki.universal-devices.com/index.php?title=ISY_Developers:API:REST_Interface#Commands This works: http://x.x.x.x/rest/zwave/node/ZW002_1/config/set/8/33884690/4 Seems like I'll have to figure out or ask if the isy994 integration for Home Assistant supports a "config" command, but at least I can pass the values over REST requests for now. Thanks again.
  4. Hi there, I'm trying to figure out if it's possible, and how to format a proper service call, to update the LED on a Inovelli ZWave Red Series On/Off Switch from Home Assistant using the ISY994 integration. I'm using this tool to determine the proper parameters to send: https://nathanfiscus.github.io/inovelli-notification-calc/ This works great when running from the ISY, but I'm unsure how to proceed with Home Assistant. Fast-Blinks the LED Orange for 5 seconds It seems like I would need to use isy994.send_raw_node_command (https://www.home-assistant.io/integrations/isy994/) in Home Assistant but I'm not sure what/if to use for "command:" or how to indicate the byte sizes of the parameters and their actual values. I understand that it needs to be in dictionary format, but have no idea what the key names might be. This is the format specified for using the isy994.send_raw_node_command: Parameter Description Example entity_id Name of an entity to send command. light.front_door command The ISY REST Command to be sent to the device DON value (Optional) The integer value to be sent with the command. 255 parameters (Optional) A dict of parameters to be sent in the query string (e.g. for controlling colored bulbs). [object Object] unit_of_measurement (Optional) The ISY Unit of Measurement (UOM) to send with the command, if required. 67 I know I can communicate with the switch since I'm able to turn it on/off from Home Assistant by using the following in an isy994.send_raw_node_command call: entity_id: switch.zw_002_on_off_power_switch command: DON (or DOF) Any ideas or guidance you have would be very much appreciated! Thank you for reading!
×
×
  • Create New...