Loading...
Searching...
No Matches
phydat.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2015 Freie Universität Berlin
3 * SPDX-License-Identifier: LGPL-2.1-only
4 */
5
6#pragma once
7
33
34#include <stddef.h>
35#include <stdint.h>
36#include <sys/types.h>
37
38#include "modules.h"
39
40#ifdef __cplusplus
41extern "C" {
42#endif
43
55#define PHYDAT_DIM (3U)
56
60#define PHYDAT_SCALE_STR_MAXLEN (sizeof("*E-128\0"))
61
73enum {
74 /* generic values */
77 /* temperature */
81 /* illuminance */
83 /* dimension */
87 /* kinetic */
90 /* weight */
93 /* electricity */
103 /* electrochemical */
105 /* pressure */
108 /* light */
110 /* logical */
117 /* aggregate values */
120 /* mass concentration */
122 /* number concentration */
124 /* extend this list as needed */
125};
126
148typedef struct {
149 int16_t val[PHYDAT_DIM];
150 uint8_t unit;
151 int8_t scale;
152} phydat_t;
153
157#define PHYDAT_MIN (INT16_MIN)
158
162#define PHYDAT_MAX (INT16_MAX)
163
170void phydat_dump(phydat_t *data, uint8_t dim);
171
177void phydat_unit_print(uint8_t unit);
178
195ssize_t phydat_unit_write(char *dest, size_t max_size, uint8_t unit);
196
208char phydat_prefix_from_scale(int8_t scale);
209
240void phydat_fit(phydat_t *dat, const int32_t *values, unsigned int dim);
241
285size_t phydat_to_json(const phydat_t *data, size_t dim, char *buf);
286
297int64_t phydat_date_time_to_unix(phydat_t *date, phydat_t *time, int32_t offset_seconds);
298
312int64_t phydat_unix(int16_t year, int16_t month, int16_t day,
313 int16_t hour, int16_t minute, int16_t second,
314 int32_t offset);
315
316#ifdef __cplusplus
317}
318#endif
319
void phydat_unit_print(uint8_t unit)
Print a unit.
#define PHYDAT_DIM
The fixed number of dimensions we work with.
Definition phydat.h:55
char phydat_prefix_from_scale(int8_t scale)
Convert the given scale factor to an SI prefix.
int64_t phydat_date_time_to_unix(phydat_t *date, phydat_t *time, int32_t offset_seconds)
Convert a date and time contained in phydat structs to a Unix timestamp.
int64_t phydat_unix(int16_t year, int16_t month, int16_t day, int16_t hour, int16_t minute, int16_t second, int32_t offset)
Convert a date and time (per ISO8601) to a Unix timestamp (seconds since 1970).
size_t phydat_to_json(const phydat_t *data, size_t dim, char *buf)
Convert the given phydat_t structure into a JSON string.
ssize_t phydat_unit_write(char *dest, size_t max_size, uint8_t unit)
Write the string representation of the given unit into the given buffer.
void phydat_fit(phydat_t *dat, const int32_t *values, unsigned int dim)
Scale integer value(s) to fit into a phydat_t.
void phydat_dump(phydat_t *data, uint8_t dim)
Dump the given data container to STDIO.
@ UNIT_M2
square meters
Definition phydat.h:85
@ UNIT_TEMP_C
degree Celsius
Definition phydat.h:78
@ UNIT_G_FORCE
gravitational force equivalent
Definition phydat.h:88
@ UNIT_W
Watt.
Definition phydat.h:96
@ UNIT_COULOMB
coulomb
Definition phydat.h:100
@ UNIT_PA
Pascal.
Definition phydat.h:107
@ UNIT_A
Ampere.
Definition phydat.h:94
@ UNIT_PERCENT
out of 100
Definition phydat.h:113
@ UNIT_TEMP_K
Kelvin.
Definition phydat.h:80
@ UNIT_NONE
data has no physical unit
Definition phydat.h:76
@ UNIT_UNDEF
unit undefined
Definition phydat.h:75
@ UNIT_TEMP_F
degree Fahrenheit
Definition phydat.h:79
@ UNIT_PPB
part per billion
Definition phydat.h:116
@ UNIT_GAUSS
gauss
Definition phydat.h:97
@ UNIT_DATE
the 3 dimensions contain days, months and years
Definition phydat.h:119
@ UNIT_PH
pH
Definition phydat.h:104
@ UNIT_CD
Candela.
Definition phydat.h:109
@ UNIT_DPS
degree per second
Definition phydat.h:89
@ UNIT_T
Tesla.
Definition phydat.h:98
@ UNIT_V
Volts.
Definition phydat.h:95
@ UNIT_PPM
part per million
Definition phydat.h:115
@ UNIT_GPM3
grams per cubic meter
Definition phydat.h:121
@ UNIT_DBM
decibel-milliwatts
Definition phydat.h:99
@ UNIT_PERMILL
out of 1000
Definition phydat.h:114
@ UNIT_M3
cubic meters
Definition phydat.h:86
@ UNIT_TIME
the three dimensions contain sec, min, and hours
Definition phydat.h:118
@ UNIT_BOOL
boolean value [0|1]
Definition phydat.h:111
@ UNIT_CPM3
count per cubic meter
Definition phydat.h:123
@ UNIT_CTS
counts
Definition phydat.h:112
@ UNIT_LUX
Lux (lx)
Definition phydat.h:82
@ UNIT_F
Farad.
Definition phydat.h:101
@ UNIT_GRAM
grams - not using the SI unit (kg) here to make scale handling simpler
Definition phydat.h:91
@ UNIT_BAR
Beer?
Definition phydat.h:106
@ UNIT_OHM
Ohm.
Definition phydat.h:102
@ UNIT_M
meters
Definition phydat.h:84
Common macros and compiler attributes/pragmas configuration.
Generic data structure for expressing physical values.
Definition phydat.h:148
int8_t scale
the scale factor, 10^*scale*
Definition phydat.h:151
uint8_t unit
the (physical) unit of the data
Definition phydat.h:150
int16_t val[PHYDAT_DIM]
the 3 generic dimensions of data
Definition phydat.h:149