EPD-Emulator
EPD Emulator for simulating EPD (E-Paper Display) screens, useful for development and testing purposes. It supports both Tkinter and Flask for display rendering, and it can emulate color as well as monochrome displays.
File Explorer
- wiki-sync.yml
- acidwiki.json
- EPD-Emulator.png
- FUNDING.yml
- epdemulator.cpython-310.pyc
- epdemulator.cpython-39.pyc
- epd10in3.json
- epd11in6.json
- epd12in48.json
- epd1in54.json
- epd2in13.json
- epd2in13v2.json
- epd2in66.json
- epd2in7.json
- epd2in9.json
- epd3in52.json
- epd3in7.json
- epd4in2.json
- epd4in3.json
- epd5in65.json
- epd5in83.json
- epd6in0.json
- epd6in2.json
- epd7in5.json
- epd9in7.json
- epdemulator.py
- Arial.ttf
- bjorn.bmp
- bjorn1.bmp
- .gitignore
- LICENSE
- README.md
- requirements.txt
- waveshare_emulator demo.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
