Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/persello/bluedroid
Bluedroid wrapper for ESP32.
https://github.com/persello/bluedroid
bluetooth esp-idf esp32 rust
Last synced: about 1 month ago
JSON representation
Bluedroid wrapper for ESP32.
- Host: GitHub
- URL: https://github.com/persello/bluedroid
- Owner: persello
- License: mit
- Archived: true
- Created: 2022-08-19T15:11:44.000Z (about 2 years ago)
- Default Branch: develop
- Last Pushed: 2023-07-30T07:25:37.000Z (over 1 year ago)
- Last Synced: 2024-05-22T02:13:52.179Z (6 months ago)
- Topics: bluetooth, esp-idf, esp32, rust
- Language: Rust
- Homepage:
- Size: 202 KB
- Stars: 35
- Watchers: 4
- Forks: 8
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-esp-rust - bluedroid - Safe wrapper for the Bluedroid Bluetooth stack. (Projects / `std`)
README
# Bluedroid Rust wrapper
[![crates.io](https://img.shields.io/crates/v/bluedroid)](https://crates.io/crates/bluedroid)
[![build](https://github.com/pulse-loop/bluedroid/actions/workflows/build.yml/badge.svg)](https://github.com/pulse-loop/bluedroid/actions/workflows/build.yml)
[![docs.rs](https://docs.rs/bluedroid/badge.svg)](https://docs.rs/bluedroid)
![crates.io](https://img.shields.io/crates/d/bluedroid)
![crates.io](https://img.shields.io/crates/l/bluedroid)This is a Rust wrapper for the Bluedroid Bluetooth stack for ESP32.
It allows you to build a GATT server with a declarative API and supports multithreading.## Usage
Declare a characteristic:
```rust
let manufacturer_name_characteristic = Characteristic::new(BleUuid::Uuid16(0x2A29))
.name("Manufacturer Name String")
.permissions(AttributePermissions::new().read().write())
.properties(CharacteristicProperties::new().read().write().notify())
.max_value_length(20)
.on_write(|data, param| {
info!("Received write request: {:?} {:?}", data, param);
})
.show_name()
.set_value("Hello, world!".as_bytes().to_vec())
.build();
```Declare a service:
```rust
let device_information_service = Service::new(BleUuid::Uuid16(0x180A))
.name("Device Information")
.primary()
.characteristic(&manufacturer_name_characteristic)
.build();
```Declare a profile and start the server:
```rust
let profile = Profile::new(0x0001)
.name("Device Information")
.service(&device_information_service)
.build();GLOBAL_GATT_SERVER
.lock()
.unwrap()
.profile(profile)
.device_name("ESP32-GATT-Server")
.appearance(Appearance::WristWornPulseOximeter)
.advertise_service(&device_information_service)
.start();
```## Features
- [x] GATT server
- [x] Advertisement
- [x] Custom name
- [x] Custom appearance
- [x] Multiple applications
- [x] Services
- [x] Declaration
- [x] Advertisement
- [x] Characteristics
- [x] Declaration
- [x] Broadcast
- [x] Read
- [x] Static (by stack)
- [x] Dynamic (by application, with callback)
- [ ] Long
- [x] Write
- [x] With response
- [x] Without response
- [ ] Long
- [x] Notify
- [x] Indicate
- [x] Descriptors
- [x] Declaration
- [x] Read
- [x] Write
- [ ] Encryption
- [ ] GATT client
> There are currently no plans to implement the GATT client API.
> Contributions are welcome.
- [ ] BR/EDR
> There are currently no plans to implement the Bluetooth Classic API.
> Contributions are welcome.