Sparklines are small, high resolution graphics embedded in a context of words, numbers or images". Edward Tufte describes sparklines as "data-intense, design-simple, word-sized graphics".
Explore the docs »
Rust Crate
·
Report Bug
·
Request Feature
This library is a Rust implementation of ESParklines library which is extemely useful for creating real-time graphs for use with small embedded systems screeens.
This library is designed to be as simple as possible. It is responsible for: - holding a buffer of pre-defined size of numeric data type - renders sparklines using a passed-in function to draw lines - is display-driver independent as you can provide any drawing function - works with embedded-graphics simulator so you can quickly iterate on you dev machine
Make sure you have your rust
environment configurated
Add library to your Cargo.toml
toml
...
[dependencies]
embedded-graphics-sparklines = "0.1.0"
Use the library in you code ```rust
let mut display: SimulatorDisplay
// create sparkline object let mut sparkline = Sparkline::new( bbox, // position and size of the sparkline 32, // max samples to store in memory (and display on graph) BinaryColor::On, 1, // stroke size draw_fn, );
let outputsettings = OutputSettingsBuilder::new() .theme(BinaryColorTheme::OledBlue) .build(); let mut window = Window::new("Sparkline", &outputsettings);
loop { let val = rand::threadrng().genrange(0..100); sparkline.add(val); sparkline.draw(&mut display)?;
window.update(&display); thread::sleep( Duration::from_millis(100); } ```
main.rs
if you want to run a quick demo. cargo
set upbash
$ cargo install embedded-graphics-sparklines
bash
$ embedded-graphics-sparklines --features build-binary
See the open issues for a full list of proposed features (and known issues).
Distributed under the MIT License. See LICENSE
for more information.
Bernard Kobos - @bkobos - bkobos@gmail.com
Project Link: https://github.com/bernii/embedded-graphics-sparklines