Parameter Hex Input Format

Discussions about RaZberry - Z-Wave board for Raspberry computer
Post Reply
flurin
Posts: 16
Joined: 27 Sep 2015 15:21

Parameter Hex Input Format

Post by flurin »

Hi,
I'm using an AEON LED Bulb ZW098. The actual XML file on pepper1 isn't complete.
Just now I managed to expand the XML file in order to support all parameters (32,34,35,36,37,38,80,200,252,255).
Parameters 37 is for the "Colorful configuration". Here is how I defined the parameter according to the Aeon Labs engineering sheet:

Code: Select all

        <configParam number="37" type="range" size="4" default="00000f00">
            <name>
                <lang xml:lang="de"></lang>
                <lang xml:lang="en">Colorful mode configuration.</lang>
            </name>
            <description>
                <lang xml:lang="de"></lang>
                <lang xml:lang="en">Colorful mode configuration (see manual).</lang>
            </description>
            <value from="00000000" to="ffffffff">
                <description>
                    <lang xml:lang="de"></lang>
                    <lang xml:lang="en">Colorful mode configuration.</lang>
                  </description>
            </value>
        </configParam>
It works, however I'd like to input the parameter value in hex format instead of dec. Is there a way to define the format?
flurin
Posts: 16
Joined: 27 Sep 2015 15:21

Re: Parameter Hex Input Format

Post by flurin »

Ok, this way works e.g. 0x01000006
Paramter37.jpg
Paramter37.jpg (23.73 KiB) Viewed 3282 times
However the default value was defined in hex but displayed in dec format.
Post Reply