diff --git a/source/_integrations/luftdaten.markdown b/source/_integrations/luftdaten.markdown index 9bb5bba4f01..b0fba15dc0a 100644 --- a/source/_integrations/luftdaten.markdown +++ b/source/_integrations/luftdaten.markdown @@ -17,88 +17,9 @@ ha_platforms: The `luftdaten` integration will query the open data API of [luftdaten.info](https://luftdaten.info/) to monitor air quality and other weather data from a specific (self build) sensor station. -## Setup +## Prerequisites - To get the ID of a particle sensor you need to select it on the [Feinstaub map](https://deutschland.maps.luftdaten.info/) and find it in the sidebar (Column "Sensor ID"). - To get the ID of a temperature/humidity sensor you need to find it on the map hosted on [Madavi](https://www.madavi.de/sensor/feinstaub-map-dht/). {% include integrations/config_flow.md %} - -## Manual Configuration - -To enable this sensor, add the following lines to your `configuration.yaml` file: - -```yaml -# Example configuration.yaml entry -luftdaten: -``` - -{% configuration %} -sensor_id: - description: The ID of the sensor. - required: true - type: string -show_on_map: - description: Option to show the position of the sensor on the map. - required: false - default: false - type: boolean -scan_interval: - description: the frequency (in seconds) between data updates. - required: false - type: integer - default: 600 -sensors: - description: The sensor-related configuration options. - required: false - type: map - keys: - monitored_conditions: - description: A list of conditions you want to monitor. - required: true - type: list - keys: - P1: - description: Show the particle sensors (particles 10 microns and below). - P2: - description: Show the particle sensors (particles 2.5 microns and below). - temperature: - description: Display the temperature from the sensor. - humidity: - description: Display the humidity from the sensor. - pressure: - description: Display the pressure from the sensor. -{% endconfiguration %} - -