By default Home Assistant does not provide any card for Meteoalarm integration. This simple card shows you the current active meteorological warnings.
We recommend installing meteoalarm card via Home Assistant Community Store
Just search for Meteoalarm Card
in Frontend
tab.
- Download
meteoalarm-card.js
file from the latest release. - Put
meteoalarm-card.js
file into yourconfig/www
folder. You can use File Editor add-on. - Add reference to
meteoalarm-card.js
in Lovelace. There's two way to do that:- Using UI: Navigate to Lovelace Resources → Click Plus button → Set URL as
/local/meteoalarm-card.js
→ Set Resource type asJavaScript Module
.
Note: If you do not see the Resources Tab, you will need to enable Advanced Mode in your User Profile - Using YAML: Add following code to
lovelace
section.resources: - url: /local/meteoalarm-card.js type: module
- Using UI: Navigate to Lovelace Resources → Click Plus button → Set URL as
- Add
custom:meteoalarm-card
to Lovelace UI as any other card.
After completing installation you can add this card like any other to your dashboard.
- Navigate to your dashboard → click 3 dots in the top left corner.
- Select Edit Dashboard
- Click + New Card button
- Select
Custom: Meteoalarm Card
- Select meteoalarm entity. If you don't see one make sure you have configured Meteoalarm integration
type: 'custom:meteoalarm-card'
entity: 'binary_sensor.meteoalarm'
This card supports translations. Please, help to add more translations and improve existing ones. Here's a list of supported languages:
- English (Default language)
- Deutsch (German)
- Eesti (Estonian)
- Français (French)
- Italiano (Italian)
- Nederlands (Dutch)
- Polski (Polish)
- Español (Spanish)
- Your language?
This card supports many other integrations.
- Core Meteoalarm - Home Assistant core integration based on ATOM Feed.
- Core Météo-France - Home Assistant core integration based on Météo France alert.
- xlcnd/meteoalarmeu - RRS Feed alternative for countries that does not use ATOM anymore Read more.
- New integration?
Currently the card will try to auto detect the "sourceType" of your entity but in case this doesn't work or you want to manually override this value just add "sourceType" key into your card configuration and choose one of these type. In case of problem check you use the right entity for each integration.
Integration | SourceType | Entity |
---|---|---|
Core Meteoalarm | meteoalarm | binary_sensor.meteoalarm |
Core Météo-France | meteofrance | sensor.XX_weather_alert |
xlcnd/meteoalarmeu | meteoalarmeu | binary_sensor.meteoalarmeu |
Like this for example
type: 'custom:meteoalarm-card'
entity: 'sensor.75_weather_alert'
sourceType: 'meteofrance'
Want to contribute to the project?
First of all, thanks! Check contributing guideline for more information.