Oomi Mote [wallmote]

For Z-Wave related questions in Domoticz

Moderator: leecollings

Post Reply
User avatar
EdddieN
Posts: 510
Joined: Wednesday 16 November 2016 11:31
Target OS: Raspberry Pi / ODroid
Domoticz version: 4.9700
Location: Scotland
Contact:

Oomi Mote [wallmote]

Post by EdddieN »

Hello,

I'm best to create a new thread for this remote, it is basically like the Aeon Wallmote, however something seems different on the configuration. I have looked at the one from Aeon:

Code: Select all

<Product type="0002" id="0082" name="ZW130 WallMote Quad" config="aeotec/zw130.xml"/>
and copied onto the Oomi folder, however I do not seem to get it to work.

Does any one knows how to create the config file from these parameters:
http://manuals-backend.z-wave.info/make ... 0-17045535
As per this, I should be able to do it if I understand it first :D https://github.com/OpenZWave/open-zwave ... ng-Devices

How do I go from the pages above to create a file like this?

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<!--
Aeotec ZW130 WallMote Quad, base on Engineering Spec 9/27/2016
-->
<Product xmlns='http://code.google.com/p/open-zwave/'>
    <!-- COMMAND_CLASS_BASIC -->
    <CommandClass id="32" getsupported="false"/>
    <!-- COMMAND_CLASS_SWITCH_BINARY -->
    <CommandClass id="37" getsupported="false"/>
    <!-- COMMAND_CLASS_SWITCH_MULTILEVEL -->
    <CommandClass id="38" getsupported="false"/>
    <!-- Configuration Parameters -->
    <CommandClass id="112">
        <Value type="list" genre="config" instance="1" index="1" label="Touch sound" min="0" max="1" value="1" size="1">
            <Help>This will enable or disable the sound effects when you press or touch  the sensing area</Help>
            <Item label="Disable" value="0"/>
            <Item label="Enable" value="1"/>
        </Value>
        <Value type="list" genre="config" instance="1" index="2" label="Touch vibration" min="0" max="1" value="1" size="1">
            <Help>This will enable or disable the vibration effects when you press or  touch the sensing area</Help>
            <Item label="Disable" value="0"/>
            <Item label="Enable" value="1"/>
        </Value>
        <Value type="list" genre="config" instance="1" index="3" label="Button slide function" min="0" max="1" value="1" size="1">
            <Help>This will enable or disable control by sliding the button area</Help>
            <Item label="Disable" value="0"/>
            <Item label="Enable" value="1"/>
        </Value>
        <Value type="list" genre="config" instance="1" index="4" label="Report type" min="0" max="1" value="1" size="1">
            <Help>To configure which report will be sent when pressing the buttons</Help>
            <Item label="Send nothing" value="0"/>
            <Item label="Send Central Scene Command Notification" value="1"/>
            <Item label="Send Central Scene Command Notification and Configuration report" value="3"/>
        </Value>
        <Value type="int" index="5" genre="config" label="Color when button is pressed" units="" value="65280" >
            <Help>
                To configure which color will be displayed when the button is pressed.
                Value 1: (msb) Red.
                Value 2: Green.
                Value 3: Blue.
                Value 4: Reserved
            </Help>
        </Value>
        <Value type="int" index="33" genre="config" label="Test the LED, buzzer and vibrator" units="" value="0" read_only="true">
            <Help>
                Get the LED Strip color value
                Value 1: (msb) Red.
                Value 2: Green.
                Value 3: Blue.
                Value 4: buzzer and vibrator. (1=ON, 0=OFF)
            </Help>
        </Value>
        <Value type="byte" index="39" genre="config" label="Set the low battery value" units="%" min="10" max="50" value="20">
            <Help>
                Set the low battery value.
                Range: 10% - 50%.</Help>
        </Value>
        <Value type="list" index="255" genre="config" label="Reset To Factory Defaults" size="4" value="1" write_only="true">
            <Help>Reset to factory defaults</Help>
            <Item label="Reset to factory default setting" value="0"/>
            <Item label="Normal" value="1"/>
            <Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
        </Value>
    </CommandClass>
    <!-- Association Groups -->
    <CommandClass id="133">
        <Associations num_groups="9">
            <Group index="1" max_associations="1" label="Lifeline"/>
            <Group index="2" max_associations="5" label="On/Off control via Button 1"/>
            <Group index="3" max_associations="5" label="Dimmer control via Button 1"/>
            <Group index="4" max_associations="5" label="On/Off control via Button 2"/>
            <Group index="5" max_associations="5" label="Dimmer control via Button 2"/>
            <Group index="6" max_associations="5" label="On/Off control via Button 3"/>
            <Group index="7" max_associations="5" label="Dimmer control via Button 3"/>
            <Group index="8" max_associations="5" label="On/Off control via Button 4"/>
            <Group index="9" max_associations="5" label="Dimmer control via Button 4"/>
        </Associations>
    </CommandClass>
    <!--<CommandClass id="142" ForceInstances="true"/>-->
</Product>
And this is the device in question:
https://www.amazon.co.uk/WALLMOTE-WIREL ... ords=domux
11101101 - www.machinon.com
jeroenb42
Posts: 12
Joined: Wednesday 09 May 2018 10:36
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Oomi Mote [wallmote]

Post by jeroenb42 »

That part I've managed to do. I did not even copy the file from the Aeotec directory. I just added a line.

login to your raspberry
cd ~/domoticz/Config
sudo vi manufacturer_specific.xml
search for 16a
This is the Fantem (Oomi) section
Add the following line (I added it at the bottom of the manufacturer section but don't think it matters)
<Product type="0002" id="0082" name="Fantem Oomi Mote" config="aeotec/zw130.xml"/>
save the file and restart domoticz
Next time you add the device (or even update it) it should work.
chang
Posts: 3
Joined: Saturday 27 January 2018 14:31
Target OS: Linux
Domoticz version:
Contact:

Re: Oomi Mote [wallmote]

Post by chang »

Thank you very much for this. Saved me tossing out the OOMI Mote. It works now. :-)
jeroenb42 wrote: Thursday 01 October 2020 21:39 That part I've managed to do. I did not even copy the file from the Aeotec directory. I just added a line.

login to your raspberry
cd ~/domoticz/Config
sudo vi manufacturer_specific.xml
search for 16a
This is the Fantem (Oomi) section
Add the following line (I added it at the bottom of the manufacturer section but don't think it matters)
<Product type="0002" id="0082" name="Fantem Oomi Mote" config="aeotec/zw130.xml"/>
save the file and restart domoticz
Next time you add the device (or even update it) it should work.
Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest