aboutsummaryrefslogtreecommitdiff
path: root/shared/util.h
blob: 1bee48741449c34489fc303c2702ab3828f1813e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include <stdint.h>

#define WS_MIN(a, b) (((a) < (b)) ? (a) : (b))
#define WS_MAX(a, b) (((a) > (b)) ? (a) : (b))

/** @brief take the log base 16 of `x` */
unsigned int ws_log16(unsigned int x);

/** @brief convert 16-bit temperature value to uint8_t */
uint8_t ws_sensor_tmp_to_8(uint16_t temperature);
/** @brief convert 16-bit humidity value to uint8_t */
uint8_t ws_sensor_hum_to_8(uint16_t humidity);
/** @brief convert 16-bit atmospheric pressure value to uint8_t */
uint8_t ws_sensor_atm_to_8(uint16_t atmospheric_pressure);

/** @brief convert 8-bit temperature value back to float */
float ws_sensor_tmp_to_f(uint8_t temperature);
/** @brief convert 8-bit humidity value back to float */
float ws_sensor_hum_to_f(uint8_t humidity);
/** @brief convert 8-bit atmospheric pressure value back to float */
float ws_sensor_atm_to_f(uint8_t atmospheric_pressure);