Nick Koumaris
Published © CC BY-NC-SA

ESP32 E-Paper Thermometer

We are going to use this small e-paper display with the ESP32 board and build a simple thermometer!

BeginnerFull instructions provided1 hour6,340
ESP32 E-Paper Thermometer

Things used in this project

Hardware components

ESP32S
Espressif ESP32S
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Code

Code snippet #3

Plain text
<p>void loop() {<br>  
  sensors.requestTemperatures();
  tempC = sensors.getTempCByIndex(0);
  
  showPartialUpdate(tempC);
  printTemperatureToSerial();
  
  delay(5000);
}</p>

Github

https://github.com/ZinggJM/GxEPD

Github

https://github.com/milesburton/Arduino-Temperature-Control-Library

Credits

Nick Koumaris

Nick Koumaris

13 projects • 303 followers
My name is Nick Koumaris and I am a software engineer from Sparta, Greece. I love building projects and share them with the world!

Comments