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: 4 months 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-29T01:42:20.000Z (over 5 years ago)
- Last Synced: 2024-12-29T09:42:34.425Z (6 months 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
```