This repository has been archived by the owner on Jun 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
svm40_i2c.h
279 lines (260 loc) · 9.86 KB
/
svm40_i2c.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
/*
* THIS FILE IS AUTOMATICALLY GENERATED
*
* I2C-Generator: 0.2.0
* Yaml Version: 0.3.0
* Template Version: 0.7.0
*/
/*
* Copyright (c) 2021, Sensirion AG
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* * Neither the name of Sensirion AG nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef SVM40_I2C_H
#define SVM40_I2C_H
#ifdef __cplusplus
extern "C" {
#endif
#include "sensirion_config.h"
/**
* svm40_start_continuous_measurement() - Starts continuous measurement in
* polling mode.
*
* @note This command is only available in idle mode.
*
* @return 0 on success, an error code otherwise
*/
int16_t svm40_start_continuous_measurement(void);
/**
* svm40_stop_measurement() - Stops the measurement mode and returns to idle
* mode.
*
* @note This command is only available in measurement mode.
*
* @return 0 on success, an error code otherwise
*/
int16_t svm40_stop_measurement(void);
/**
* svm40_read_measured_values_as_integers() - Returns the new measurement
* results as integers.
*
* @note This command is only available in measurement mode. The firmware
* updates the measurement values every second. Polling data with a faster
* sampling rate will return the same values. The first measurement is available
* 1 second after the start measurement command is issued. Any readout prior to
* this will return zero initialized values.
*
* @param voc_index VOC algorithm output with a scaling value of 10.
*
* @param humidity Compensated ambient humidity in % RH with a scaling factor of
* 100.
*
* @param temperature Compensated ambient temperature in degrees celsius with a
* scaling of 200.
*
* @return 0 on success, an error code otherwise
*/
int16_t svm40_read_measured_values_as_integers(int16_t* voc_index,
int16_t* humidity,
int16_t* temperature);
/**
* svm40_read_measured_values_as_integers_with_raw_parameters() - Returns the
* new measurement results as integers with raw values added.
*
* @note This command is only available in measurement mode. The firmware
* updates the measurement values every second. Polling data with a faster
* sampling rate will return the same values. The first measurement is available
* 1 second after the start measurement command is issued. Any readout prior to
* this will return zero initialized values.
*
* @param voc_index VOC algorithm output with a scaling value of 10.
*
* @param humidity Compensated ambient humidity in % RH with a scaling factor of
* 100.
*
* @param temperature Compensated ambient temperature in degrees celsius with a
* scaling of 200.
*
* @param raw_voc_ticks Raw VOC output ticks as read from the SGP sensor.
*
* @param raw_humidity Uncompensated raw humidity in % RH as read from the SHT40
* with a scaling factor of 100.
*
* @param raw_temperature Uncompensated raw temperature in degrees celsius as
* read from the SHT40 with a scaling of 200.
*
* @return 0 on success, an error code otherwise
*/
int16_t svm40_read_measured_values_as_integers_with_raw_parameters(
int16_t* voc_index, int16_t* humidity, int16_t* temperature,
uint16_t* raw_voc_ticks, int16_t* raw_humidity, int16_t* raw_temperature);
/**
* svm40_set_temperature_offset_for_rht_measurements() - Sets the T-Offset for
* the temperature compensation of the RHT algorithm.
*
* @note Only available for SVM40 firmware versions >= 2.0. Please update your
* SVM40 module if necessary.
*
* @param t_offset Temperature offset in degrees celsius with a scaling of 200.
*
* @return 0 on success, an error code otherwise
*/
int16_t svm40_set_temperature_offset_for_rht_measurements(int16_t t_offset);
/**
* svm40_get_temperature_offset_for_rht_measurements() - Gets the T-Offset for
* the temperature compensation of the RHT algorithm.
*
* @note Only available for SVM40 firmware versions >= 2.0. Please update your
* SVM40 module if necessary.
*
* @param t_offset Temperature offset in degrees celsius with a scaling of 200.
*
* @return 0 on success, an error code otherwise
*/
int16_t svm40_get_temperature_offset_for_rht_measurements(int16_t* t_offset);
/**
* svm40_set_voc_algorithm_tuning_parameters() - Sets the parameters to
* customize the VOC algorithm. This command is only available in idle mode.
*
* @param voc_index_offset VOC index representing typical (average) conditions.
* The default value is 100.
*
* @param learning_time_hours Time constant of long-term estimator in hours.
* Past events will be forgotten after about twice the learning time. The
* default value is 12 hours.
*
* @param gating_max_duration_minutes Maximum duration of gating in minutes
* (freeze of estimator during high VOC index signal). Set to zero to disable
* the gating. The default value is 180 minutes.
*
* @param std_initial Initial estimate for standard deviation. Lower value
* boosts events during initial learning period, but may result in larger
* device-to-device variations. The default value is 50.
*
* @return 0 on success, an error code otherwise
*/
int16_t svm40_set_voc_algorithm_tuning_parameters(
int16_t voc_index_offset, int16_t learning_time_hours,
int16_t gating_max_duration_minutes, int16_t std_initial);
/**
* svm40_get_voc_algorithm_tuning_parameters() - Gets the currently set
* parameters for customizing the VOC algorithm
*
* @param voc_index_offset VOC index representing typical (average) conditions.
* The default value is 100.
*
* @param learning_time_hours Time constant of long-term estimator in hours.
* Past events will be forgotten after about twice the learning time. The
* default value is 12 hours.
*
* @param gating_max_duration_minutes Maximum duration of gating in minutes
* (freeze of estimator during high VOC index signal). Zero disables the gating.
* The default value is 180 minutes.
*
* @param std_initial Initial estimate for standard deviation. Lower value
* boosts events during initial learning period, but may result in larger
* device-to-device variations. The default value is 50.
*
* @return 0 on success, an error code otherwise
*/
int16_t svm40_get_voc_algorithm_tuning_parameters(
int16_t* voc_index_offset, int16_t* learning_time_hours,
int16_t* gating_max_duration_minutes, int16_t* std_initial);
/**
* svm40_store_nv_data() - Stores all algorithm parameters to the non-volatile
* memory.
*
* @return 0 on success, an error code otherwise
*/
int16_t svm40_store_nv_data(void);
/**
* svm40_set_voc_algorithm_state() - Sets the VOC algorithm state. This command
* is only available in idle mode.
*
* @param state Current VOC algorithm state.
*
* @return 0 on success, an error code otherwise
*/
int16_t svm40_set_voc_algorithm_state(const uint8_t* state, uint8_t state_size);
/**
* svm40_get_voc_algorithm_state() - Gets the current VOC algorithm state.
*
* @param state Current VOC algorithm state.
*
* @return 0 on success, an error code otherwise
*/
int16_t svm40_get_voc_algorithm_state(uint8_t* state, uint8_t state_size);
/**
* svm40_get_version() - Gets the version information for the hardware, firmware
* and protocol.
*
* @param firmware_major Firmware major version number.
*
* @param firmware_minor Firmware minor version number.
*
* @param firmware_debug Firmware debug state. If the debug state is set, the
* firmware is in development.
*
* @param hardware_major Hardware major version number.
*
* @param hardware_minor Hardware minor version number.
*
* @param protocol_major Protocol major version number.
*
* @param protocol_minor Protocol minor version number.
*
* @param padding Padding byte, ignore this.
*
* @return 0 on success, an error code otherwise
*/
int16_t svm40_get_version(uint8_t* firmware_major, uint8_t* firmware_minor,
bool* firmware_debug, uint8_t* hardware_major,
uint8_t* hardware_minor, uint8_t* protocol_major,
uint8_t* protocol_minor);
/**
* svm40_get_serial_number() - Gets the serial number from the device.
*
* @param serial_number Ascii string containing the serial number. The string
* has the null-termination character included.
*
* @return 0 on success, an error code otherwise
*/
int16_t svm40_get_serial_number(unsigned char* serial_number,
uint8_t serial_number_size);
/**
* svm40_device_reset() - Executs a reset on the device.
*
* @note The device will reply before executing the reset.
*
* @return 0 on success, an error code otherwise
*/
int16_t svm40_device_reset(void);
#ifdef __cplusplus
}
#endif
#endif /* SVM40_I2C_H */