Schneider Electric Exxact dimmer : return to OFF automacally

I am using mqtt2zigbee.
I have problem with Schneider dimmer.
When ever I press on/off switch it return automatically to OFF state after sub second.
If I press and turn at the same time Exxact turns to ON, but dimmer goes to 1 automatically.
I am fairly sure it’s not about configuration configuration:
Things:
Thing topic MovieTheatherDimmer_01 “MovieTheatherDimmer_01”
{
Channels:
Type string : switch “Power Switch” [
stateTopic = “zigbee2mqtt/MovieTheatherDimmer_01/state”, postCommand=true,
commandTopic = “zigbee2mqtt/MovieTheatherDimmer_01/set”, on=“ON”, off=“OFF”
]

    Type number : dimmer "Dimmer" [
        stateTopic = "zigbee2mqtt/MovieTheatherDimmer_01/brightness",postCommand=true,
        commandTopic = "zigbee2mqtt/MovieTheatherDimmer_01/set/brightness", 
        min=0,
        max=254, 
        step=1]
                    
    Type number : linkquality "linkquality" [
        stateTopic = "zigbee2mqtt/MovieTheatherDimmer_01/linkquality" ]

Items:
String sMovieTheatherDimmer_01 “Power Switch [%s]” { channel=“mqtt:topic:MQTTBroker_MovieTheather:MovieTheatherDimmer_01:switch”}

Number dMovieTheatherDimmer_01 “Dimmer [%d]” { channel=“mqtt:topic:MQTTBroker_MovieTheather:MovieTheatherDimmer_01:dimmer”}

Number lMovieTheatherDimmer_01 “Link Quality [%d]” { channel=“mqtt:topic:MQTTBroker_MovieTheather:MovieTheatherDimmer_01:linkquality”}

Any idea how to get this work?

This is rarely wanted, except for use with controls with no actions e.g. a keypad.

Yes, I have tired with postCommand=true and without, same result - unfornately.

It must be either Schneider exxact or configuration.yalm topic. I try to find option to avoid switching back. zigbee2mqtt log show message e.g. brighness from 103 to 1. So it is before things and items…

Why? It’s not wanted, you risk creating a feedback loop. You won’t fix this with random settings.
Note that if you’ve been editing Things, not all bindings are good at immediately applying some or all new settings.
Get it the best you can, then try a binding or system restart to be sure.

It’d be helpful to give more context; what part of a sequence is that and message from whom?

Aug 22 21:50:26 openhab npm[15983]: Zigbee2MQTT:info 2021-08-22 21:50:26: MQTT publish: topic ‘zigbee2mqtt/MovieTheatherDimmer_02/state’, payload ‘ON’
Aug 22 21:50:26 openhab npm[15983]: Zigbee2MQTT:info 2021-08-22 21:50:26: MQTT publish: topic ‘zigbee2mqtt/MovieTheatherDimmer_02/brightness’, payload ‘137’
Aug 22 21:50:26 openhab npm[15983]: Zigbee2MQTT:info 2021-08-22 21:50:26: MQTT publish: topic ‘zigbee2mqtt/MovieTheatherDimmer_02/ballast_status_non_operational’, payload ‘false’
Aug 22 21:50:26 openhab npm[15983]: Zigbee2MQTT:info 2021-08-22 21:50:26: MQTT publish: topic ‘zigbee2mqtt/MovieTheatherDimmer_02/ballast_status_lamp_failure’, payload ‘false’
Aug 22 21:50:26 openhab npm[15983]: Zigbee2MQTT:info 2021-08-22 21:50:26: MQTT publish: topic ‘zigbee2mqtt/MovieTheatherDimmer_02/linkquality’, payload ‘89’
Aug 22 21:50:27 openhab npm[15983]: Zigbee2MQTT:debug 2021-08-22 21:50:27: Received Zigbee message from ‘MovieTheatherDimmer_02’, type ‘attributeReport’, cluster ‘genLevelCtrl’, data ‘{“currentLevel”:1}’ from endpoint 3 with groupID 0
Aug 22 21:50:27 openhab npm[15983]: Zigbee2MQTT:info 2021-08-22 21:50:27: MQTT publish: topic ‘zigbee2mqtt/MovieTheatherDimmer_02/state’, payload ‘ON’
Aug 22 21:50:27 openhab npm[15983]: Zigbee2MQTT:info 2021-08-22 21:50:27: MQTT publish: topic ‘zigbee2mqtt/MovieTheatherDimmer_02/brightness’, payload ‘1’

Aug 22 21:50:27 openhab npm[15983]: Zigbee2MQTT:info 2021-08-22 21:50:27: MQTT publish: topic ‘zigbee2mqtt/MovieTheatherDimmer_02/brightness’, payload ‘1’
→ This comes automatically from Scneider dimmer

This sequence seems to work as configured.
The dimmer publishes state “1”
Your openHAB channel will receive that, and convert it into a command to the Item as you instructed.
Then the channel will receive that Item command and transmit a /set MQTT instruction message to the dimmer.

This is what I meant about feedback.

Problem is that dimmer allways return state “1” even I try to adjust birghtness. So adjusted brightness did not stay…