https://github.com/ammaraskar/rusty-bee
An attempt to make an open source ZigBee stack in embedded Rust
https://github.com/ammaraskar/rusty-bee
Last synced: 2 months ago
JSON representation
An attempt to make an open source ZigBee stack in embedded Rust
- Host: GitHub
- URL: https://github.com/ammaraskar/rusty-bee
- Owner: ammaraskar
- License: gpl-3.0
- Created: 2022-07-19T23:04:58.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-14T17:52:23.000Z (almost 4 years ago)
- Last Synced: 2025-03-02T03:41:28.438Z (over 1 year ago)
- Language: Rust
- Size: 41 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rusty-bee
An attempt to make an open source ZigBee stack in embedded Rust.
This is mostly for my own purposes specifically for NRF52 chips but let's see
where it goes :)
## Installation
1. `rustup target add thumbv7em-none-eabihf`
2. `cargo build --target thumbv7em-none-eabihf`
## Testing
1. `cargo test`
## Directory Structure
* `rusty-bee` - The core, platform independent library
* `rusty-bee-nrf52840` - Implementation of the library for the NRF52840 SoC,
written as a C library for now to work with the adafruit Android toolchain.