Skip to content

An ESP32 and 2.9", 4.2" or 7.5" ePaper Display reads Weather Underground data via their API and then displays the weather

License

Notifications You must be signed in to change notification settings

G6EJD/ESP32-e-Paper-Weather-Display

Repository files navigation

ESP32-e-Paper-Weather-Display

NOTE:

April 2024

From June 2024 you may have to pay for API (Wx Data) access. You will need to add a payment method to your account, so that OWM can charge you should you exceed 1000 calls/day. Also the API call in the source code may need to be changed from /2.5/ to /3.0/ as yet details are unknown, my best guess is: http:https://api.openweathermap.org/data/2.5/weather?q=Melksham,UK&APPID=your_OWM_API_key&mode=json&units=metric&cnt=1 Becomes: http:https://api.openweathermap.org/data/**3.0**/weather?q=Melksham,UK&APPID=your_OWM_API_key&mode=json&units=metric&cnt=1 #############

API

April 2024

OpenWeatherMap have depreciated City names and now calls to their API need to includeLatitude and Longitude data. The examples have been updated to include LAT and LON variables in the credentials file and the associate API Call in Common.h has been modified to use the new format. This is the new format: https://api.openweathermap.org/data/2.5/weather?lat={lat}&lon={lon}&appid={API key}

ALSO NOTE: Most of the API 2.5 calls will still function, only those to the ONECALL variant will fail from June 2024 #############

FONTS

April 2024

If you wish to use extended font characters for language accents, then simply change all instances of a Font selection in the source code from: u8g2_font_helvB08_tf to: u8g2_font_helvB08_te #############

An ESP32 and an ePaper Display reads Open Weather Map and displays the weather

For standalone use, download the ZIP file to your desktop.

Go to Sketch > Include Library... > Add .ZIP Library... Then, choose the ZIP file.

After inclusion, Go to File, Examples and scroll down to 'ESP32-e-paperWeather-display' and choose your version/screen size. Make sure to come back to this dialog from time to time to keep each library up to date. Also make sure that you only have one version of each of the libraries installed.

Also see: https://www.arduino.cc/en/Guide/Libraries#toc4

Download the software to your Arduino's library directory.

  1. From the examples, choose depending on your module either

    • Waveshare_1_54
    • Waveshare_2_13
    • Waveshare_2_7
    • Waveshare_2_9
    • Waveshare_3_7
    • Waveshare_4_2
    • Waveshare_7_5
    • Waveshare_7_5_T7 (newer 800x480 version of the older 640x384)

    Code requires GxEPD2 library

  2. Obtain your OWM API key - it's free

  3. Edit the owm_credentials.h file in the IDE (TAB at top of IDE) and change your Language, Country, choose your units Metric or Imperial and be sure to find a valid weather station location on OpenWeatherMap, if your display has all blank values your location does not exist!

  4. If your are using the older style Waveshare HAT then you need to use:

**display.init(); //for older Waveshare HAT's

In the InitialiseDisplay() function, comment out the variant as required

  1. Save your files.

NOTE: See schematic for the wiring diagram, all displays are wired the same, so wire a 7.5" the same as a 4.2", 2.9" or 1.54" display! Both 2.13" TTGO T5 and 2.7" T5S boards come pre-wired. The 3.7" FireBeetle example contains wiring details.

The Battery monitor assumes the use of a Lolin D32 board which uses GPIO-35 as an ADC input, also it has an on-board 100K+100K voltage divider directly connected to the Battery terminals. On other boards, you will need to change the analogRead(35) statement to your board e.g. (39) and attach a voltage divider to the battery terminals. The TTGO T5 and T5S boards already contain the resistor divider on the correct pin. The FireBeetle has a battery monitor on GPIO-36.

Compile and upload the code - Enjoy!

7.5" 800x480 E-Paper Layout

alt text width="600"

7.5" 640x384 E-Paper Layout

alt text width="600"

4.2" 400x300 E-Paper Layout

alt_text, width="400"

3.7" 480x280 E-Paper Layout

alt_text, width="400"

2.7" 264x176 E-Paper Layout

alt_text, width="400"

2.13" 250x122 E-Paper Layout

alt_text, width="200"

1.54" 200x200 E-Paper Layout

alt_text, width="200"

**** NOTE change needed for latest Waveshare HAT versions ****

Ensure you have the latest GxEPD2 library

See here: https://github.com/ZinggJM/GxEPD2/releases/

Modify this line in the code:

display.init(115200, true, 2); // init(uint32_t serial_diag_bitrate, bool initial, uint16_t reset_duration, bool pulldown_rst_mode)

Wiring Schematic for ALL Waveshare E-Paper Displays alt_text, width="300"

About

An ESP32 and 2.9", 4.2" or 7.5" ePaper Display reads Weather Underground data via their API and then displays the weather

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages