Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jackw01/serial-grapher
Utility for graphing CSV data received over a serial port
https://github.com/jackw01/serial-grapher
Last synced: about 4 hours ago
JSON representation
Utility for graphing CSV data received over a serial port
- Host: GitHub
- URL: https://github.com/jackw01/serial-grapher
- Owner: jackw01
- License: mit
- Created: 2020-06-30T00:27:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-02T18:35:30.000Z (about 4 years ago)
- Last Synced: 2024-10-11T09:20:16.436Z (28 days ago)
- Language: Python
- Size: 97.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# serial-grapher
Utility for graphing CSV data received over a serial port## Install
`pip install serialgrapher`## Screenshot
![](screenshot.png)## Usage
```
usage: serialgrapher [-h] [-p PORT] [-b BAUD_RATE] [-l LENGTH] [--dont-save]
[--rate-limit LIMIT] [--auto-scale-y] [--y-min MIN] [--y-max MAX]Utility for graphing CSV data received over a serial port
optional arguments:
-h, --help show this help message and exit
-p PORT Serial port
-b BAUD_RATE Baud rate
-l LENGTH Number of data points to show on graph
--dont-save Don't save the data to a CSV file
--rate-limit LIMIT Maximum sample rate in samples/second
--auto-scale-y Automatically scale the y axis
--y-min MIN Minimum y value
--y-max MAX Maximum y value
```## CSV Format Example
This program receives data in standard CSV format from a serial port and expects a header row to be transmitted before the data.```
X,Y,Z
-0.90,2.20,9.73
-0.90,2.24,9.69
-0.98,2.16,9.77
-0.90,2.12,9.77
-0.86,2.24,9.73
...
```