I don’t follow any rule bro. We should train vehicles according to ourselves not vice versa. In worst case scenario the battery will get damaged. If it happens within 3 or 5 years, you’ll get it replaced.
If not, after 5 years the battery will cost approx lets say 30k or 35k. Which honestly isn’t much. That too only if the battery fails truly.
Like if my Ather battery gives 60 percent efficiency after 5 years, i might choose to continue with it coz 60 kms is good too.
So just relax and enjoy for the next 5 years without worrying.
I write below automation and it is working for me
For Ather 450x
alias: Stop Ather Charging at 80%
trigger:
- platform: numeric_state
entity_id: sensor.ather450s_energy_power
above: 401
- platform: state
entity_id: input_boolean.full_charge_mode
from: 'on'
to: 'off'
condition:
- condition: state
entity_id: input_boolean.full_charge_mode
state: 'off'
- condition: numeric_state
entity_id: sensor.ather450s_energy_power
above: 401
action:
- service: switch.turn_off
target:
entity_id: switch.ather450s
mode: single
And for 450X
alias: Stop Ather Charging at 80%
trigger:
- platform: numeric_state
entity_id: sensor.ather450x_energy_power
above: 735
- platform: state
entity_id: input_boolean.full_charge_mode
from: 'on'
to: 'off'
condition:
- condition: state
entity_id: input_boolean.full_charge_mode
state: 'off'
- condition: numeric_state
entity_id: sensor.ather450x_energy_power
above: 735
action:
- service: switch.turn_off
target:
entity_id: switch.ather450x
mode: single
These automations stop the charging of your Ather 450S and 450X at 80% when their respective power thresholds are exceeded (401 watts for the 450S and 735 watts for the 450X). However, if the full charge mode (controlled by the button in Home assistance) is activated, charging continues until 100%.
I own an Ather Apex. Another option to Hardstop Charging at 80% should be added. I don’t need 100% charge based on my daily usage. If there’s a option to limit charging at 80% ,I can increase the life of battery.
Currently I do this using automation features of Smart switches.