Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tophercantrell/lineart
Line Art Library
https://github.com/tophercantrell/lineart
adabox014 circuitpython line-art tft-gizmo
Last synced: about 7 hours ago
JSON representation
Line Art Library
- Host: GitHub
- URL: https://github.com/tophercantrell/lineart
- Owner: topherCantrell
- Created: 2019-12-21T15:20:06.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-24T16:13:00.000Z (almost 5 years ago)
- Last Synced: 2024-11-17T10:17:16.580Z (about 7 hours ago)
- Topics: adabox014, circuitpython, line-art, tft-gizmo
- Language: Python
- Size: 86.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Line Art
## Panel language
![](art/config.jpg)
`TODO: This has evolved. Discuss here.`
- Configs
- CW/CCW
- Divisions
- Offsets
- Plus (simultaneous)
- Sleep
- Clear UNDO## Christmas 2019
For the Circuit Playground Bluefruit + TFT Gizmo
```python
# The display script
SCRIPT = [
'Config FOUR',
'Color 0='+C_Teal,
'Color 1='+C_Red,
'Color 2='+C_Aqua,
'Color 3='+C_Lime,
'Draw 0A.1+1B+2C+3D',
'Draw 0C.2+1D+2A+3B',
'Draw 0D.3+1C+2B+3A',
'Sleep 5',
'Clear UNDO',
```
![](art/LineArt0.png)```python
'Config BIG',
'Color 0='+C_Black,
'Color 1='+C_Green,
'Color 2='+C_White,
'Draw 0A.1+0B+0C+0D',
'Config FOUR',
'Draw 0C.2+1D+2A+3B',
'Sleep 2',
'Clear UNDO',
```
![](art/LineArt1.png)```python
'Config FOUR',
'Draw 0A.1+1B+2C+3D',
'Draw 0C.2+1D+2A+3B',
'Sleep 5',
'Clear UNDO',
]
```
![](art/LineArt2.png)