It seems to be correct that a binding jar dropped in addons does (secretly) load itself.
It seems to be correct that it is not visible in the UI as having been so loaded.
I’m running OH 2.5.10. All my things / items / rules / etc are defined in the conf folder (none in the UI). The only V1 binding I’m using is expire.
Today I’ve installed 3.0.0.M3 and copied the entire conf folder from OH2 to OH3. It seems to work. Now I have to test all the rules but initial impact is very positive.
Yes, that might be it, I forgot about that - the UI caches itself very aggressively especially if it’s in “progressive web app” mode (over HTTPS) to avoid re-downloading everything if you’re using it over the internet like on myopenhab.org. You can purge the cache in the About page. Thanks @buschif4!
i have an dimmer item with min val 1 and max val 254, in the gui the slider also changes to 254 as latest value, but the value will be send at the point 100, after that no value will send. maybe its good if there is an seperate option to set the value in % for the slider, that i can set it from 1-100 and behind that 100% is the value 254, or is this currently possible?
//
// House model
//
Group Home "Casa Aveiro"
Group gIN "Interior" <building> (Home) ["Indoor"]
Group gCasa "Habitação" (gIN) ["Building"]
Group GF "R/C" <groundfloor> (gCasa) ["GroundFloor"]
Group GF_Kitchen "Cozinha" <kitchen> (GF) ["Kitchen"]
Group GF_LivingDining "Sala" <sofa> (GF) ["LivingRoom"]
Group GF_Office "Escritório" <office> (GF) ["Office"]
Group FF "Primeiro andar" <firstfloor> (gCasa) ["FirstFloor"]
Group FF_MasterBedroom "Suite" <bedroom_red> (FF) ["Bedroom"]
Group FF_Bathroom "Casa de banho social" <bath> (FF) ["Bathroom"]
Group AT "Sótão" <attic> (gCasa)
Group AT_Attic "Sótão" <attic> (AT)
Group AN "Anexo" <garage_detached> (gIN)
Group AN_Garage "Garagem" <garage> (AN)
Group AN_Cellar "Cave" <cellar> (AN)
Group OU "Exterior" <garden> (Home) ["Outdoor"]
Group OU_Terrace "Quintal" <terrace> (OU) ["Terrace"]
Group OU_Outside "Jardim" <garden> (OU) ["Outside"]
Hi Bruce,
I plan to do exactly the same …keep OH2 and migrate stuff over to OH3. Current OH2 is also a docker in the ubuntu VM, and plan to create a OH3 docker in the same VM too.
If you can, do share how you do this.
Dimmer Items only accept values between 0-100, but if the device takes 1-254 it’s up to the binding to make that conversion. If it doesn’t do that correctly you should file an issue so it can be corrected.
Edit: noticed it was an mqtt-channel, so it’s not a binding issue. Change it to a Number channel and Item.
The MQTT binding can do the scaling for you, just set the min and max values for the channel and link it to a dimmer. 0-100 on the dimmer is scaled to 1-254 on the channel.
@Dibbler42 I think it works with either dimmer or number for item or channel. As long as you define min/max on the channel and (if the item is a number) you put the min/max in the state description (OH3 you can do this in metadata, but it sure about OH2) it works.