Difference between revisions of "Tutorial Display"
Jump to navigation
Jump to search
(Created page with "= Connect to and Control the OLED Display on the ESP32 = In this part of the tutorial, we explain how to control the display that is included on the ESP32 web kit module. The...") |
|||
Line 9: | Line 9: | ||
== Required Module and Files == | == Required Module and Files == | ||
− | * We use | + | * We use [https://www.sketching-with-hardware.org/files/ssd1306.py|ssd1306.py] |
− | * This is a basic | + | * This is a basic [https://www.sketching-with-hardware.org/files/displaytest.py|display test example] for how to use this module |
− | * This is | + | * This is [https://www.sketching-with-hardware.org/files/adc2displ.py|a code example that reads analog in and prints on the display] |
* you can download all the file in a ZIP: https://www.sketching-with-hardware.org/files/display.zip | * you can download all the file in a ZIP: https://www.sketching-with-hardware.org/files/display.zip | ||
Revision as of 23:32, 14 August 2020
Contents
Connect to and Control the OLED Display on the ESP32
In this part of the tutorial, we explain how to control the display that is included on the ESP32 web kit module. The display is connected over I2C and we use the microPython module ssd1306.py as library.
Success criteria
- you can write a string to the display
- you can converts numbers to strings and write them to the display
- you can clear the display or fill it
- you can position text at different positions on the display
Required Module and Files
- We use [1]
- This is a basic test example for how to use this module
- This is code example that reads analog in and prints on the display
- you can download all the file in a ZIP: https://www.sketching-with-hardware.org/files/display.zip
Instructional Videos
Writing to the OLED Dsiplay over I2C
In this video on youtube (22:00) we show how to write text to the OLED Display on the ESP32 module. We then show how to connect a poti to an analog input and display the value in a loop on the display.
an LED and how to control it from MicroPython: https://youtu.be/UbxwePvgX-U