2.1 KiB
title, description, ha_category, ha_iot_class, ha_release
title | description | ha_category | ha_iot_class | ha_release | |
---|---|---|---|---|---|
Islamic Prayer Times | Instructions on how to integrate the Islamic Prayer Times sensor within Home Assistant. |
|
Cloud Polling | 0.85 |
The Islamic Prayer Times (islamic_prayer_times
) sensor platform displays the various prayer times for Muslims as sensors.
This platform calculates prayer times using the following calculation methods:
- University of Islamic Sciences in Karachi
- Islamic Society of North America
- Muslim World League
- Umm Al-Qura University in Makkah
Configuration
To enable this sensor in your installation, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
sensor:
- platform: islamic_prayer_times
{% configuration %}
sensors:
required: false
default: "['fajr', 'dhuhr', 'asr', 'maghrib', 'isha']"
type: list
description: List of available sensors.
keys:
fajr:
description: Show the fajr prayer time for today.
sunrise:
description: Show the sunrise for today which is the end of fajr prayer. This is a calculated field and may not necessarily be the same as the astronomical sunrise.
dhuhr:
description: Show the dhuhr prayer time for today.
asr:
description: Show the asr prayer time for today.
maghrib:
description: Show the maghrib prayer time for today.
isha:
description: Show the isha prayer time for today.
midnight:
description: Show the midnight for today which is the end of isha prayer. This is a calculated field and is not the same as 12AM.
calculation_method:
required: false
default: 'isna'
type: string
description: "The calculation method used for prayer times. Must be one of: karachi
, isna
, mwl
, makkah
."
{% endconfiguration %}
# Example configuration.yaml entry for all available sensors using a non-default calculation method
sensor:
- platform: islamic_prayer_times
calculation_method: makkah
sensors:
- fajr
- sunrise
- dhuhr
- asr
- maghrib
- isha
- midnight