Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 835 Bytes

README.md

File metadata and controls

25 lines (14 loc) · 835 Bytes

ebe_ble_server

Sends a series of sensor values from an existing esphome device to a device running this repository.

Inspired by a private repository created by @syssi, as well as @jesse_rocks esp32_controller.

Conducted as a component of an APNIC Foundation grant designed to improve telecommunications to a small Indigenous Community the Vic Daly Region of the Northern Territory, in Australia.

Lots more work required to make it more adaptable.

The values are received by this repository as a byte array, and then used to populate a struct called MyData -

//this is the structure that is used to carry the data sent by the client.

struct MyData {

float float1_; // 4 bytes for the first float

float float2_;
float float3_;
float float4_; };

see examples folder for examples of client and server