Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stanthesoupking/pidotlcd
Python driver for using the 128x64 dot LCD display on a Raspberry Pi
https://github.com/stanthesoupking/pidotlcd
128x64 raspberry-pi
Last synced: 27 days ago
JSON representation
Python driver for using the 128x64 dot LCD display on a Raspberry Pi
- Host: GitHub
- URL: https://github.com/stanthesoupking/pidotlcd
- Owner: stanthesoupking
- License: mit
- Created: 2020-01-25T10:07:55.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-29T01:42:20.000Z (over 4 years ago)
- Last Synced: 2024-10-11T02:03:10.478Z (27 days ago)
- Topics: 128x64, raspberry-pi
- Language: Python
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PiDotLCD
Python driver for using a 128x64 dot LCD display on a Raspberry Pi## Basic Usage
```python3
import PiDotLCD# Create display
display = PiDotLCD.display()display.set_pixel(16, 16) # Set pixel
display.set_pixel(16, 16, False) # Clear pixel
```