Hello,
I create a entity via
mosquitto_pub -h "$addr" -p "$port" -u "$username" -P "$password" -t "homeassistant/switch/SW_test/config" -m "{"name": "test name", "object_id": "SW_test", "state_topic": "homeassistant/switch/SW_test/state", "unique_id": "some_SW_test", "command_topic": "homeassistant/switch/SW_test/state", "device": {"identifiers": ["Some device"], "name": "MyDevice", "sw_version": "1.0"}}"
Is it possible to change the name later? I thought of something similar to this
mosquitto_pub -h "$addr" -p "$port" -u "$username" -P "$password" -t "homeassistant/switch/SW_test/config" -m "{"name": "another name"}"
But it doesn’t work.