To create an Arduino script that uses the Open-Meteo API to get the current weather, you’ll primarily need an Arduino board with internet connectivity, such as the ESP8266 or ESP32. Below is a simple example using the ESP8266. Ensure you have the necessary libraries installed, such as `ESP8266WiFi` and `WiFiClient`.
### Arduino Script
```cpp
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
const char* ssid = "your_SSID"; // Replace


