squareline-esp32/07-Moon-Phase-Clock
2024-09-26 12:56:42 +03:00
..
Assets Initial commit 2024-09-23 01:24:21 +03:00
PIO Initial commit 2024-09-23 01:24:21 +03:00
README.md readme commit 2024-09-26 12:56:42 +03:00

Moon Phase Clock

Create a file named credential.h in the src/ folder with the following content:

// credential.h

#ifndef CREDENTIAL_H
#define CREDENTIAL_H

// WiFi credentials
const char* ssid = "YOUR_WIFI_SSID";      // Replace with your WiFi network name (SSID)
const char* password = "YOUR_WIFI_PASSWORD";  // Replace with your WiFi password

// visualcrossing.com API Key for the weather service
const char* apiKey = "YOUR_WEATHER_API_KEY";  // Replace with your visualcrossing API key for the weather service

#endif


alt text