esp-idf-ssd1306/ImageScrollDemo
2022-11-19 08:07:43 +09:00
..
alphabet_pngs Added ImageScrollDemo 2022-08-10 08:08:46 +09:00
main Removed unused includes 2022-11-19 08:07:43 +09:00
CMakeLists.txt Added ImageScrollDemo 2022-08-10 08:08:46 +09:00
README.md Added ImageScrollDemo 2022-08-10 08:08:46 +09:00
sdkconfig.defaults Added ImageScrollDemo 2022-08-10 08:08:46 +09:00

ImageScrollDemo for SSD1306

ImageScrollDemo

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.