README.md
A low-power weather display using a wifi-enabled ESP32 microcontroller and a 7.5" E-Paper display. Weather data is fetched from the OpenWeatherMap API, and an onboard sensor provides indoor temperature and humidity.
<p float="left"> </p>Ultra-low power consumption: ~14μA in sleep, ~83mA during refresh (~15s).
Long battery life: 6-12 months on a 5000mAh battery with 30-minute update frequency.
Customizable display: Supports multiple languages, units, time/date formats, AQI scales, personalization options, and much more.
Easy recharging: USB-C charging with battery monitoring.
The hourly outlook graph (bottom right) shows a line indicating temperature and shaded bars indicating probability of precipitation (or optionally volume of precipitation).
Here are two (slightly outdated) examples utilizing various configuration options:
<p float="left"> </p>Some links below are affiliate links. Using them helps support the project at no extra cost to you—thanks for your support!
| Component Type | Component | Notes | Link |
|---|---|---|---|
| ESP32 | FireBeetle 2 ESP32-E | Features low-power design, USB-C, and battery management. | Available here. |
| E-Paper Display | See Panel Support. | See Panel Support. | See Panel Support. |
| Adapter Board | DESPI-C02 | Waveshare HATs (rev 2.2/2.3) are not recommended. | Available here. |
| Sensor | BME280 | Temperature, humidity, and pressure. 3.3V/5V compatible. | Available from multiple vendors. |
| Battery | 3.7V LiPo w/ JST-PH2.0 connector | Any capacity (e.g., 5000mAh for 6+ months runtime) | Available from multiple vendors. |
| Enclosure | See Enclosure Options. | See Enclosure Options. | See Enclosure Options. |
Other items needed:
Waveshare and Good Display make equivalent panels. Either variant will work.
| Panel | Resolution | Colors | Notes |
|---|---|---|---|
| Waveshare 7.5in e-paper (v2) | 800x480px | Black/White | Available here. (recommended) |
| Good Display 7.5in e-paper (GDEY075T7) | 800x480px | Black/White | Temporarily Unavailable? (wrong product listed?) |
| Waveshare 7.5in e-Paper (B) | 800x480px | Red/Black/White | Available here. |
| Good Display 7.5in e-paper (GDEY075Z08) | 800x480px | Red/Black/White | Available here. |
| Waveshare 7.3in ACeP e-Paper (F) | 800x480px | 7-Color | Available here. |
| Good Display 7.3in e-paper (GDEY073D46) | 800x480px | 7-Color | Available here. |
| Waveshare 7.5in e-paper (v1) | 640x384px | Black/White | Limited support. Some information not displayed, see image. |
| Good Display 7.5in e-paper (GDEW075T8) | 640x384px | Black/White | Limited support. Some information not displayed, see image. |
This software has limited support for accent colors. E-paper panels with additional colors tend to have longer refresh times, which will reduce battery life.
You'll want a nice way to show off your project. Here are a few popular choices.
depth = 63mm
height = 49mm
width = 170.2mm (= width of the screen)
screen angle = 80deg
screen is 15mm from the front
Here is a list of community designs.
If you want to share your own 3D printable designs, your contributions are highly encouraged and welcome!
This project can be completed without any soldering, if you choose your component selection carefully.
The battery can be charged by plugging the FireBeetle ESP32 into the wall via the USB-C connector while the battery is plugged into the ESP32's JST connector.
Warning The polarity of JST-PH2.0 connectors is not standardized! You may need to swap the order of the wires in the connector.
NOTE: Waveshare now ships revision 2.3 of their e-paper HAT (no longer rev 2.2 ). Rev 2.3 has an additional PWR pin (not depicted in the wiring diagrams below); connect this pin to 3.3V.
IMPORTANT: The DESPI-C02 adapter has one physical switch that MUST be set correctly for the display to work.
IMPORTANT: The Waveshare E-Paper Driver HAT has two physical switches that MUST be set correctly for the display to work.
Display Config: Set switch to position B.
Interface Config: Set switch to position 0.
Cut the low power pad for even longer battery life.
From https://wiki.dfrobot.com/FireBeetle_Board_ESP32_E_SKU_DFR0654
Low Power Pad: This pad is specially designed for low power consumption. It is connected by default. You can cut off the thin wire in the middle with a knife to disconnect it. After disconnection, the static power consumption can be reduced by 500 μA. The power consumption can be reduced to 13 μA after controlling the maincontroller enter the sleep mode through the program. Note: when the pad is disconnected, you can only drive RGB LED light via the USB Power supply.
PlatformIO for VSCode is used for managing dependencies, code compilation, and uploading to ESP32.
Clone this repository or download and extract the .zip.
Install VSCode.
Follow these instructions to install the PlatformIO extension for VSCode: https://platformio.org/install/ide?install=vscode
Open the project in VSCode.
a. File > Open Folder...
b. Navigate to this project and select the folder called "platformio".
Configure Options.
Most configuration options are located in config.cpp, with a few in config.h.
Important settings to configure in config.cpp:
WiFi credentials (ssid, password).
Open Weather Map API key (it's free, see next section for important notes about obtaining an API key).
Latitude and longitude.
Time and date formats.
Sleep duration.
Important settings to configure in config.h:
Comments explain each option in detail.
Build and Upload Code.
a. Connect ESP32 to your computer via USB.
b. Click the upload arrow along the bottom of the VSCode window. (Should say "PlatformIO: Upload" if you hover over it.)
PlatformIO will automatically download the required third-party libraries, compile, and upload the code. :)
You will only see this if you have the PlatformIO extension installed.
If using a FireBeetle 2 ESP32-E and you receive the error Wrong boot mode detected (0x13)! The chip needs to be in download mode. unplug the power from the board, connect GPIO0 (labeled 0/D5) to GND, and power it back up to put the board in download mode.
If you are getting other errors during the upload process, you may need to install drivers to allow you to upload code to the ESP32.
Sign up here to get an API key; it's free. https://openweathermap.org/api
This project will make calls to 2 different APIs ("One Call" and "Air Pollution").
Here's how to subscribe and avoid any credit card changes:
This error screen appears once the battery voltage has fallen below LOW_BATTERY_VOLTAGE (default = 3.20v). The display will not refresh again until it detects battery voltage above LOW_BATTERY_VOLTAGE. When battery voltage is between LOW_BATTERY_VOLTAGE and VERY_LOW_BATTERY_VOLTAGE (default = 3.10v) the esp32 will deep-sleep for periods of LOW_BATTERY_SLEEP_INTERVAL (default = 30min) before checking battery voltage again. If the battery voltage falls between LOW_BATTERY_SLEEP_INTERVAL and CRIT_LOW_BATTERY_VOLTAGE (default = 3.00v), then the display will deep-sleep for periods VERY_LOW_BATTERY_SLEEP_INTERVAL (default = 120min). If battery voltage falls below CRIT_LOW_BATTERY_VOLTAGE, then the esp32 will enter hibernate mode and will require a manual push of the reset (RST) button to begin updating again.
<br clear="left"/>This error screen appears when the ESP32 fails to connect to WiFi. If the message reads "WiFi Connection Failed" this might indicate an incorrect password. If the message reads "SSID Not Available" this might indicate that you mistyped the SSID or that the esp32 is out of the range of the access point. The esp32 will retry once every SLEEP_DURATION (default = 30min).
<br clear="left"/>This error screen appears if an error (client or server) occurs when making an API request to OpenWeatherMap. The second line will give the error code followed by a descriptor phrase. Positive error codes correspond to HTTP response status codes, while error codes <= 0 indicate a client(esp32) error. The esp32 will retry once every SLEEP_DURATION (default = 30min).
In the example shown to the left, "401: Unauthorized" may be the result of an incorrect API key or that you are attempting to use the One Call v3 API without the proper account setup.
<br clear="left"/>This error screen appears when the esp32 fails to fetch the time from NTP_SERVER_1/NTP_SERVER_2. This error sometimes occurs immediately after uploading to the esp32; in this case, just hit the reset button or wait for SLEEP_DURATION (default = 30min) and the esp32 to automatically retry. If the error persists, try selecting closer/lower latency time servers or increasing NTP_TIMEOUT.
<br clear="left"/>esp32-weather-epd is licensed under the GNU General Public License v3.0 with tools, fonts, and icons whose licenses are as follows:
| Name | License | Description |
|---|---|---|
| Adafruit-GFX-Library: fontconvert | BSD License | CLI tool for preprocessing fonts to be used with the Adafruit_GFX Arduino library. |
| pollutant-concentration-to-aqi | GNU Lesser General Public License v2.1 | C library that converts pollutant concentrations to Air Quality Index(AQI). |
| GNU FreeFont | GNU General Public License v3.0 | Font Family |
| Lato | SIL OFL v1.1 | Font Family |
| Montserrat | SIL OFL v1.1 | Font Family |
| Open Sans | SIL OFL v1.1 | Font Family |
| Poppins | SIL OFL v1.1 | Font Family |
| Quicksand | SIL OFL v1.1 | Font Family |
| Raleway | SIL OFL v1.1 | Font Family |
| Roboto | Apache License v2.0 | Font Family |
| Roboto Mono | Apache License v2.0 | Font Family |
| Roboto Slab | Apache License v2.0 | Font Family |
| Ubuntu font | Ubuntu Font Licence v1.0 | Font Family |
| Weather Themed Icons | SIL OFL v1.1 | (wi-**.svg) Weather icon family by Lukas Bischoff/Erik Flowers. |
| Google Icons | Apache License v2.0 | (battery**.svg, visibility_icon.svg) Battery and visibility icons from Google Icons. |
| Biological Hazard Symbol | CC0 v1.0 | (biological_hazard_symbol.svg) Biohazard icon. |
| House Icon | MIT License | (house.svg) House icon. |
| Indoor Temerature/Humidity Icons | SIL OFL v1.1 | (house_**.svg) Indoor temerature/humidity icons. |
| Ionizing Radiation Symbol | CC0 v1.0 | (ionizing_radiation_symbol.svg) Ionizing radiation icons. |
| Phosphor Icons | MIT License | (wifi**.svg, warning_icon.svg, error_icon.svg) WiFi, Warning, and Error icons from Phosphor Icons. |
| Wind Direction Icon | CC BY v3.0 | (meteorological_wind_direction_**deg.svg) Meteorological wind direction icon from Online Web Fonts. |