Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AnthonyKNorman/MicroPython_PCD8544
https://github.com/AnthonyKNorman/MicroPython_PCD8544
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/AnthonyKNorman/MicroPython_PCD8544
- Owner: AnthonyKNorman
- Created: 2016-10-24T07:41:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-24T07:44:14.000Z (over 8 years ago)
- Last Synced: 2024-08-02T20:45:15.065Z (6 months ago)
- Language: Python
- Size: 4.88 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-mpython - MicroPython_PCD8544 - ESP8266 driver for Nokia 5110 PCD8544. (精选驱动库 / 显示类)
- awesome-micropython - MicroPython_PCD8544 - ESP8266 driver for Nokia 5110 PCD8544. (Libraries / Display)
README
ESP8266 Micropython driver for PCD8544. Typically used in the Nokia 5110 display.
**font5x7.fnt** is a 5 x 7 font file. It holds the font in pure binary and so uses only 480 bytes
When the display needs a character it reads the five bytes it needs from the file rather than loading the whole font into memory
invoke the display with:
from PCD8544 import PCD8544
if you use different pins then you will need to specify these in the inital call
d = PCD8544()
d.reset()
d.begin() # displays the Project Pages logo
d.clear() # clears the display buffer
d.display() # writes the buffer to the actual display
d._row is the character row
d._col is the character column
d.p_char('x')
* puts the character into the display buffer
* advances _row and _col accoringly. They will wrap back to the top of the screen
* requires d.display() to show itd.p_string('hello world')
* prints the string to the display buffer
* advances _row and _col accoringly. They will wrap back to the top of the screen
* requires d.display() to show itd.pixel(x,y,fill)
* sets a pixel in the display buffer
* this is for use by the lcd_gfx.py
* this allows you to draw lines, rectangles, triangles and circles. Filled or notI have added a main.py that demonstrates the string printing and drawing capabilities