nRF Connect SDK API 2.8.99
|
int bt_mesh_sensor_value_from_micro | ( | const struct bt_mesh_sensor_format * | format, |
int64_t | val, | ||
struct bt_mesh_sensor_value * | sensor_val ) |
#include <include/bluetooth/mesh/sensor.h>
Convert an integer in micro units to a bt_mesh_sensor_value.
If val
has a value that cannot be represented by the format, sensor_val
will be set to the value clamped to the range supported by the format, and this function will return -ERANGE. This will clamp to "Greater than or equal to the maximum value" and "Less than or equal to the minimum value" if these are supported by the format.
If this function returns an error code other than -ERANGE, sensor_val
is not modified.
[in] | format | Format to use when encoding the sensor value. |
[in] | val | The integer to convert. |
[out] | sensor_val | The resulting bt_mesh_sensor_value. |