NEO Coolcam Smart Power Plug and Siren

Hello,

i have a Vera Edge controller and i recently bought these two z wave devices:

[https://www.aliexpress.com/item/NEO-COOLCAM-iHome-Kits-NAS-WR01Sensor-Smart-Home-EU-Power-Plug-Home-Automation/32824757235.html]
[https://www.aliexpress.com/item/NEO-Z-wave-Plus-Wireless-Home-Automation-Battery-Powered-Also-Can-Be-Charged-With-USB-Siren/32850753451.html]

I can control both devices from Home Assistant but i would like to know two things.

In Home Assistant The Power Plug have only the following attributes: current_power_w, current_energy_kwh, Vera Device Id, friendly_name, icon: mdi:power-socket-eu. In Vera i see some other variables like Volts and Amps. There is a way to use them in Home Assistant ?

The second question is about the siren.
I found a post with some luup actions:

These actions can be called from Home Assistant ?

Thank you.

I managed to get the Volts from the power plug with the following sensor:

  • platform: rest
    name: ‘Power Plug V’
    resource: ‘http://IP_ADDRESS:3480/data_request?id=variableget&DeviceNum=VERA_DEVICE_ID&serviceId=urn:micasaverde-com:serviceId:EnergyMetering1&Variable=Volts’
    unit_of_measurement: ‘V’

I tried the configuration below but is not working:

  • platform: rest
    name: ‘Power Plug V’
    resource: ‘http://IP_ADDRESS:3480/data_request’
    method: ‘GET’
    payload: ‘{ “id”: “variableget”, “DeviceNum”: VERA_DEVICE_ID, “serviceId”: “urn:micasaverde-com:serviceId:EnergyMetering1”, “Variable”: “Volts” }’
    unit_of_measurement: ‘V’

I found the links to change the sounds on the siren.

These can be put on scenes in Vera or called directly from Home Assistant.

The first will change the sound to 10 (alarm), the second command to 6 (doorbell).
luup.call_action(‘urn:micasaverde-com:serviceId:ZWaveNetwork1’,‘SendData’,{Node=‘ALTID’,Data=‘112 4 5 1 10’},1)
luup.call_action(‘urn:micasaverde-com:serviceId:ZWaveNetwork1’,‘SendData’,{Node=‘ALTID’,Data=‘112 4 5 1 6’},1)

These two links will do the same.
http://IP_ADDRESS:3480/data_request?id=action&DeviceNum=1&serviceId=urn:micasaverde-com:serviceId:ZWaveNetwork1&action=SendData&Node=ALTID&Data=112 4 5 1 10
http://IP_ADDRESS:3480/data_request?id=action&DeviceNum=1&serviceId=urn:micasaverde-com:serviceId:ZWaveNetwork1&action=SendData&Node=ALTID&Data=112 4 5 1 6

Maybe someone wants to change multiple parameters of a zwave device. First these parameters needs to be added in Vera, Device->Device Options->Add Configuration Settings. These parameters will be visible at VariablesSet:
http://IP_ADDRESS:3480/data_request?id=status&DeviceNum=DEVICEID

Then can be changed like this:
http://IP_ADDRESS:3480/data_request?id=variableset&DeviceNum=DEVICEID&serviceId=urn:micasaverde-com:serviceId:ZWaveDevice1&Variable=VariablesSet&Value=“PARAMETERS”

The documentation for the siren can be found here:

I tried to send notification commands like the link below but the siren did not responded.