mirror of
https://github.com/nopnop2002/esp-idf-ssd1306.git
synced 2024-10-03 18:18:47 -04:00
.. | ||
alphabet_pngs | ||
main | ||
CMakeLists.txt | ||
README.md | ||
sdkconfig.defaults |
ImageScrollDemo for SSD1306
I borrowed the BIT MAP data from here.
How to make Alphabet image
- Download png file.
- Eliminate shadows using Windows paint.
- Convert image to monochrome using convert.
convert [in] -monochrome [out]
- Eliminate dot-line using Windows paint.
- Resize image to 48x62 using convert.
convert [in] -resize -x48 [out]
- Convert image file to BMP data using this page.
- Paste the BMP data into your code.