Skip to content

Using Rust

George Morgan edited this page Feb 16, 2018 · 2 revisions

This Wiki page details how to use Rust to control a Flipper board.

Install the Rust Bindings

To use Flipper from Rust you will need to install the Rust bindings. We are working on getting an entry in crates.io which will let users use the bindings by depending on the flipper crate. But until then it's easy to install the bindings manually.

Navigate to the root of the repository and run the install command.

make install-rust

Writing a simple program

Make the LED turn blue

// Write me

Turning on an IO pin

//Write me

Clone this wiki locally