BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
DPAOSPeripheralInfoResponse.h
1 #pragma once
2 
3 #include "iqrf/DPAResponse.h"
4 
5 namespace BeeeOn {
6 
8 public:
9  typedef Poco::SharedPtr<DPAOSPeripheralInfoResponse> Ptr;
10 
14  uint32_t mid() const;
15 
22  int8_t rssi() const;
23 
29  double rssiPercentage() const;
30 
37  double supplyVoltage() const;
38 
39  double percentageSupplyVoltage() const;
40 };
41 
42 }
uint32_t mid() const
Definition: DPAOSPeripheralInfoResponse.cpp:12
int8_t rssi() const
Definition: DPAOSPeripheralInfoResponse.cpp:24
double rssiPercentage() const
Converts RSSI value ([dBm]) of incoming RF signal to percentage.
Definition: DPAOSPeripheralInfoResponse.cpp:58
Definition: DPAOSPeripheralInfoResponse.h:7
double supplyVoltage() const
Definition: DPAOSPeripheralInfoResponse.cpp:35
Each response contains a header with:
Definition: DPAResponse.h:20