KNX Integration // Type Number // step value

Hello everyone,

according to the KNX integration documentation, it should be possible to define a step value for the type number.

When I try this, the code shows “Proberty step is not allowed”.

In my case, I would like to adjust the temperature in 0.5 degree steps.
How can i implement that?

Many thanks for your help.

Regards.
Flo

Hi :wave:!
Can you post the exact yaml which raised that error (in code tags ```)?
And maybe the exact error message?

Cant help you with KNX … but what would work is a input_number and a automation which updates the KNX element if the input_number changes.

Hi,

thank you for your quick reply.
Here is the code:

number: 
 -name: "SOLL Temp Büro"
      address: "1/2/1"
      respond_to_read: true
      type: temperature
      min: 18
      max: 24
      step: 0.5 *Property Step is not allowed.*
      mode: slider

Thanks in advance for your help.

Regards.
Flo

Ah, I see. This error is emitted from the VSCode plugin. Unfortunately this is not always 100% accurate in validating input - and in this case it seems the step key was just forgotten :grimacing:
Nevertheless, just save that config and run HAs internal config validator:
Developer Tools → YAML → Check Configuration
It will work just fine.

OMG, it worked.
Thanks a lot for your help and providing a solution.

Regards.
Florian

1 Like