LibDriver SGP41
Loading...
Searching...
No Matches
driver_sgp41.h
Go to the documentation of this file.
1
36
37#ifndef DRIVER_SGP41_H
38#define DRIVER_SGP41_H
39
40#include <stdio.h>
41#include <stdint.h>
42#include <string.h>
43
44#ifdef __cplusplus
45extern "C"{
46#endif
47
53
58
62typedef struct sgp41_handle_s
63{
64 uint8_t (*iic_init)(void);
65 uint8_t (*iic_deinit)(void);
66 uint8_t (*iic_write_cmd)(uint8_t addr, uint8_t *buf, uint16_t len);
67 uint8_t (*iic_read_cmd)(uint8_t addr, uint8_t *buf, uint16_t len);
68 void (*delay_ms)(uint32_t ms);
69 void (*debug_print)(const char *const fmt, ...);
70 uint8_t inited;
72
88
92
99
106#define DRIVER_SGP41_LINK_INIT(HANDLE, STRUCTURE) memset(HANDLE, 0, sizeof(STRUCTURE))
107
114#define DRIVER_SGP41_LINK_IIC_INIT(HANDLE, FUC) (HANDLE)->iic_init = FUC
115
122#define DRIVER_SGP41_LINK_IIC_DEINIT(HANDLE, FUC) (HANDLE)->iic_deinit = FUC
123
130#define DRIVER_SGP41_LINK_IIC_WRITE_COMMAND(HANDLE, FUC) (HANDLE)->iic_write_cmd = FUC
131
138#define DRIVER_SGP41_LINK_IIC_READ_COMMAND(HANDLE, FUC) (HANDLE)->iic_read_cmd = FUC
139
146#define DRIVER_SGP41_LINK_DELAY_MS(HANDLE, FUC) (HANDLE)->delay_ms = FUC
147
154#define DRIVER_SGP41_LINK_DEBUG_PRINT(HANDLE, FUC) (HANDLE)->debug_print = FUC
155
159
166
175uint8_t sgp41_info(sgp41_info_t *info);
176
187uint8_t sgp41_init(sgp41_handle_t *handle);
188
200uint8_t sgp41_deinit(sgp41_handle_t *handle);
201
213uint8_t sgp41_get_execute_conditioning(sgp41_handle_t *handle, uint16_t *sraw_voc);
214
229uint8_t sgp41_get_measure_raw(sgp41_handle_t *handle, uint16_t raw_humidity, uint16_t raw_temperature,
230 uint16_t *sraw_voc, uint16_t *sraw_nox);
231
244uint8_t sgp41_get_measure_raw_without_compensation(sgp41_handle_t *handle, uint16_t *sraw_voc, uint16_t *sraw_nox);
245
258uint8_t sgp41_humidity_convert_to_register(sgp41_handle_t *handle, float rh, uint16_t *reg);
259
272uint8_t sgp41_temperature_convert_to_register(sgp41_handle_t *handle, float temp, uint16_t *reg);
273
285uint8_t sgp41_get_measure_test(sgp41_handle_t *handle, uint16_t *result);
286
297uint8_t sgp41_soft_reset(sgp41_handle_t *handle);
298
310
322uint8_t sgp41_get_serial_id(sgp41_handle_t *handle, uint16_t id[3]);
323
327
334
348uint8_t sgp41_set_reg(sgp41_handle_t *handle, uint16_t reg, uint8_t *buf, uint16_t len);
349
363uint8_t sgp41_get_reg(sgp41_handle_t *handle, uint16_t reg, uint8_t *buf, uint16_t len);
364
368
372
373#ifdef __cplusplus
374}
375#endif
376
377#endif
uint8_t sgp41_temperature_convert_to_register(sgp41_handle_t *handle, float temp, uint16_t *reg)
convert the temperature to the register data
uint8_t sgp41_get_measure_raw(sgp41_handle_t *handle, uint16_t raw_humidity, uint16_t raw_temperature, uint16_t *sraw_voc, uint16_t *sraw_nox)
get the measure raw result
uint8_t sgp41_get_execute_conditioning(sgp41_handle_t *handle, uint16_t *sraw_voc)
get execute conditioning
uint8_t sgp41_info(sgp41_info_t *info)
get chip information
uint8_t sgp41_deinit(sgp41_handle_t *handle)
close the chip
struct sgp41_info_s sgp41_info_t
sgp41 information structure definition
uint8_t sgp41_get_measure_test(sgp41_handle_t *handle, uint16_t *result)
get the chip measure test
uint8_t sgp41_turn_heater_off(sgp41_handle_t *handle)
turn heater off
uint8_t sgp41_soft_reset(sgp41_handle_t *handle)
soft reset the chip
struct sgp41_handle_s sgp41_handle_t
sgp41 handle structure definition
uint8_t sgp41_get_serial_id(sgp41_handle_t *handle, uint16_t id[3])
get the chip serial id
uint8_t sgp41_init(sgp41_handle_t *handle)
initialize the chip
uint8_t sgp41_get_measure_raw_without_compensation(sgp41_handle_t *handle, uint16_t *sraw_voc, uint16_t *sraw_nox)
get the measure raw result without compensation
uint8_t sgp41_humidity_convert_to_register(sgp41_handle_t *handle, float rh, uint16_t *reg)
convert the humidity to the register data
uint8_t sgp41_get_reg(sgp41_handle_t *handle, uint16_t reg, uint8_t *buf, uint16_t len)
get the chip register
uint8_t sgp41_set_reg(sgp41_handle_t *handle, uint16_t reg, uint8_t *buf, uint16_t len)
set the chip register
sgp41 handle structure definition
void(* delay_ms)(uint32_t ms)
void(* debug_print)(const char *const fmt,...)
uint8_t(* iic_init)(void)
uint8_t(* iic_read_cmd)(uint8_t addr, uint8_t *buf, uint16_t len)
uint8_t(* iic_deinit)(void)
uint8_t(* iic_write_cmd)(uint8_t addr, uint8_t *buf, uint16_t len)
sgp41 information structure definition
float temperature_max
float supply_voltage_max_v
uint32_t driver_version
float temperature_min
float max_current_ma
char manufacturer_name[32]
float supply_voltage_min_v
char interface[8]
char chip_name[32]