Go to the documentation of this file.
38 #include "drv_digital_out.h"
39 #include "drv_digital_in.h"
40 #include "drv_i2c_master.h"
52 #define TEMPHUM3_MAP_MIKROBUS( cfg, mikrobus ) \
53 cfg.scl = MIKROBUS( mikrobus, MIKROBUS_SCL ); \
54 cfg.sda = MIKROBUS( mikrobus, MIKROBUS_SDA ); \
55 cfg.addr = MIKROBUS( mikrobus, MIKROBUS_CS ); \
56 cfg.int_pin = MIKROBUS( mikrobus, MIKROBUS_INT )
64 #define TEMPHUM3_ERROR -1
71 #define TEMPHUM3_MODE_ACTIVE 0x01
72 #define TEMPHUM3_MODE_SLEEP 0x00
79 #define TEMPHUM3_REG_TEMPERATURE 0x00
80 #define TEMPHUM3_REG_HUMIDITY 0x02
81 #define TEMPHUM3_REG_INTERRUPT_DRDY 0x04
82 #define TEMPHUM3_REG_TEMPERATURE_MAX 0x05
83 #define TEMPHUM3_REG_HUMIDITY_MAX 0x06
84 #define TEMPHUM3_REG_INTERRUPT_MASK 0x07
85 #define TEMPHUM3_REG_TEMP_OFFSET_ADJUST 0x08
86 #define TEMPHUM3_REG_HUM_OFFSET_ADJUST 0x09
87 #define TEMPHUM3_REG_TEMP_THRESHOLD_HIGH 0x0A
88 #define TEMPHUM3_REG_HUM_THRESHOLD_HIGH 0x0C
89 #define TEMPHUM3_REG_TEMP_THRESHOLD_LOW 0x0B
90 #define TEMPHUM3_REG_HUM_THRESHOLD_LOW 0x0D
91 #define TEMPHUM3_REG_RST_DRDY_INT_CONF 0x0E
92 #define TEMPHUM3_REG_MEASUREMENT_CONF 0x0F
93 #define TEMPHUM3_REG_MANUFACTURER_ID 0xFC
94 #define TEMPHUM3_REG_DEVICE_ID 0xFE
101 #define TEMPHUM3_STATUS_DRDY 0x80
102 #define TEMPHUM3_STATUS_TEMP_HIGH 0x40
103 #define TEMPHUM3_STATUS_TEMP_LOW 0x20
104 #define TEMPHUM3_STATUS_HUM_HIGH 0x10
105 #define TEMPHUM3_STATUS_HUM_LOW 0x08
112 #define TEMPHUM3_MASK_DRDY 0x80
113 #define TEMPHUM3_MASK_TEMP_HIGH 0x40
114 #define TEMPHUM3_MASK_TEMP_LOW 0x20
115 #define TEMPHUM3_MASK_HUM_HIGH 0x10
116 #define TEMPHUM3_MASK_HUM_LOW 0x08
124 #define TEMPHUM3_CONF_NORMAL_MODE 0x00
125 #define TEMPHUM3_CONF_SOFT_RESET 0x80
132 #define TEMPHUM3_CONF_ODR_NO_REPEATED 0x00
133 #define TEMPHUM3_CONF_ODR_REPEATED_2MIN 0x10
134 #define TEMPHUM3_CONF_ODR_REPEATED_1MIN 0x20
135 #define TEMPHUM3_CONF_ODR_REPEATED_10SEC 0x30
136 #define TEMPHUM3_CONF_ODR_REPEATED_5SEC 0x40
137 #define TEMPHUM3_CONF_ODR_REPEATED_1SEC 0x50
138 #define TEMPHUM3_CONF_ODR_REPEATED_500MS 0x60
139 #define TEMPHUM3_CONF_ODR_REPEATED_200MS 0x70
140 #define TEMPHUM3_CONF_HEATER_OFF 0x00
141 #define TEMPHUM3_CONF_HEATER_ON 0x08
142 #define TEMPHUM3_CONF_INT_DRDY_HIGH_Z 0x00
143 #define TEMPHUM3_CONF_INT_DRDY_ENABLE 0x04
144 #define TEMPHUM3_CONF_INT_POL_LOW 0x00
145 #define TEMPHUM3_CONF_INT_POL_HIGH 0x02
146 #define TEMPHUM3_CONF_INT_MODE_SENSITIVE 0x00
147 #define TEMPHUM3_CONF_INT_MODE_COMPARATOR 0x01
154 #define TEMPHUM3_MCONF_TEMP_RES_14BIT 0x00
155 #define TEMPHUM3_MCONF_TEMP_RES_11BIT 0x40
156 #define TEMPHUM3_MCONF_TEMP_RES_9BIT 0x80
157 #define TEMPHUM3_MCONF_HUM_RES_14BIT 0x00
158 #define TEMPHUM3_MCONF_HUM_RES_11BIT 0x10
159 #define TEMPHUM3_MCONF_HUM_RES_9BIT 0x20
160 #define TEMPHUM3_MCONF_HUM_TEMP 0x00
161 #define TEMPHUM3_MCONF_TEMP_ONLY 0x02
162 #define TEMPHUM3_MCONF_HUM_ONLY 0x04
163 #define TEMPHUM3_MCONF_MEAS_START 0x01
164 #define TEMPHUM3_MCONF_MEAS_NO_ACTION 0x00
433 #endif // _TEMPHUM3_H_
uint16_t temphum3_get_id(temphum3_t *ctx)
Get ID function.
float temphum3_get_max_hum(temphum3_t *ctx)
Get maximum humidity function.
pin_name_t int_pin
Definition: temphum3.h:204
void temphum3_set_low_temp(temphum3_t *ctx, uint8_t temp_data)
Set low temperature function.
void temphum3_set_mode(temphum3_t *ctx, uint8_t value)
Set measurement mode function.
pin_name_t sda
Definition: temphum3.h:200
void temphum3_set_measurement(temphum3_t *ctx, uint8_t value)
Set measurement function.
float temphum3_get_humidity(temphum3_t *ctx)
Get humidity function.
void temphum3_set_configuration(temphum3_t *ctx, uint8_t value)
Set configuration function.
void temphum3_set_low_hum(temphum3_t *ctx, uint8_t hum_data)
Set low humidity function.
pin_name_t scl
Definition: temphum3.h:199
Click ctx object definition.
Definition: temphum3.h:178
uint8_t temphum3_get_interrupt_mask(temphum3_t *ctx, uint8_t mask)
Get interrupt mask function.
float temphum3_get_temperature(temphum3_t *ctx)
Get temperature function.
void temphum3_generic_write(temphum3_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len)
Generic write function.
pin_name_t addr
Definition: temphum3.h:203
uint8_t temphum3_get_status_interrupt(temphum3_t *ctx, uint8_t mask)
Get interrupt status function.
uint8_t slave_address
Definition: temphum3.h:189
i2c_master_t i2c
Definition: temphum3.h:186
void temphum3_set_high_temp(temphum3_t *ctx, uint8_t temp_data)
Set high temperature function.
void temphum3_generic_read(temphum3_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len)
Generic read function.
uint16_t temphum3_get_manufacturer_id(temphum3_t *ctx)
Get manufacturer's ID function.
Click configuration structure definition.
Definition: temphum3.h:197
digital_in_t int_pin
Definition: temphum3.h:183
err_t temphum3_init(temphum3_t *ctx, temphum3_cfg_t *cfg)
Initialization function.
void temphum3_cfg_setup(temphum3_cfg_t *cfg)
Config Object Initialization function.
uint32_t i2c_speed
Definition: temphum3.h:207
digital_out_t addr
Definition: temphum3.h:180
void temphum3_default_cfg(temphum3_t *ctx)
Click Default Configuration function.
void temphum3_set_offset(temphum3_t *ctx, uint8_t reg, uint8_t value)
Set offset function.
void temphum3_set_high_hum(temphum3_t *ctx, uint8_t hum_data)
Set high humidity function.
uint8_t i2c_address
Definition: temphum3.h:208
float temphum3_get_max_temp(temphum3_t *ctx)
Get maximum temperature function.