[SOLVED] Problem Qubino dimmer,switch and thermostate

Hello

After testing the Qubino flush 2 relay, dimmer and thermostate 3 days i am despaired.

Qubino flush 2 relay - recognized but dont work
Qubino dimmer - works fine
Qubino thermostate - recognized but dont work

Ui7 firmware 1.7.850
Zwave repaire without resulat

Any tips to solve the problem?

Thanks

The problem will be UI7.

All functions work perfectly in UI5.

Do yourslef a favour and save a lot of hair pulling and downgrade to UI5.

That firmware I believe is only on the Vera edge. If that is the case here, I do not believe there is way to downgrade to ui5 on a Vera edge.

mmm, then his only option is to open a support ticket with MCV.

i am using ui7 with Firmware 1.7.850 and VeraEdge.

Is it normal that is under advenced in the field “Controlled via:” stands undefined and not ZWAVE?

See pictures

I doubt anyone can tell what’s normal with the combination you are using.

Edge has just been released and has 1000&1 bugs, coupled with UI7 that has it’s own problems.

The only way out for you is MCV Support.

Lodge a Support ticket with them ASAP, otherwise you could be waiting a very long time for a solution.

Hello

I’ve been trying for days to get a response from the support.

Until now, no sign of life.

I hope for help soon, otherwise, i’ll put the Edge in the corner and try it 6 months later again.

Some other threads have indicated users have been waiting weeks for a reply.

If you have a Vera lite or Vera 3, I’d be using it until MCV gets it’s act together.

Does Qubino have the ability to ship to Canada?

As far as I’m aware, they don’t have a product available for the North American market yet.

We are all waiting for the Gen5 Version, I’m not expecting it to be available until March 15.

try info@qubino.com, you never know, they might be able to direct you to someone who has?

After several times the Vera support have found this solution for the Qubino 2 Flush Switch that’s working for me:
Delete unter Device → Advance → Device params → Capabilities: the number 37

Statement from Vera Support:

It seems that your switch is using an older firmware version. On the newest models the switches are working properly with Vera.
The switch from our office has the p/n number: ZMNHBA2 H1S3P2
And yours: ZMNHBA2 H1S1P1

Vera Edge
Firmware: 1.7.850

This makes no sense. Capability 37 designates the COMMAND_CLASS_SWITCH_BINARY .

A dimmer should be Capability 38 which designates COMMAND_CLASS_SWITCH_MULTILEVEL

Edit: Added word. The solution doesn’t make sense to me.

Her is the answer from Vera Support:


Hello,

I was able to add the temperature sensor for the dimmer and for the switch using the Additional temperature device plugin.
Can you please check it ?
It seems that your switch is using an older firmware version. On the newest models the switches are working properly with Vera.
The switch from our office has the p/n number: ZMNHBA2 H1S3P2
And yours: ZMNHBA2 H1S1P1
If you have another model you can go to Advanced > Scroll down until you find capabilities and delete 37 from there.
211,156,0,4,17,7,L,R,B,RS,|37,38:3,39,49:3,50:3,112,114,115,133,134, (37 is after | )

Thank you!

^^^
That’s an interesting solution for the Temperature Plugin, I’ve just asked qubino similar and received a LUA snippet, good to know there is a plugin.

Where the confusion arises is that you posted about 3 devices:

Qubino flush 2 relay - recognized but dont work
Qubino dimmer - works fine
Qubino thermostate - recognized but dont work

The reply from Support isn’t as clear as it should be either.

Now I have to check the firmware version and through the capabilities in the devices I have.
Although the Temp Device I have running on UI5 is Ok, maybe it’s the firmware version?

Hi,
Please post the LUA for temperature to work with Qubino 2 relays

You can use the Additional temperature device Plugin rather than use LUA Code.

otherwise you can do the following.

You can achieve similar functionality as a trigger if you first make a scene that executes every X minutes/hours (depends on which way would suit your needs better) along with this code snippet that needs to be added to the Lua code section of the scene wizard (you need to change a few values in order to make it work on your end):

local temperature = luup.variable_get(“urn:upnp-org:serviceId:TemperatureSensor1”,“CurrentTemperature”, 3);
if tonumber(temperature) > 25 then
return true;
else
return false;
end

The number colored red needs to be changed to the Device # of the device whose temperature sensor you want to use (open the device settings and look for the value next to Device #).

The number colored green is the temperature value to be triggered for (similar to the value used in ?When ambient temperature goes over X degrees? triggers). Change this to suit the one you want along with the logical operator (>): it can have the values <, >, ==, >=, <= and ~=.

To iterate on how it works with the default setting above:
1.) The scene runs every X minutes/hours via a schedule.

2.) When the scene starts running the code above gets executed. It checks for the CurrentTemperature variable value on the device, that has the temperature probe connected, and checks whether it is greater than 25 degrees.

3.) If the temperature is greater than 25 degrees the snippet returns true, which then makes the scene execute the actions you set in it.

4.) If the temperature isn’t greater than 25 degrees then the snippet returns false, which then does NOT make the scene execute the actions set in it.

I used the Plug In, much simplier.

Just to add some info:
Both Qubino Flush1 & Flush2 work fine with my Vera3 UI5.
(They are H1S1P1)