Small WiFi Clock based on ESP32-S3 Matrix board. Shows Time, Date, Local Weather and News.
Qty | Product | Description |
---|---|---|
1 | ESP32-S3 Matrix | Main board |
You can run commands on the device using the Arduino IDE Serial Monitor.
- Use help command to get description of all commands.
- Use get command to get all data in JSON format.
- Use reset command to reset all data to its dafault values.
- Enter the edited JSON string you have got using get command.
- See your Time Zone
- Validate your JSON String
- If you want to see News, you must get Newsapi.org API Key
The get command returns the following string in JSON format:
{"tz":"EST5EDT,M3.2.0,M11.1.0","matrix_pin":"14","color":"000000","stations":[{"ssid":"your_ssid1","psk":"your_password1"},{"ssid":"your_ssid2","psk":"your_password2"},{"ssid":"your_ssid3","psk":"your_password3"}],"news_api_key": "your_newsapi.org_api_key","newspaper":"fox-news","show_time":"true","show_date":"true","show_weather":"true","show_news":"true"}
Copy this string to Notepad end edit it:
- Set your Time Zone
- Set Matrix Pin (14 by dafault)
- Set Color (000000 by dafault). Use 6 hexadecimal digits 2 for Red value, 2 for Green value and 2 for Blue value. Use 000000 for default colors.
- Set few SSIDs and Passwords. (Not always 3, but up to 5. May be 1 or 2.)
- Set Newsapi.org API Key
- Set Newspaper name.
- Set true/false values for what to show: Time, Date, Local Weather, News
When You have done, just copy the edited string and paste it in Serial Monitor where you typed get command and press enter