Shelly US Wall Dimmer - How to control in Home Assistant?

I just received the new Shelly US Wall Dimmer product. I am very experienced with many
shelly products in Home Assistant. I have configured many via both the shelly Integration and via MQTT with mostly success all the time.

This new US Wall Dimmer is different. The Shelly Integration when connected provides no on/off + brightness control entity.

I then tried an MQTT Light config in my mqtt.yaml file. No luck here either. I am able to see the shelly sending MQTT status updates, but I can not get the manuaL MQTT entity to pick up the status. I also can not seem to reverse engineer an MQTT command topic for it. I am perfectly familiar on the Shelly D2 and have them working, so I do know my MQTT.

Help ! How to make a new Shelly US Wall dimmer have controls with Home assistant ?

Brendan

Any luck? I’m in the same boat, except I’m new to both HA and Shelly. I was able to go into the shelly device itself after noodling around got a script added to it.

Shelly.addStatusHandler(    
    function (event, ud) {
      print(JSON.stringify(event.delta))
      if(event.delta.output) {
        print("Switch on: ",JSON.stringify(event.delta.output), " Brightness: ", event.delta.brightness);
      }
    },
    null
)

From HA though after I do the integration it basically only allows if the reboot button is pressed so I think something’s wrong with the configuration in HA. Any ideas where that’s configured and then I’ll look there next.