https://github.com/plotters-rs/plotters-minifb-demo
Example for realtime plotting with Plotters + MiniFB
https://github.com/plotters-rs/plotters-minifb-demo
Last synced: 10 months ago
JSON representation
Example for realtime plotting with Plotters + MiniFB
- Host: GitHub
- URL: https://github.com/plotters-rs/plotters-minifb-demo
- Owner: plotters-rs
- Created: 2022-06-26T03:21:32.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-04-24T19:48:55.000Z (about 3 years ago)
- Last Synced: 2025-08-23T19:29:25.789Z (10 months ago)
- Language: Rust
- Size: 26.4 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Plotters Frame Buffer Example
This is a simple example project demonstrate how Plotters works with frame buffer devices.
In our example, we use the [minifb](https://github.com/emoon/minifb) crates as the frame buffer implementation.
You can also use any frame buffer devices, such as `/dev/fb0` etc.
This example also demonstrate how to use Plotters for realtime plot rendering.
This project is a simple simulation of an oscilloscope showing [Lissajous curve](https://en.wikipedia.org/wiki/Lissajous_curve).
For more details about plotters, check the [main repository](https://github.com/plotters-rs/plotters)

To build and run the project:
```
cargo run
```