Go to the documentation of this file.
42 #ifdef PREINIT_SUPPORTED
46 #ifdef MikroCCoreVersion
47 #if MikroCCoreVersion >= 1
52 #include "drv_digital_out.h"
53 #include "drv_i2c_master.h"
65 #define TEMPHUM8_MAP_MIKROBUS( cfg, mikrobus ) \
66 cfg.scl = MIKROBUS( mikrobus, MIKROBUS_SCL ); \
67 cfg.sda = MIKROBUS( mikrobus, MIKROBUS_SDA )
74 #define TEMPHUM8_RETVAL uint8_t
76 #define TEMPHUM8_OK 0x00
77 #define TEMPHUM8_INIT_ERROR 0xFF
84 #define TEMPHUM8_TEMP_MEASUREMENT_HOLD_MODE 0xE3
85 #define TEMPHUM8_HUM_MEASUREMENT_HOLD_MODE 0xE5
86 #define TEMPHUM8_TEMP_MEASUREMENT_NO_HOLD_MODE 0xF3
87 #define TEMPHUM8_HUM_MEASUREMENT_NO_HOLD_MODE 0xF5
88 #define TEMPHUM8_USER_REGISTER_WRITE 0xE6
89 #define TEMPHUM8_USER_REGISTER_READ 0xE7
90 #define TEMPHUM8_SOFT_RESET 0xFE
97 #define TEMPHUM8_CFG_RESOLUTION_H12_T14 0x00
98 #define TEMPHUM8_CFG_RESOLUTION_H8_T12 0x01
99 #define TEMPHUM8_CFG_RESOLUTION_H10_T13 0x80
100 #define TEMPHUM8_CFG_RESOLUTION_H11_T11 0x81
101 #define TEMPHUM8_CFG_END_OF_BATTERY_LESS_THAN_2_25V 0x40
102 #define TEMPHUM8_CFG_END_OF_BATTERY_BIGGER_THAN_2_25V 0x00
103 #define TEMPHUM8_CFG_ENABLE_ON_CHIP_HEATER 0x00
104 #define TEMPHUM8_CFG_DISABLE_OTP_RELOAD 0x02
111 #define TEMPHUM8_DEVICE_SLAVE_ADDRESS 0x40
118 #define TEMPHUM8_TEMPERATURE_IN_CELSIUS 0x00
119 #define TEMPHUM8_TEMPERATURE_IN_KELVIN 0x01
120 #define TEMPHUM8_TEMPERATURE_IN_FARENHAJT 0x02
279 #endif // _TEMPHUM8_H_
void temphum8_generic_write(temphum8_t *ctx, uint8_t reg, uint8_t *data_buffer, uint8_t len)
Generic write function.
uint8_t measure_res
Definition: temphum8.h:160
void temphum8_cfg_setup(temphum8_cfg_t *cfg)
Config Object Initialization function.
float temphum8_get_humidity_data(temphum8_t *ctx)
Relative Huminidy data.
i2c_master_t i2c
Definition: temphum8.h:137
Click ctx object definition.
Definition: temphum8.h:134
void temphum8_software_reset(temphum8_t *ctx)
Functions for device software reset.
pin_name_t scl
Definition: temphum8.h:153
void temphum8_generic_read(temphum8_t *ctx, uint8_t reg, uint8_t *data_buffer, uint8_t len)
Generic read function.
pin_name_t sda
Definition: temphum8.h:154
Click configuration structure definition.
Definition: temphum8.h:150
#define TEMPHUM8_RETVAL
Definition: temphum8.h:74
uint8_t slave_address
Definition: temphum8.h:141
uint32_t i2c_speed
Definition: temphum8.h:158
TEMPHUM8_RETVAL temphum8_init(temphum8_t *ctx, temphum8_cfg_t *cfg)
Initialization function.
void temphum8_set_cfg_register(temphum8_t *ctx, uint8_t cfg)
Configuration device for measurement.
uint8_t measure_resolution
Definition: temphum8.h:142
float temphum8_get_temperature_data(temphum8_t *ctx, uint8_t temp_format)
Temperature data.
void temphum8_default_cfg(temphum8_t *ctx)
Click Default Configuration function.
uint8_t i2c_address
Definition: temphum8.h:159