Skip to content

llloret/push2_display

 
 

Repository files navigation

push2_display

Crate API

This Rust library implements the Embedded-graphics-core DrawTarget trait, making it easy to draw 2D graphics primitives on the Push2 display.

Ableton Push2 is a MIDI instrument with a 960x160 RGB LCD display. Push2 is a USB composite device with a MIDI interface and a generic bulk data interface used to drive the display.

Examples

let mut display = Push2Display::new()?;

Text::new("Hello!", Point::new(400, 70))
    .into_styled(TextStyle::new(Font6x8, Bgr565::BLUE))
    .draw(&mut display)?;

display.flush()?;
git clone https://github.com/mbracher/push2_display
cd push2_display

cargo run --examples hello

Photo of hello example on Push2 device

References

Ableton Push Interface

Embedded graphics

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Ableton Push2 Embedded-graphics display driver

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 100.0%