Fibaro wall plug ring colours

For Z-Wave related questions in Domoticz

Moderator: leecollings

Post Reply
mcmikev
Posts: 146
Joined: Tuesday 26 May 2015 8:11
Target OS: Raspberry Pi / ODroid
Domoticz version: beta
Location: right here
Contact:

Fibaro wall plug ring colours

Post by mcmikev »

Hi,

I am trying to get a fibaro wall plug to change the ring colour when a device or state is on or changed.

I know the code for colour red and off, from another post but how do I get the other codes for green etc?

Anyone knows these codes and want to share them so we can change the ring colour ?

To change the ring to red:

Code: Select all

http://127.0.0.1:8080/json.htm?type=command&param=applyzwavenodeconfig&idx=75&valuelist=42_UmVkIGlsbHVtaW5hdGlvbg%3D%3D_
To turn off

Code: Select all

http://127.0.0.1:8080/json.htm?type=command&param=applyzwavenodeconfig&idx=75&valuelist=42_aWxsdW1pbmF0aW9uIHR1cm5lZCBvZmYgY29tcGxldGVseQ%3D%3D_
Where the IDX number is the one you get from reading the zwave controller so that is per user different.

Hope someone knows these codes :-)
frustreerMeneer
Posts: 39
Joined: Tuesday 21 March 2017 11:56
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Fibaro wall plug ring colours

Post by frustreerMeneer »

Maybe you found out in the meantime but it is described here:
https://www.domoticz.com/wiki/Domoticz_ ... ve_devices

Look at the section 'Changing a zwave device parameter'.
mcmikev
Posts: 146
Joined: Tuesday 26 May 2015 8:11
Target OS: Raspberry Pi / ODroid
Domoticz version: beta
Location: right here
Contact:

Re: Fibaro wall plug ring colours

Post by mcmikev »

Did some searching and testing. Was a finding game for me :-)

But did the trick eventually.

This are the codes for the colours

Code: Select all

Red
_UmVkIGlsbHVtaW5hdGlvbg%3D%3D_

Magenta
_TWFnZW50YSBpbGx1bWluYXRpb24%3D_

White
_V2hpdGUgaWxsdW1pbmF0aW9u_

Green
_R3JlZW4gaWxsdW1pbmF0aW9u_

Blue
_Qmx1ZSBpbGx1bWluYXRpb24%3D_

Yellow
_WWVsbG93IGlsbHVtaW5hdGlvbg%3D%3D_

Cyan
_Q3lhbiBpbGx1bWluYXRpb24%3D_


Off
_aWxsdW1pbmF0aW9uIHR1cm5lZCBvZmYgY29tcGxldGVseQ%3D%3D_
These codes come behind the &valuelist=42 directly.

So for example tunring the ring on as status in colour blue would be

Code: Select all

http://127.0.0.1:8080/json.htm?type=command&param=applyzwavenodeconfig&idx=75&valuelist=42_Qmx1ZSBpbGx1bWluYXRpb24%3D_
Last edited by mcmikev on Monday 25 February 2019 17:30, edited 1 time in total.
frustreerMeneer
Posts: 39
Joined: Tuesday 21 March 2017 11:56
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Fibaro wall plug ring colours

Post by frustreerMeneer »

Ok, great! Will try them when i get my plugs :-)
Kochmeister
Posts: 17
Joined: Wednesday 24 February 2016 11:50
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Contact:

Re: Fibaro wall plug ring colours

Post by Kochmeister »

Hi,
I found this topic as I was looking for the ring color change in on / off state of the FGWPE/F Wall Plug Gen5+.
I run domoticz on the raspberry pi, and I can change color settings in the Z-wave stick controller.
However the plug does not apply these settings.
When using the commands above the setting will change accordingly, however not at the plug itself.
I only can see the ring flash white when the on/off status changes.

can someone point me in the correct direction? or does this simply not work anymore from domoticz?

Thanks
Gravityz
Posts: 587
Joined: Wednesday 16 December 2015 19:13
Target OS: NAS (Synology & others)
Domoticz version: 2022.2
Location: Netherlands
Contact:

Re: Fibaro wall plug ring colours

Post by Gravityz »

i do this from a linux script
if i remember correctly you can change the color for both the ON state as well as the off state.
maybe this will help you out. change ip address to the one you need
if you only want to change the color once(eg green on, no light off) this will work as well

for normal operation
off= no color
on=green

for setting alarm state
off=red
on=red

normal state script
normal.sh

Code: Select all

#!/bin/bash
curl -s "http://192.168.1.50:8084/json.htm?type=command&param=applyzwavenodeconfig&idx=5&valuelist=41_R3JlZW4gaWxsdW1pbmF0aW9u_42_aWxsdW1pbmF0aW9uIHR1cm5lZCBvZmYgY29tcGxldGVseQ%3D%3D_"
curl -s "http://192.168.1.50:8084/json.htm?type=command&param=applyzwavenodeconfig&idx=6&valuelist=41_R3JlZW4gaWxsdW1pbmF0aW9u_42_aWxsdW1pbmF0aW9uIHR1cm5lZCBvZmYgY29tcGxldGVseQ%3D%3D_"
curl -s "http://192.168.1.50:8084/json.htm?type=command&param=applyzwavenodeconfig&idx=7&valuelist=41_R3JlZW4gaWxsdW1pbmF0aW9u_42_aWxsdW1pbmF0aW9uIHR1cm5lZCBvZmYgY29tcGxldGVseQ%3D%3D_"
alarm state script
alarm.sh

Code: Select all

#!/bin/bash
curl -s "http://192.168.1.50:8084/json.htm?type=command&param=applyzwavenodeconfig&idx=5&valuelist=41_UmVkIGlsbHVtaW5hdGlvbg%3D%3D_42_UmVkIGlsbHVtaW5hdGlvbg%3D%3D_"
curl -s "http://192.168.1.50:8084/json.htm?type=command&param=applyzwavenodeconfig&idx=6&valuelist=41_UmVkIGlsbHVtaW5hdGlvbg%3D%3D_42_UmVkIGlsbHVtaW5hdGlvbg%3D%3D_"
curl -s "http://192.168.1.50:8084/json.htm?type=command&param=applyzwavenodeconfig&idx=7&valuelist=41_UmVkIGlsbHVtaW5hdGlvbg%3D%3D_42_UmVkIGlsbHVtaW5hdGlvbg%3D%3D_"
Kochmeister
Posts: 17
Joined: Wednesday 24 February 2016 11:50
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Contact:

Re: Fibaro wall plug ring colours

Post by Kochmeister »

Thanks for this.
For me it does not seem to work. I think this is because I have an older gen-5 Zwave stick.
Als the plug shows up as "wall plug gen5+" I assume for this to work I need a gen5+ Zwave stick. (normal on/off switching does work!)
So i think I need to accept that I cannot change the color, or need to upgrade the stick.
Gravityz
Posts: 587
Joined: Wednesday 16 December 2015 19:13
Target OS: NAS (Synology & others)
Domoticz version: 2022.2
Location: Netherlands
Contact:

Re: Fibaro wall plug ring colours

Post by Gravityz »

can you change the colors from the device settings in domoticz
Post Reply

Who is online

Users browsing this forum: Bing [Bot] and 1 guest