Go to the documentation of this file.
38 #include "mikrosdk_version.h"
41 #if mikroSDK_GET_VERSION < 20800ul
42 #include "rcu_delays.h"
48 #include "drv_digital_out.h"
49 #include "drv_digital_in.h"
50 #include "drv_i2c_master.h"
63 #define TEMPHIM_MAP_MIKROBUS( cfg, mikrobus ) \
64 cfg.scl = MIKROBUS( mikrobus, MIKROBUS_SCL ); \
65 cfg.sda = MIKROBUS( mikrobus, MIKROBUS_SDA ); \
66 cfg.int_pin = MIKROBUS( mikrobus, MIKROBUS_INT )
73 #define TEMPHIM_RETVAL uint8_t
75 #define TEMPHIM_OK 0x00
76 #define TEMPHIM_INIT_ERROR 0xFF
83 #define TEMPANDHUM_I2C_ADDRESS 0x5F
90 #define TEMPANDHUM_WHO_AM_I 0x0F
91 #define TEMPANDHUM_AV_CONF 0x10
92 #define TEMPANDHUM_CTRL_REG1 0x20
93 #define TEMPANDHUM_CTRL_REG2 0x21
94 #define TEMPANDHUM_CTRL_REG3 0x22
95 #define TEMPANDHUM_STATUS_REG 0x27
96 #define TEMPANDHUM_HUMIDITY_OUT_L 0x28
97 #define TEMPANDHUM_HUMIDITY_OUT_H 0x29
98 #define TEMPANDHUM_TEMP_OUT_L 0x2A
99 #define TEMPANDHUM_TEMP_OUT_H 0x2B
100 #define TEMPANDHUM_H0_RH_X2 0x30
101 #define TEMPANDHUM_H1_RH_X2 0x31
102 #define TEMPANDHUM_T0_DEGC_X8 0x32
103 #define TEMPANDHUM_T1_DEGC_X8 0x33
104 #define TEMPANDHUM_T1_T0_MSB 0x35
105 #define TEMPANDHUM_H0_T0_OUT_L 0x36
106 #define TEMPANDHUM_H0_T0_OUT_H 0x37
107 #define TEMPANDHUM_H1_T0_OUT_L 0x3A
108 #define TEMPANDHUM_H1_T0_OUT_H 0x3B
109 #define TEMPANDHUM_T0_OUT_L 0x3C
110 #define TEMPANDHUM_T0_OUT_H 0x3D
111 #define TEMPANDHUM_T1_OUT_L 0x3E
112 #define TEMPANDHUM_T1_OUT_H 0x3F
119 #define TEMPANDHUM_AV_CONF_DEFAULT_VALUE 0x1B
120 #define TEMPANDHUM_CTRL_REG1_DEFAULT_VALUE 0x85
121 #define TEMPANDHUM_CTRL_REG2_DEFAULT_VALUE 0x00
122 #define TEMPANDHUM_CTRL_REG3_DEFAULT_VALUE 0x00
317 #endif // _TEMPHIM_H_
void temphum_default_cfg(temphum_t *ctx)
Click Default Configuration function.
uint8_t i2c_address
Definition: temphum.h:183
int16_t h1_t0_out
Definition: temphum.h:156
uint8_t t1_deg_c_x8
Definition: temphum.h:154
void temphum_get_temp_hum(temphum_t *ctx, float *temperature, float *humidity)
Gets temperature and humidity function.
float t1_deg_c_cal
Definition: temphum.h:160
uint8_t t0_deg_c_x8
Definition: temphum.h:153
#define TEMPHIM_RETVAL
Definition: temphum.h:73
pin_name_t sda
Definition: temphum.h:174
float temphum_get_temperature(temphum_t *ctx)
Gets temperature in degrees Celsius function.
i2c_master_t i2c
Definition: temphum.h:143
int16_t t1_out
Definition: temphum.h:158
float float_t_out
Definition: temphum.h:150
float h0_rh_cal
Definition: temphum.h:161
Click configuration structure definition.
Definition: temphum.h:170
uint8_t h0_rh_x2
Definition: temphum.h:151
float float_h_out
Definition: temphum.h:149
float temphum_get_humidity(temphum_t *ctx)
Gets humidity in degrees Celsius function.
uint32_t i2c_speed
Definition: temphum.h:182
pin_name_t int_pin
Definition: temphum.h:178
void temphum_cfg_setup(temphum_cfg_t *cfg)
Config Object Initialization function.
uint16_t temphum_get_temp_data(temphum_t *ctx)
Gets temperature data function.
void temphum_generic_read(temphum_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len)
Generic read function.
uint16_t temphum_get_hum_data(temphum_t *ctx)
Gets humidity data function.
uint8_t slave_address
Definition: temphum.h:147
void temphum_generic_write(temphum_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len)
Generic write function.
float h1_rh_cal
Definition: temphum.h:162
uint8_t h1_rh_x2
Definition: temphum.h:152
TEMPHIM_RETVAL temphum_init(temphum_t *ctx, temphum_cfg_t *cfg)
Initialization function.
int16_t h0_t0_out
Definition: temphum.h:155
int16_t t0_out
Definition: temphum.h:157
digital_in_t int_pin
Definition: temphum.h:139
Click ctx object definition.
Definition: temphum.h:136
pin_name_t scl
Definition: temphum.h:173
float t0_deg_c_cal
Definition: temphum.h:159