https://github.com/nocd5/teaspoon
Terminal Serial Plotter
https://github.com/nocd5/teaspoon
Last synced: 23 days ago
JSON representation
Terminal Serial Plotter
- Host: GitHub
- URL: https://github.com/nocd5/teaspoon
- Owner: nocd5
- License: mit
- Created: 2016-02-20T00:16:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-19T01:24:37.000Z (about 9 years ago)
- Last Synced: 2025-02-17T03:29:18.735Z (4 months ago)
- Language: Go
- Size: 70.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# teaspoon
Terminal Serial Plotter## List COM Ports
```sh
tsp -l
```
## Connect
```sh
tsp -p COM6 -b 9600
```
A Delimiter option `--delimiter="\"\r\n\""` may be needed if you use Serial.println in Arduino.
Because Serial.println terminate string by **CRLF**### Arduino side sample code
```ino
void setup() {
Serial.begin(9600);
}int x = 0;
void loop() {
Serial.println(sin(x/180.0 * M_PI));
x = (x + 3) % 360;
delay(100);
}
```## Run

## Quit
Press `Q` key to quit