iAnish / openhab

Automatically exported from code.google.com/p/openhab
GNU General Public License v3.0
0 stars 0 forks source link

The UI element type "number" does not update the value. #521

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
openhab version 1.5.0
binding z-wave
stick aeon-labs
dimmer fibaro FGD211

1)The UI element type "number" does not update the value. When you change the 
value of the dimmer slider in the UI element's value does not change. If you 
change the physical key value in the UI changes is normal.

file .items

Group   All
Group   Dimmers ""  <light>
Group   Room1   ""  <firstfloor>
Dimmer  Dimmer1 "Dimmer1"   <slider>    (Room1)     { zwave="3" }
Number  Dimmer1Value    "Dimmer1 [%d %%]" <light>   (Dimmers)   { zwave="3"}

file .sitemap

sitemap sitemap1 label="My Home"
{
    Frame label="Rooms" {
        Group item=Room1 label="Room1" 
    }
    Frame label="All values" {  
        Group item=Dimmers label="All dimmers" 

    }

}

2) When turning on or off dimmer, UI slider moves (item type dimmer), and the 
value does not change (item type number). If I understand correctly type 
"number" cannot convert the value to OFF and ON to a number. How to do it?

Original issue reported on code.google.com by i.prilad...@gmail.com on 24 Jul 2014 at 8:28

GoogleCodeExporter commented 9 years ago
3)If add element

            Setpoint item=Dimmer1Value minValue=0 maxValue=100 step=10

(Dimmer1Value item type number)to sitemap, then "No converter found for item = 
Dimmer1Value, node = 3 endpoint = 1, ignoring command"

4) If add element
            Setpoint item=Dimmer1 minValue=0 maxValue=100 step=10

(Dimmer1 item type dimmer)to sitemap, then value not display. Switching (-+) 
from WEB UI is normal. Switching - or + from Android UI not work.

Original comment by i.prilad...@gmail.com on 24 Jul 2014 at 9:05