firmware for my Touchscreen E-Paper Input Module for Framework Laptop 16
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

git add

+14
+10
fw16-epd-gui/Cargo.toml
··· 1 + [package] 2 + name = "fw16-epd-gui" 3 + version = "0.1.0" 4 + edition = "2021" 5 + 6 + [dependencies] 7 + fw16-epd-program-interface = { path = "../fw16-epd-program-interface", features = ["embedded-graphics"] } 8 + tp370pgh01 = { path = "../tp370pgh01" } 9 + embedded-graphics.workspace = true 10 + defmt.workspace = true
+4
fw16-epd-gui/src/lib.rs
··· 1 + #![no_std] 2 + 3 + pub mod draw_target; 4 + pub mod element;