The notify.mysensors service will be removed

I received this notification Currently all is working very well. What do I need to change?

I use notify.mysensors to send a message to an arduino device:

action:
  - service: notify.mysensors
    data:
      target: Zone
      message: "0"

In the mysensors_.json (viewed in StudioCodeServer) is the description

    "0": {
        "sensor_id": 0,
        "children": {
            "1": {
                "id": 1,
                "type": 36,
                "description": "Zone",
                "values": {
                    "47": "0"
                }
            },
            "2": {
                "id": 2,
                "type": 36,
                "description": "Runtime",
                "values": {
                    "47": "      0.0"
                }
            },
            "3": {
                "id": 3,
                "type": 3,
                "description": "Start",
                "values": {
                    "2": "0"
                }
            },
            "4": {
                "id": 4,
                "type": 13,
                "description": "SIMtotalkWh",
                "values": {
                    "18": ""
                }
            },
            "5": {
                "id": 5,
                "type": 13,
                "description": "SIMpower",
                "values": {
                    "17": ""
                }
            },
            "6": {
                "id": 6,
                "type": 6,
                "description": "SIMtemp",
                "values": {
                    "0": ""
                }
            }
        },
        "type": 18,
        "sketch_name": "mysgwWithLocals",
        "sketch_version": "     5.05",
        "battery_level": 0,
        "protocol_version": "2.4.0-alpha",
        "heartbeat": 0
    }

The docs tell you.

Yes, indeed, the link tells me that my sensors.notify is deprecated. My Mysensors code is written to that documentation.

It is the home assistant code with which I need help.

I changed notified.mysensers to text.setvalue and the target is now text.zone. this did not work.

Any suggestions?

OSD