Add led drivers
This commit is contained in:
parent
c1b98bb7d0
commit
e023814626
4 changed files with 275 additions and 12 deletions
16
Cargo.toml
16
Cargo.toml
|
|
@ -4,8 +4,18 @@ version = "0.1.0"
|
|||
edition = "2024"
|
||||
|
||||
[[bin]]
|
||||
name = "uwu"
|
||||
name = "m5stamp_c3_ws2812"
|
||||
path = "./src/bin/main.rs"
|
||||
test = false
|
||||
doctest = false
|
||||
bench = false
|
||||
|
||||
[lib]
|
||||
name = "m5stamp_c3_ws2812"
|
||||
path = "./src/lib.rs"
|
||||
test = false
|
||||
doctest = false
|
||||
bench = false
|
||||
|
||||
[dependencies]
|
||||
embassy-net = { version = "0.6.0", features = [
|
||||
|
|
@ -52,6 +62,10 @@ esp-wifi = { version = "0.13.0", features = [
|
|||
] }
|
||||
heapless = { version = "0.8.0", default-features = false }
|
||||
static_cell = { version = "2.1.0", features = ["nightly"] }
|
||||
smart-leds = "0.4.0"
|
||||
ws2812-spi = "0.5.0"
|
||||
embassy-futures = "0.1.1"
|
||||
embassy-sync = "0.7.0"
|
||||
|
||||
[profile.dev]
|
||||
# Rust debug is too slow.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue