fix(esp32-ui): add bootable scaffold and align docs
This commit is contained in:
parent
ffbb1d9087
commit
8051c06756
4 changed files with 157 additions and 168 deletions
|
|
@ -7,10 +7,9 @@ description = "ZeroClaw ESP32 UI firmware with Slint - Graphical interface for A
|
|||
authors = ["ZeroClaw Team"]
|
||||
|
||||
[dependencies]
|
||||
# ESP-IDF framework
|
||||
anyhow = "1.0"
|
||||
esp-idf-svc = "0.48"
|
||||
log = { version = "0.4", default-features = false }
|
||||
anyhow = "1.0"
|
||||
|
||||
# Slint UI - MCU optimized
|
||||
slint = { version = "1.10", default-features = false, features = [
|
||||
|
|
@ -19,41 +18,13 @@ slint = { version = "1.10", default-features = false, features = [
|
|||
"renderer-software",
|
||||
] }
|
||||
|
||||
# Display drivers
|
||||
mipidsi = { version = "0.9", features = ["batch"] }
|
||||
display-interface-spi = "0.5"
|
||||
embedded-graphics = "0.8"
|
||||
|
||||
|
||||
# Serialization for communication
|
||||
serde = { version = "1.0", default-features = false, features = ["derive"] }
|
||||
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
|
||||
|
||||
# Async support
|
||||
embassy-sync = { version = "0.6", features = ["defmt"] }
|
||||
embassy-futures = "0.1"
|
||||
embassy-time = { version = "0.1", features = ["tick-hz-100", "defmt"] }
|
||||
|
||||
# WiFi networking
|
||||
embedded-svc = "0.28"
|
||||
|
||||
# Capacitive touch driver (FT6X36)
|
||||
ft6x36 = "0.2"
|
||||
|
||||
# I2C for touch controller
|
||||
esp-idf-hal = "0.43"
|
||||
|
||||
# Utilities
|
||||
heapless = "0.8"
|
||||
nb = "1.1"
|
||||
|
||||
[build-dependencies]
|
||||
embuild = { version = "0.31", features = ["elf"] }
|
||||
slint-build = "1.10"
|
||||
|
||||
[features]
|
||||
default = ["std", "display-st7789"]
|
||||
std = ["esp-idf-svc/std", "serde/std", "serde_json/std"]
|
||||
std = ["esp-idf-svc/std"]
|
||||
|
||||
# Display selection (choose one)
|
||||
display-st7789 = [] # 320x240 or 135x240
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue