embedded-graphics Driver for the VEX V5
This crate provides a DrawTarget implementation for the VEX V5 brain display, allowing you to draw to the display using the embedded-graphics ecosystem.
Usage
To begin, turn your display peripheral into a DisplayDriver:
use *;
use DisplayDriver;
async
DisplayDriver is a DrawTarget that the embedded-graphics crate is
able to draw to.
use *;
use DisplayDriver;
use ;
async
Check out the embedded-graphics docs for more examples.