Hello, i´m quite new in home assistant, coming from ioBroker.
I try to automate my Garage doors with template cover garage_door. I got it to work, but I still have a question. In ioBroker visualisation I took some icons for door → open, closed and opening/closing.
The icon_template in Home Assistant takes the icons from Material Design.
Is there any possibility that I can use my own icons instead of the mdi icons? Im the moment its looking like this:
icon_template: >
{% if states('binary_sensor.126_d1_eh_einzelgarage_sensor_oben') == "on" %}
mdi:garage-variant
{% elif states('binary_sensor.126_d1_eh_einzelgarage_sensor_unten') == "on" %}
mdi:garage-open-variant
{% else %}
mdi:garage-alert
{% endif %}
Thanks for your help.