Sending percentage value to KNX

Hello everyone.

I despair of sending an percentage Number to knx. Working with temperatures works - % ist not.

I set up in knx.things:

Type number-control		:	knxLuftfeuchteBad [ ga="9.007:3/1/4" ]

and a rule wich triggers sending to the knx bus:

rule "Luftfeuchte Bad für KNX setzen"
when
     Item tempsensor1humidity changed
then

     // Senden an KNX  
    sendCommand(knxLuftfeuchteBad, (tempsensor1humidity.state as Number).floatValue)
end 

I also tried to set a " + " %“” to the float value, to send the %-sign too. (doesnt work)
I also tried to convert it to a string and replace “.” by “,” (also doesnt work).

In knx the groupadress is also configured as DTP 9.007.
everything works on OH - but in KNX the values doesn’t show up.

Proposals?

Greetings.

Hi,

had similar issues. Here my working example, maybe you can adopt to your situation…:
Item (Dimmer is important, when I remember correctly):

Dimmer           KNX_GT1_Volume     "Volume"    {channel="knx:device:bridge:GT1:volume"}

Thing Channel (also ‘position’ is important when I’m not mistaken):

Type dimmer   : volume              "volume"            [ position="1/2/4" ]

Rulepart:

KNX_GT1_Volume.sendCommand(GF_Radio_Volume.state.toString)
1 Like

Note that this channel type does not transmit openHAB Item commands onto the KNX bus, by design.

1 Like

Thanks for your input. Does not solve the Problem immediately, but after putting a DTP on it, it worked.

Type dimmer		:	knxLuftfeuchteBad [ position="9.007:3/1/4" ]

This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.