Anyone finding this I’ve found some more details by digging. Some hints below:
- Open the
homeassistant\data\.storage
folder in Visual Studio Code or similar - Search in files (Ctrl+Shift+F) for your entity name. Quickly finds all mentions of that entity
-
core.device_registry
contains the main device. For RFXtrx devices, thename
key will be the device id (friendly id format) andname_by_user
will be your device name - Search in files for the original id (example
AC 123d506:10
) where AC is the protocol - The search result in
core.config_entries
will contain the full id.- the full id will be the key to the map, ex
0b11003b0123d5060a010f60
. This is the one you want! - device_id will be something like [“11”, “0”, “123d506:10”]. My guess is that 11 is the protocol (11)
- the full id will be the key to the map, ex
I choose to add the entities one by on in the RFXtrx integration configure => “Choose event code to add” => Paste the full id from above. Then rename and your old automation etc should work.