You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the work . It did install and work fine for me . Congratulation .
But ya ... Had to remove it and return my home assistant to safe backup .
The reason is seem to be a conflict with modbus sensors. Strange as I dont
see the relation . But kwh stop registering in homeassistant while all other data remain accessible.
I run HA core under ubuntu 22.04 on a old desktop .
The files are installed and working properly in custom_components/alexa_media/
I validated that const.py does show version = "4.6.2"
I got everything working including credential and was able to send notification test to my alexa eco dot.
The logs does not reveals anything suspect except the warning [homeassistant.loader] We found a custom integration alexa_media which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
Here is configuration.yaml for these sensors as you can see nothing special to them .
No reason that the kwh ONLY does not appears after install of latest version of alexa_media_player.
If there is anything I can do to help in regard to this conflict between app let m know. I understand that not many of your user work with modbus so I understand if you consider this application irrelevant to dig further. But would appreciate a return in any case.
Again many thanks to you .
#modbus meeters
modbus:
name: meter
type: serial
method: rtu
port: /dev/ttyUSB1
baudrate: 9600
stopbits: 1
bytesize: 8
parity: N
timeout: 1
sensors:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Thanks for the work . It did install and work fine for me . Congratulation .
But ya ... Had to remove it and return my home assistant to safe backup .
The reason is seem to be a conflict with modbus sensors. Strange as I dont
see the relation . But kwh stop registering in homeassistant while all other data remain accessible.
I run HA core under ubuntu 22.04 on a old desktop .
The files are installed and working properly in custom_components/alexa_media/
I validated that const.py does show version = "4.6.2"
I got everything working including credential and was able to send notification test to my alexa eco dot.
The logs does not reveals anything suspect except the warning [homeassistant.loader] We found a custom integration alexa_media which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
Here is configuration.yaml for these sensors as you can see nothing special to them .
No reason that the kwh ONLY does not appears after install of latest version of alexa_media_player.
If there is anything I can do to help in regard to this conflict between app let m know. I understand that not many of your user work with modbus so I understand if you consider this application irrelevant to dig further. But would appreciate a return in any case.
Again many thanks to you .
#modbus meeters
modbus:
type: serial
method: rtu
port: /dev/ttyUSB1
baudrate: 9600
stopbits: 1
bytesize: 8
parity: N
timeout: 1
sensors:
unique_id: 1-Solaire_Voltage
unit_of_measurement: V
slave: 1
address: 0
input_type: input
scale: 0.1
offset: 0
precision: 1
data_type: int16
device_class: voltage
unique_id: 1-Solaire Courent
unit_of_measurement: A
slave: 1
address: 1
count: 2
swap: word
input_type: input
scale: 0.001
offset: 0
precision: 2
data_type: int32
device_class: current
unique_id: 1-Solaire_Power
unit_of_measurement: W
slave: 1
address: 3
count: 2
swap: word
input_type: input
scale: 0.1
offset: 0
precision: 1
data_type: int32
device_class: power
unique_id: 1-Solaire_kWh
unit_of_measurement: kWh
slave: 1
address: 5
count: 2
swap: word
input_type: input
scale: 0.001
offset: 0
precision: 1
data_type: int32
device_class: energy
state_class: total_increasing
unique_id: 1-Solaire_Frequency
unit_of_measurement: Hz
slave: 1
address: 7
input_type: input
scale: 0.1
offset: 0
precision: 1
data_type: int16
device_class: frequency
unique_id: 1-Solaire_PowerFactor
unit_of_measurement: '%'
slave: 1
address: 8
input_type: input
scale: 1
offset: 0
precision: 0
data_type: int16
device_class: power_factor
Beta Was this translation helpful? Give feedback.
All reactions