Hi
I have this connection:
Orno WE517 for the above. Waveshare RS TO ETH converter and manual Modbus integration in the configuration.yaml file in homeasistant as below, unfortunately for several days now two of the same entities have been showing in the entity registry, e.g.
Active Energy L1 unavailable and comment (This entity is no longer provided by modbus. If the entity is no longer used, remove it in settings.)
Active Energy L1 undelivered and comment ( This entity (“sensor.active_energy_l1_2”) does not have a unique identifier, so its settings cannot be managed from the UI. More details can be found in [documentation](https://www.home-assistant. io/faq/unique_id) )
Below is my file, does anyone have an idea what is wrong, it seems to me that the change occurred in mid-September, after which hacks or homeasistant were updated
modbus:
- name: “WE517”
retries: 10
delay: 10
message_wait_milliseconds: 1000
timeout: 10
type: tcp
host: 192.168.0.230
port: 4197
sensors:- name: “Freq”
entity_id: sensor.freq
slave: 1
address: 20
data_type: float32
precision: 2
unit_of_measurement: HZ
- name: “Freq”
- name: "Voltage L1"
entity_id: sensor.voltage_l1
slave: 1
address: 14
data_type: float32
precision: 1
unit_of_measurement: V
- name: "Voltage L2"
entity_id: sensor.voltage_l2
slave: 1
address: 16
data_type: float32
precision: 1
unit_of_measurement: V
- name: "Voltage L3"
entity_id: sensor.voltage_l3
slave: 1
address: 18
data_type: float32
precision: 1
unit_of_measurement: V
- name: "Current L1"
entity_id: sensor.current_l1
slave: 1
address: 0x016
data_type: float32
precision: 1
unit_of_measurement: A
- name: "Current L2"
entity_id: sensor.current_l2
slave: 1
address: 24
data_type: float32
precision: 1
unit_of_measurement: A
- name: "Current L3"
entity_id: sensor.current_l3
slave: 1
address: 26
data_type: float32
precision: 1
unit_of_measurement: A
- name: "Active Power Total"
entity_id: sensor.active_power_total
slave: 1
address: 28
data_type: float32
precision: 2
unit_of_measurement: kW
- name: "Active Power L1"
entity_id: sensor.active_power_l1
slave: 1
address: 30
data_type: float32
precision: 2
unit_of_measurement: kW
- name: "Active Power L2"
entity_id: sensor.active_power_l2
slave: 1
address: 32
data_type: float32
precision: 2
unit_of_measurement: kW
- name: "Active Power L3"
entity_id: sensor.active_power_l3
slave: 1
address: 34
data_type: float32
precision: 2
unit_of_measurement: kW
- name: "Active Energy Total"
entity_id: sensor.active_energy_total
slave: 1
address: 256
data_type: float32
precision: 2
unit_of_measurement: kWh
state_class: total_increasing
- name: "Active Energy L1"
entity_id: sensor.active_energy_l1
slave: 1
address: 258
data_type: float32
precision: 2
unit_of_measurement: kWh
- name: "Active Energy L2"
entity_id: sensor.active_energy_l2
slave: 1
address: 260
data_type: float32
precision: 2
unit_of_measurement: kWh
- name: "Active Energy L3"
entity_id: sensor.active_energy_l3
slave: 1
address: 262
data_type: float32
precision: 2
unit_of_measurement: kWh