Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cyprienh/chiplotle3
The Chiplotle serial plotter library for Python 3
https://github.com/cyprienh/chiplotle3
Last synced: about 1 month ago
JSON representation
The Chiplotle serial plotter library for Python 3
- Host: GitHub
- URL: https://github.com/cyprienh/chiplotle3
- Owner: cyprienh
- License: gpl-3.0
- Created: 2022-05-04T20:42:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-30T22:35:58.000Z (6 months ago)
- Last Synced: 2024-11-08T08:48:28.579Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 343 KB
- Stars: 7
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-plotters - Chiplotle3 - Chiplotle fork updated for Python 3.x compatibility. (Software / HPGL)
README
# Chiplotle
Chiplotle is a Python library that implements and extends the HPGL (Hewlett-Packard Graphics Language) plotter control language. It supports all the standard HPGL commands as well as our own more complex "compound HPGL" commands, implemented as Python classes. Chiplotle also provides direct control of your HPGL-aware hardware via a standard usb<->serial port interface.Chiplotle has been tested with a variety of HPGL devices from various companies, including Hewlett-Packard, Roland Digital Group, Houston Instrument, etc. It includes plotter-specific configuration files for many different plotter models, as well as a generic configuration that should work with any HPGL-compliant device.
Chiplotle is written and maintained by Victor Adan and Douglas Repetto.
Chiplotle has been updated to Python 3 by Cyprien Heusse.
This updated version has been tested on several different computers and operating systems (MacOS Intel & M1, Linux Mint & Raspbian, Windows).
Some information depending on the OS you install this library on:
- On Linux you will probably need to add yourself to the "dialout" group, to do so simply type `sudo usermod -a -G dialout user`.
- On MacOS using M1 processor, you might need to reinstall Numpy for the library to work, to do so `pip uninstall numpy` and `pip install numpy`.Find all there is to know about Chiplotle at:
http://sites.music.columbia.edu/cmc/chiplotle/More information at:
https://chiplotle.readthedocs.io/The code for this version of Chiplotle is available at:
https://github.com/cyprienh/chiplotle3## Installation
If you only want to use the command `chiplotle3` it is recommended to install using `pipx`:
```bash
pipx install chiplotle3
```## TODO
- When using the chiplotle3 command, would be nice if plotter instanciation prints happened after the banner
- Automatically update pip when pushing to GitHub