kolibri-cyd-tester-app-embassy/slint-based
2024-11-19 23:00:08 +01:00
..
.cargo feat: light-control and microwave ui using slint and lvgl 2024-11-19 23:00:08 +01:00
.vscode feat: add slint based stuff 2024-11-18 16:35:01 +01:00
img feat: light-control and microwave ui using slint and lvgl 2024-11-19 23:00:08 +01:00
src feat: light-control and microwave ui using slint and lvgl 2024-11-19 23:00:08 +01:00
ui feat: light-control and microwave ui using slint and lvgl 2024-11-19 23:00:08 +01:00
.gitignore feat: add slint based stuff 2024-11-18 16:35:01 +01:00
build.rs feat: light-control and microwave ui using slint and lvgl 2024-11-19 23:00:08 +01:00
Cargo.lock feat: add slint based stuff 2024-11-18 16:35:01 +01:00
Cargo.toml feat: light-control and microwave ui using slint and lvgl 2024-11-19 23:00:08 +01:00
README.md feat: add slint based stuff 2024-11-18 16:35:01 +01:00
rust-toolchain.toml feat: add slint based stuff 2024-11-18 16:35:01 +01:00
rustfmt.toml feat: add slint based stuff 2024-11-18 16:35:01 +01:00

Slint Bare Metal Microcontroller Rust Template

A template for a Rust Microcontroller(MCU) application that's using Slint for the user interface.

About

This template helps you get started developing a bare metal MCU Rust application with Slint as toolkit for the user interface. It shows how to implement the slint::platform::Platform trait, and displays a simple .slint design on the screen.

For a template about using Slint with an operating system (Desktop, or Embedded Linux), check out the classic template at https://github.com/slint-ui/slint-rust-template.

Usage

  1. Download and extract the ZIP archive of this repository.

  2. Rename the extracted directory and change into it:

    mv slint-mcu-rust-template-main my-project
    cd my-project
    
  3. Run on the Desktop (Simulator)

    cargo run --features simulator
    
  4. If you have a RaspberryPi Pico with a 2.8 inch Waveshare Touch Screen:

    a. Install the cargo extension to create UF2 images for the RP2040 USB Bootloader

    cargo install elf2uf2-rs --locked
    

    b. Run on the device

    cargo run --target=thumbv6m-none-eabi --features=pico --release
    

In order to port to your device, you will have to replace all the code that is specific to the RaspberryPi Pico. See also the instructions on https://slint-ui.com/snapshots/master/docs/rust/slint/docs/mcu/index.html

Next Steps

We hope that this template helps you get started and you enjoy exploring making user interfaces with Slint. To learn more about the Slint APIs and the .slint markup language check out our online documentation.

Don't forget to edit this readme to replace it by yours, and edit the name = field in Cargo.toml to match the name of your project.