BlueToe
an alternative GATT/BLE implementation
Loading...
Searching...
No Matches
sensor_location.hpp
1#ifndef BLUETOE_SENSOR_LOCATION_HPP
2#define BLUETOE_SENSOR_LOCATION_HPP
3
4namespace bluetoe {
5
6 namespace details {
7 struct sensor_location_meta_type {};
8 }
9
13 template < std::uint8_t L >
15 {
17 struct meta_type :
18 details::sensor_location_meta_type,
19 details::valid_service_option_meta_type {};
20
21 static constexpr std::uint8_t value = L;
23 };
24
31 {
62 };
63}
64
65#endif
type to keep a bluetoe::location value
Definition: sensor_location.hpp:15
enumeration of sensor_location (org.bluetooth.characteristic.sensor_location)
Definition: sensor_location.hpp:31