Skip to content

ltvanderkrogt/RIVM-Stookalert

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

RIVM-Stookalert

RIVM Stookalert is completely generated by https://chat.openai.com/chat

URL RIVM api: https://www.rivm.nl/media/lml/stookalert/stookalert_20230218.json

This script is an Arduino sketch designed for an ESP8266 microcontroller board with a NeoPixel LED attached. It connects to a WiFi network and retrieves data from an API provided by the Dutch National Institute for Public Health and the Environment (RIVM) about the air quality in the Dutch province of Drenthe. If the air quality is good, the LED will light up green, and if it is bad, the LED will light up red.

The script begins by including the required libraries, which include the ESP8266 WiFi library, the ESP8266 HTTP client library, the WiFiUdp library, and the Adafruit NeoPixel library. It then defines some constants, including the WiFi network name and password, the NTP server to use for time synchronization, the GMT and daylight offsets, the RIVM API host and port number, and the pin number for the LED.

In the setup() function, the script initializes the serial connection, connects to the WiFi network, and synchronizes the time with the NTP server. It then initializes the NeoPixel strip.

In the loop() function, the script retrieves the current time and formats it as a string, which is printed to the serial console for debugging purposes. It then constructs the URL for the RIVM API call, based on the current date. The script uses the WiFiClientSecure class to create a secure connection to the RIVM API server, using the HTTPS protocol. It then makes an HTTP GET request to the server, which retrieves the air quality data for Drenthe. If the API returns a status code of 200 (indicating success), the script extracts the Drenthe air quality value from the response payload, which is a JSON-formatted string. If the air quality is good (with a value of 0), the LED will light up green, and if it is bad (with a value of 1 or greater), the LED will light up red. Finally, the script waits for one minute before repeating the loop.

Releases

No releases published

Packages

No packages published

Languages