The simulator can be used to test and debug embedded-graphics code, or produce snazzy examples for people to try drivers out without needing physical hardware to run on.
```rust use embeddedgraphics::prelude::*; use embeddedgraphics::{icoord, circle, line, text6x8}; use embeddedgraphics_simulator::{DisplayBuilder, DisplayTheme}; use std::thread; use std::time::Duration;
fn main() { let mut display = DisplayBuilder::new() .theme(DisplayTheme::OledBlue) .size(128, 64) .build();
display.draw(text_6x8!("Hello World!"));
display.draw(circle!((96, 32), 31, stroke = Some(1u8.into())));
display.draw(line!((32, 32), (1, 32), stroke = Some(1u8.into())).translate(icoord!(64, 0))); display.draw(line!((32, 32), (40, 40), stroke = Some(1u8.into())).translate(icoord!(64, 0)));
loop { let end = display.run_once();
if end {
break;
}
thread::sleep(Duration::from_millis(200));
} } ```