Registry / other / embedded-graphics

embedded-graphics

JSON →
library0.8.2rscratesunverified

Embedded graphics library for small hardware displays

other
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

use embedded_graphics::prelude::*;

Draw a circle on a mock display

use embedded_graphics::{ pixelcolor::BinaryColor, prelude::*, primitives::{Circle, PrimitiveStyle}, mock_display::MockDisplay, }; fn main() { let mut display: MockDisplay<BinaryColor> = MockDisplay::new(); let circle = Circle::new(Point::new(10, 10), 20) .into_styled(PrimitiveStyle::with_stroke(BinaryColor::On, 1)); circle.draw(&mut display).unwrap(); }
Debug
Known footguns

No known footguns recorded.

Upgrade
Version history

Breaking-change detection hasn't run for this library yet.

Audit
Security & dependencies

CVE tracking and dependency tree are planned for a later release.

Agent activity
11 hits · last 30 days
gptbot
3
claudebot
3
ahrefsbot
1
Resources