pht 2.0.0.0
pht.h
Go to the documentation of this file.
1/****************************************************************************
2** Copyright (C) 2020 MikroElektronika d.o.o.
3** Contact: https://www.mikroe.com/contact
4**
5** Permission is hereby granted, free of charge, to any person obtaining a copy
6** of this software and associated documentation files (the "Software"), to deal
7** in the Software without restriction, including without limitation the rights
8** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9** copies of the Software, and to permit persons to whom the Software is
10** furnished to do so, subject to the following conditions:
11** The above copyright notice and this permission notice shall be
12** included in all copies or substantial portions of the Software.
13**
14** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
16** OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
19** OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20** USE OR OTHER DEALINGS IN THE SOFTWARE.
21****************************************************************************/
22
28#ifndef PHT_H
29#define PHT_H
30
31#ifdef __cplusplus
32extern "C"{
33#endif
34
39#ifdef PREINIT_SUPPORTED
40#include "preinit.h"
41#endif
42
43#ifdef MikroCCoreVersion
44 #if MikroCCoreVersion >= 1
45 #include "delays.h"
46 #endif
47#endif
48
49#include "drv_digital_out.h"
50#include "drv_digital_in.h"
51#include "drv_i2c_master.h"
52
73#define PHT_RH_CMD_RESET 0xFE
74#define PHT_RH_CMD_WRITE_USER_REG 0xE6
75#define PHT_RH_CMD_READ_USER_REG 0xE7
76#define PHT_RH_MEASURE_RH_HOLD 0xE5
77#define PHT_RH_MEASURE_RH_NO_HOLD 0xF5
78
83#define PHT_PT_CMD_RESET 0x1E
84#define PHT_PT_CMD_ADC_READ 0x00
85#define PHT_PT_CMD_PROM_READ_P_T_START 0xA0
86#define PHT_PT_CMD_PROM_READ_P_T_END 0xAE
87
88#define PHT_PT_CMD_RATIO_256 0x00
89#define PHT_PT_CMD_RATIO_512 0x01
90#define PHT_PT_CMD_RATIO_1024 0x02
91#define PHT_PT_CMD_RATIO_2048 0x03
92#define PHT_PT_CMD_RATIO_4096 0x04
93#define PHT_PT_CMD_RATIO_8192 0x05
94
99#define PHT_PT_MANUFACTURER_RESERVED 0x00
100#define PHT_PT_C1_SENS 0x01
101#define PHT_PT_C2_OFF 0x02
102#define PHT_PT_C3_TCS 0x03
103#define PHT_PT_C4_TCO 0x04
104#define PHT_PT_C5_TREF 0x05
105#define PHT_PT_C6_TEMPSENS 0x06
106#define PHT_PT_CRC 0x07
107
112#define PHT_SENSOR_TYPE_RH 0x00
113#define PHT_SENSOR_TYPE_PT 0x01
114
120#define PHT_I2C_SLAVE_ADDR_RH 0x40
121#define PHT_I2C_SLAVE_ADDR_P_AND_T 0x76
122
123
124 // pht_set
125
140#define PHT_MAP_MIKROBUS( cfg, mikrobus ) \
141 cfg.scl = MIKROBUS( mikrobus, MIKROBUS_SCL ); \
142 cfg.sda = MIKROBUS( mikrobus, MIKROBUS_SDA )
143
144 // pht_map
145 // pht
146
151typedef struct
152{
153 // Modules
154 i2c_master_t i2c;
156 // I2C slave address
159} pht_t;
160
165typedef struct
166{
167 pin_name_t scl;
168 pin_name_t sda;
170 uint32_t i2c_speed;
171 uint8_t i2c_address;
173} pht_cfg_t;
174
179typedef enum
180{
182 PHT_ERROR = -1
183
185
202
216err_t pht_init ( pht_t *ctx, pht_cfg_t *cfg );
217
232err_t pht_generic_write ( pht_t *ctx, uint8_t reg, uint8_t *tx_buf, uint8_t tx_len );
233
248err_t pht_generic_read ( pht_t *ctx, uint8_t reg, uint8_t *rx_buf, uint8_t rx_len );
249
250
262void pht_set_command ( pht_t *ctx, uint8_t sensor_type, uint8_t cmd );
263
274void pht_soft_reset ( pht_t *ctx, uint8_t sensor_type );
275
290uint8_t pht_get_prom ( pht_t *ctx, uint8_t sel_data, uint32_t *tx_data );
291
307uint8_t pht_set_ratio ( pht_t *ctx, uint8_t temp_ratio, uint8_t press_ratio );
308
320void pht_reset ( pht_t *ctx );
321
332void pht_write_user_register ( pht_t *ctx, uint8_t tx_data );
333
344
355uint8_t pht_measure_rh ( pht_t *ctx, uint16_t *rh_data );
356
372
386
387#ifdef __cplusplus
388}
389#endif
390#endif // PHT_H
391
392 // pht
393
394// ------------------------------------------------------------------------ END
void pht_get_temperature_pressure(pht_t *ctx, float *temperature, float *pressure)
Get temperature and pressure function.
uint8_t pht_read_user_register(pht_t *ctx)
Raed User Register function.
void pht_soft_reset(pht_t *ctx, uint8_t sensor_type)
Soft Reset function.
uint8_t pht_get_prom(pht_t *ctx, uint8_t sel_data, uint32_t *tx_data)
Calibration Data Read function.
void pht_get_relative_humidity(pht_t *ctx, float *humidity)
Get humidity function.
err_t pht_generic_read(pht_t *ctx, uint8_t reg, uint8_t *rx_buf, uint8_t rx_len)
PHT I2C reading function.
uint8_t pht_set_ratio(pht_t *ctx, uint8_t temp_ratio, uint8_t press_ratio)
Set Ratio function.
err_t pht_init(pht_t *ctx, pht_cfg_t *cfg)
PHT initialization function.
void pht_set_command(pht_t *ctx, uint8_t sensor_type, uint8_t cmd)
Set Command function.
err_t pht_generic_write(pht_t *ctx, uint8_t reg, uint8_t *tx_buf, uint8_t tx_len)
PHT I2C writing function.
void pht_reset(pht_t *ctx)
Reset function.
uint8_t pht_measure_rh(pht_t *ctx, uint16_t *rh_data)
Measure RH function.
void pht_write_user_register(pht_t *ctx, uint8_t tx_data)
Write User Register function.
void pht_cfg_setup(pht_cfg_t *cfg)
PHT configuration object setup function.
float humidity
Definition main.c:33
float pressure
Definition main.c:32
float temperature
Definition main.c:34
pht_return_value_t
PHT Click return value data.
Definition pht.h:180
@ PHT_ERROR
Definition pht.h:182
@ PHT_OK
Definition pht.h:181
PHT Click configuration object.
Definition pht.h:166
uint32_t i2c_speed
Definition pht.h:170
pin_name_t scl
Definition pht.h:167
pin_name_t sda
Definition pht.h:168
uint8_t i2c_address
Definition pht.h:171
PHT Click context object.
Definition pht.h:152
i2c_master_t i2c
Definition pht.h:154
uint8_t slave_address
Definition pht.h:157