alpha
Login
or
Join now
arthomnix.dev
/
eepy
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
firmware for my Touchscreen E-Paper Input Module for Framework Laptop 16
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
git add
author
arthomnix
date
1 year ago
(Jan 11, 2025, 6:17 PM UTC)
commit
3e08acd0
3e08acd071ff2a83cba079ba0da433cc83f75582
parent
5ffed47f
5ffed47f6e63b052e90c2b5e2515da70ff9483f0
+14
2 changed files
Expand all
Collapse all
Unified
Split
fw16-epd-gui
Cargo.toml
src
lib.rs
+10
fw16-epd-gui/Cargo.toml
Reviewed
···
1
1
+
[package]
2
2
+
name = "fw16-epd-gui"
3
3
+
version = "0.1.0"
4
4
+
edition = "2021"
5
5
+
6
6
+
[dependencies]
7
7
+
fw16-epd-program-interface = { path = "../fw16-epd-program-interface", features = ["embedded-graphics"] }
8
8
+
tp370pgh01 = { path = "../tp370pgh01" }
9
9
+
embedded-graphics.workspace = true
10
10
+
defmt.workspace = true
+4
fw16-epd-gui/src/lib.rs
Reviewed
···
1
1
+
#![no_std]
2
2
+
3
3
+
pub mod draw_target;
4
4
+
pub mod element;