Add initial project structure and implement async main for Pico W

This commit is contained in:
2026-06-04 15:08:39 -05:00
parent dfafe5e595
commit 14d0015845
2 changed files with 24 additions and 5 deletions
+12
View File
@@ -2,6 +2,18 @@
This project is an embedded Rust application for the Raspberry Pi Pico W, utilizing the Embassy async framework.
## Build Commands
This project uses a `Makefile` to simplify common tasks. The `Makefile` is configured to automatically use `direnv` to load the Nix environment if `direnv` is installed on your system. This ensures that the correct Rust toolchain and dependencies are available even if you haven't manually run `nix develop` or `direnv allow`.
| Command | Description |
|---------|-------------|
| `make build` | Build the project using `cargo build` |
| `make run` | Run the project using `cargo run` |
| `make test` | Run tests using `cargo test` |
| `make clean` | Clean build artifacts |
| `make flatpak-build` | Build the Flatpak package |
## LLM Agent Guidelines
This project uses LLM agents for configuration and housekeeping. Please refer to [agents.md](agents.md) for the rules and guidelines governing their use.