Car Wash Binary Sensor

I don’t have any weather part in the configuration.yaml, but the value of the binary_sensor is unavailable?

it seems the car wash sensor doesn’t work, if the open weather mode is “hour” instead “daily”?

Please read the first paragraph: GitHub - Limych/ha-car_wash: Car Wash Binary Sensor for Home Assistant

Here you have another example using (the amazing !) Mushroom Chip Card template:

type: template
double_tap_action:
action: none
icon: mdi:car-wash
icon_color: |-
{% if is_state(‘binary_sensor.car_wash’, ‘off’) %}
red
{% elif is_state(‘binary_sensor.car_wash’, ‘on’) %}
green
{% endif %}
tap_action:
action: none
hold_action:
action: none
entity: binary_sensor.car_wash
content: |-
{% if is_state(‘binary_sensor.car_wash’, ‘on’) %}
Worth Wash
{% elif is_state(‘binary_sensor.car_wash’, ‘off’) %}
Do NOT wash
{% endif %}

should I put car_wash: into mineconfiguration.yaml?

Have you read and followed the instructions?