temphum7 2.0.0.0
temphum7.h
Go to the documentation of this file.
1/*
2 * MikroSDK - MikroE Software Development Kit
3 * Copyright© 2020 MikroElektronika d.o.o.
4 *
5 * Permission is hereby granted, free of charge, to any person
6 * obtaining a copy of this software and associated documentation
7 * files (the "Software"), to deal in the Software without restriction,
8 * including without limitation the rights to use, copy, modify, merge,
9 * publish, distribute, sublicense, and/or sell copies of the Software,
10 * and to permit persons to whom the Software is furnished to do so,
11 * subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be
14 * included in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
22 * OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
33// ----------------------------------------------------------------------------
34
35#ifndef TEMPHUM7_H
36#define TEMPHUM7_H
37
42#ifdef PREINIT_SUPPORTED
43#include "preinit.h"
44#endif
45
46#ifdef MikroCCoreVersion
47 #if MikroCCoreVersion >= 1
48 #include "delays.h"
49 #endif
50#endif
51
52#include "drv_digital_out.h"
53#include "drv_i2c_master.h"
54
55// -------------------------------------------------------------- PUBLIC MACROS
65#define TEMPHUM7_MAP_MIKROBUS( cfg, mikrobus ) \
66 cfg.scl = MIKROBUS ( mikrobus, MIKROBUS_SCL ); \
67 cfg.sda = MIKROBUS ( mikrobus, MIKROBUS_SDA )
74#define TEMPHUM7_RETVAL uint8_t
75
76#define TEMPHUM7_OK 0x00
77#define TEMPHUM7_INIT_ERROR 0xFF
84#define TEMPHUM7_DEVICE_ADDRESS 0x40
91#define TEMPHUM7_HOLD_MASTER_MODE 0x00
92#define TEMPHUM7_NOHOLD_MASTER_MODE 0x01
93#define TEMPHUM7_DATA_FROM_PREVIOUS_RH_MEASUREMENT 0x02
100#define TEMPHUM7_RESET 0xFE
101#define TEMPHUM7_WRITE_RHT_USER_REGISTER_1 0xE6
102#define TEMPHUM7_READ_RHT_USER_REGISTER_1 0xE7
103#define TEMPHUM7_WRITE_HEATER_CONTROL_REGISTER 0x51
104#define TEMPHUM7_READ_HEATER_CONTROL_REGISTER 0x11
111#define TEMPHUM7_RESOLUTION_12_BIT 0x00
112#define TEMPHUM7_RESOLUTION_8_BIT 0x01
113#define TEMPHUM7_RESOLUTION_10_BIT 0x80
114#define TEMPHUM7_RESOLUTION_11_BIT 0x81
115#define TEMPHUM7_HEATER_ENABLE 0x04
116#define TEMPHUM7_HEATER_DISABLE 0x00
123#define TEMPHUM7_HEATER_CURRENT_3p09 0x00
124#define TEMPHUM7_HEATER_CURRENT_9p17 0x01
125#define TEMPHUM7_HEATER_CURRENT_15p24 0x02
126#define TEMPHUM7_HEATER_CURRENT_21p31 0x03
127#define TEMPHUM7_HEATER_CURRENT_27p39 0x04
128#define TEMPHUM7_HEATER_CURRENT_33p46 0x05
129#define TEMPHUM7_HEATER_CURRENT_39p53 0x06
130#define TEMPHUM7_HEATER_CURRENT_45p61 0x07
131#define TEMPHUM7_HEATER_CURRENT_51p68 0x08
132#define TEMPHUM7_HEATER_CURRENT_57p76 0x09
133#define TEMPHUM7_HEATER_CURRENT_63p83 0x0A
134#define TEMPHUM7_HEATER_CURRENT_69p90 0x0B
135#define TEMPHUM7_HEATER_CURRENT_75p98 0x0C
136#define TEMPHUM7_HEATER_CURRENT_82p05 0x0D
137#define TEMPHUM7_HEATER_CURRENT_88p13 0x0E
138#define TEMPHUM7_HEATER_CURRENT_94p20 0x0F
141 // End group macro
142// --------------------------------------------------------------- PUBLIC TYPES
151typedef struct
152{
153 // Modules
154
155 i2c_master_t i2c;
156
157 // ctx variable
158
160
161} temphum7_t;
162
166typedef struct
167{
168 // Communication gpio pins
169
170 pin_name_t scl;
171 pin_name_t sda;
172
173 // static variable
174
175 uint32_t i2c_speed;
176 uint8_t i2c_address;
177
179
180 // End types group
181
182// ----------------------------------------------- PUBLIC FUNCTION DECLARATIONS
183
189#ifdef __cplusplus
190extern "C"{
191#endif
192
202
212
227
238void temphum7_generic_write ( temphum7_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len );
239
250void temphum7_generic_read ( temphum7_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len );
251
260float temphum7_get_relative_humidity ( temphum7_t *ctx, uint8_t mode_data );
261
270float temphum7_get_temperature ( temphum7_t *ctx, uint8_t mode_data );
271
280void temphum7_get_electronic_serial_number ( temphum7_t *ctx, uint8_t *esn_buffer );
281
290
299
308
309
310#ifdef __cplusplus
311}
312#endif
313#endif // _TEMPHUM7_H_
314
315 // End public_function group
317
318// ------------------------------------------------------------------------- END
#define TEMPHUM7_RETVAL
Definition temphum7.h:74
void temphum7_reset(temphum7_t *ctx)
Reset.
float temphum7_get_heater_current(temphum7_t *ctx)
Heater current.
void temphum7_get_electronic_serial_number(temphum7_t *ctx, uint8_t *esn_buffer)
Electronic serial number.
uint8_t temphum7_get_firmware_revision(temphum7_t *ctx)
Firmware revision.
void temphum7_default_cfg(temphum7_t *ctx)
Click Default Configuration function.
void temphum7_generic_write(temphum7_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len)
Generic write function.
void temphum7_cfg_setup(temphum7_cfg_t *cfg)
Config Object Initialization function.
TEMPHUM7_RETVAL temphum7_init(temphum7_t *ctx, temphum7_cfg_t *cfg)
Initialization function.
float temphum7_get_temperature(temphum7_t *ctx, uint8_t mode_data)
Temerature.
void temphum7_generic_read(temphum7_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len)
Generic read function.
float temphum7_get_relative_humidity(temphum7_t *ctx, uint8_t mode_data)
Relative humidity.
Click configuration structure definition.
Definition temphum7.h:167
uint32_t i2c_speed
Definition temphum7.h:175
pin_name_t scl
Definition temphum7.h:170
pin_name_t sda
Definition temphum7.h:171
uint8_t i2c_address
Definition temphum7.h:176
Click ctx object definition.
Definition temphum7.h:152
i2c_master_t i2c
Definition temphum7.h:155
uint8_t slave_address
Definition temphum7.h:159