Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mitgobla/st7789-python-emulator
Python Library based on Pimoroni ST7789 library to allow development of ST7789 displays using a GUI instead of connected hardware.
https://github.com/mitgobla/st7789-python-emulator
emulator pimoroni st7789
Last synced: about 2 months ago
JSON representation
Python Library based on Pimoroni ST7789 library to allow development of ST7789 displays using a GUI instead of connected hardware.
- Host: GitHub
- URL: https://github.com/mitgobla/st7789-python-emulator
- Owner: mitgobla
- License: mit
- Created: 2024-07-11T18:39:04.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-07-25T10:37:36.000Z (5 months ago)
- Last Synced: 2024-09-26T13:17:36.887Z (3 months ago)
- Topics: emulator, pimoroni, st7789
- Language: Python
- Homepage:
- Size: 43 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python ST7789 Emulator
Python Library based on [Pimoroni ST7789 library](https://github.com/pimoroni/st7789-python/) to allow development of ST7789 displays using a GUI instead of connected hardware.
# Usage
If you have established code using the [Pimoroni ST7789 library](https://github.com/pimoroni/st7789-python/), then adding this library is as simple as updating your import to match the following:
```python
try:
import st7789
except ImportError:
import st7789_emulator as st7789
```Once you run your code a window is generated for each instance of a ST7789 display which will show the image to scale of the configured display.