simplersble 1.1.1-dev29

The all-in-one Bluetooth library that makes it easy to add wireless connectivity to your projects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include <cstdint>

#include <simpleble/Types.h>

#include "protocol/simpleble.pb.h"

namespace SimpleBLE {
namespace Dongl {

BluetoothUUID uuid_from_uuid16(uint16_t uuid);
BluetoothUUID uuid_from_uuid32(uint32_t uuid);
BluetoothUUID uuid_from_uuid128(const uint8_t uuid[16]);
BluetoothUUID uuid_from_proto(const simpleble_UUID& uuid);

}  // namespace Dongl
}  // namespace SimpleBLE