Loading...
Searching...
No Matches
phydat.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2015 Freie Universität Berlin
3 *
4 * This file is subject to the terms and conditions of the GNU Lesser
5 * General Public License v2.1. See the file LICENSE in the top level
6 * directory for more details.
7 */
8
9#pragma once
10
36
37#include <stddef.h>
38#include <stdint.h>
39#include <sys/types.h>
40
41#include "modules.h"
42
43#ifdef __cplusplus
44extern "C" {
45#endif
46
58#define PHYDAT_DIM (3U)
59
63#define PHYDAT_SCALE_STR_MAXLEN (sizeof("*E-128\0"))
64
76enum {
77 /* generic values */
80 /* temperature */
84 /* illuminance */
86 /* dimension */
90 /* kinetic */
93 /* weight */
96 /* electricity */
106 /* electrochemical */
108 /* pressure */
111 /* light */
113 /* logical */
120 /* aggregate values */
123 /* mass concentration */
125 /* number concentration */
127 /* extend this list as needed */
128};
129
151typedef struct {
152 int16_t val[PHYDAT_DIM];
153 uint8_t unit;
154 int8_t scale;
155} phydat_t;
156
160#define PHYDAT_MIN (INT16_MIN)
161
165#define PHYDAT_MAX (INT16_MAX)
166
173void phydat_dump(phydat_t *data, uint8_t dim);
174
180void phydat_unit_print(uint8_t unit);
181
198ssize_t phydat_unit_write(char *dest, size_t max_size, uint8_t unit);
199
211char phydat_prefix_from_scale(int8_t scale);
212
243void phydat_fit(phydat_t *dat, const int32_t *values, unsigned int dim);
244
288size_t phydat_to_json(const phydat_t *data, size_t dim, char *buf);
289
300int64_t phydat_date_time_to_unix(phydat_t *date, phydat_t *time, int32_t offset_seconds);
301
315int64_t phydat_unix(int16_t year, int16_t month, int16_t day,
316 int16_t hour, int16_t minute, int16_t second,
317 int32_t offset);
318
319#ifdef __cplusplus
320}
321#endif
322
void phydat_unit_print(uint8_t unit)
Print a unit.
#define PHYDAT_DIM
The fixed number of dimensions we work with.
Definition phydat.h:58
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:88
@ UNIT_TEMP_C
degree Celsius
Definition phydat.h:81
@ UNIT_G_FORCE
gravitational force equivalent
Definition phydat.h:91
@ UNIT_W
Watt.
Definition phydat.h:99
@ UNIT_COULOMB
coulomb
Definition phydat.h:103
@ UNIT_PA
Pascal.
Definition phydat.h:110
@ UNIT_A
Ampere.
Definition phydat.h:97
@ UNIT_PERCENT
out of 100
Definition phydat.h:116
@ UNIT_TEMP_K
Kelvin.
Definition phydat.h:83
@ UNIT_NONE
data has no physical unit
Definition phydat.h:79
@ UNIT_UNDEF
unit undefined
Definition phydat.h:78
@ UNIT_TEMP_F
degree Fahrenheit
Definition phydat.h:82
@ UNIT_PPB
part per billion
Definition phydat.h:119
@ UNIT_GAUSS
gauss
Definition phydat.h:100
@ UNIT_DATE
the 3 dimensions contain days, months and years
Definition phydat.h:122
@ UNIT_PH
pH
Definition phydat.h:107
@ UNIT_CD
Candela.
Definition phydat.h:112
@ UNIT_DPS
degree per second
Definition phydat.h:92
@ UNIT_T
Tesla.
Definition phydat.h:101
@ UNIT_V
Volts.
Definition phydat.h:98
@ UNIT_PPM
part per million
Definition phydat.h:118
@ UNIT_GPM3
grams per cubic meter
Definition phydat.h:124
@ UNIT_DBM
decibel-milliwatts
Definition phydat.h:102
@ UNIT_PERMILL
out of 1000
Definition phydat.h:117
@ UNIT_M3
cubic meters
Definition phydat.h:89
@ UNIT_TIME
the three dimensions contain sec, min, and hours
Definition phydat.h:121
@ UNIT_BOOL
boolean value [0|1]
Definition phydat.h:114
@ UNIT_CPM3
count per cubic meter
Definition phydat.h:126
@ UNIT_CTS
counts
Definition phydat.h:115
@ UNIT_LUX
Lux (lx)
Definition phydat.h:85
@ UNIT_F
Farad.
Definition phydat.h:104
@ UNIT_GRAM
grams - not using the SI unit (kg) here to make scale handling simpler
Definition phydat.h:94
@ UNIT_BAR
Beer?
Definition phydat.h:109
@ UNIT_OHM
Ohm.
Definition phydat.h:105
@ UNIT_M
meters
Definition phydat.h:87
Common macros and compiler attributes/pragmas configuration.
Generic data structure for expressing physical values.
Definition phydat.h:151
int8_t scale
the scale factor, 10^*scale*
Definition phydat.h:154
uint8_t unit
the (physical) unit of the data
Definition phydat.h:153
int16_t val[PHYDAT_DIM]
the 3 generic dimensions of data
Definition phydat.h:152