uv2 2.0.0.0
uv2.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 UV2_H
36#define UV2_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_digital_in.h"
54#include "drv_i2c_master.h"
55
56// -------------------------------------------------------------- PUBLIC MACROS
66#define UV2_MAP_MIKROBUS( cfg, mikrobus ) \
67 cfg.scl = MIKROBUS( mikrobus, MIKROBUS_SCL ); \
68 cfg.sda = MIKROBUS( mikrobus, MIKROBUS_SDA )
75#define UV2_RETVAL uint8_t
76
77#define UV2_OK 0x00
78#define UV2_INIT_ERROR 0xFF
85#define UV2_I2C_ADDRESS 0x10
86#define UV2_DEV_ID 0x26
93#define UV2_REG_CONF 0x00
94#define UV2_REG_UVA 0x07
95#define UV2_REG_UVB 0x09
96#define UV2_REG_UVCOMP1 0x0A
97#define UV2_REG_UVCOMP2 0x0B
98#define UV2_REG_DEVID 0x0C
105#define UV2_CONF_IT_50MS 0x00
106#define UV2_CONF_IT_100MS 0x10
107#define UV2_CONF_IT_200MS 0x20
108#define UV2_CONF_IT_400MS 0x30
109#define UV2_CONF_IT_800MS 0x40
110#define UV2_CONF_IT_MASK 0x8F
117#define UV2_CONF_HD_NORM 0x00
118#define UV2_CONF_HD_HIGH 0x08
125#define UV2_CONF_MODE_TRIG 0x00
126#define UV2_CONF_ONE_TRIG 0x04
133#define UV2_CONF_AF_OFF 0x00
134#define UV2_CONF_AF_ON 0x02
141#define UV2_CONF_SD_PWR_ON 0x00
142#define UV2_CONF_SD_PWR_OFF 0x01
149#define UV2_UVI_UVA_VIS_COEFF 3.33
150#define UV2_UVI_UVA_IR_COEFF 2.50
151#define UV2_UVI_UVB_VIS_COEFF 3.66
152#define UV2_UVI_UVB_IR_COEFF 2.75
159#define UV2_UVI_UVA_RESPONSE 0.00110
160#define UV2_UVI_UVB_RESPONSE 0.00125
167#define UV2_WRITE_MSB_BITS 0x00
170 // End group macro
171// --------------------------------------------------------------- PUBLIC TYPES
180typedef struct
181{
182 // Modules
183
184 i2c_master_t i2c;
185
186 // ctx variable
187
189
190} uv2_t;
191
195typedef struct
196{
197 // Communication gpio pins
198
199 pin_name_t scl;
200 pin_name_t sda;
201
202 // static variable
203
204 uint32_t i2c_speed;
205 uint8_t i2c_address;
206
207} uv2_cfg_t;
208
209 // End types group
210// ----------------------------------------------- PUBLIC FUNCTION DECLARATIONS
211
217#ifdef __cplusplus
218extern "C"{
219#endif
220
230
240
248void uv2_default_cfg ( uv2_t *ctx );
249
260void uv2_generic_write ( uv2_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len );
261
272void uv2_generic_read ( uv2_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len );
273
284void uv2_write_data ( uv2_t *ctx, uint8_t reg_address, uint8_t write_data );
285
295uint16_t uv2_read_data ( uv2_t *ctx, uint8_t reg_address );
296
306void uv2_set_config ( uv2_t *ctx, uint8_t config_value );
307
317void uv2_set_integration_time ( uv2_t *ctx, uint16_t intg_time );
318
328
338
348
358void uv2_set_active_force_mode ( uv2_t *ctx, uint8_t force_mode );
359
369
379
387uint8_t uv2_check_id ( uv2_t *ctx );
388
397uint16_t uv2_get_uva ( uv2_t *ctx );
398
407uint16_t uv2_get_uvb ( uv2_t *ctx );
408
417float uv2_get_uv_index ( uv2_t *ctx );
418
419#ifdef __cplusplus
420}
421#endif
422#endif // _UV2_H_
423
424 // End public_function group
426
427// ------------------------------------------------------------------------- END
#define UV2_RETVAL
Definition uv2.h:75
void uv2_set_config(uv2_t *ctx, uint8_t config_value)
Set configuration function.
float uv2_get_uv_index(uv2_t *ctx)
Get UV index function.
void uv2_set_power_on(uv2_t *ctx)
Set power ON function.
uint16_t uv2_read_data(uv2_t *ctx, uint8_t reg_address)
Read 16-bit data from 8-bit address function.
void uv2_write_data(uv2_t *ctx, uint8_t reg_address, uint8_t write_data)
Write 16-bit data function.
void uv2_cfg_setup(uv2_cfg_t *cfg)
Config Object Initialization function.
void uv2_set_active_force_mode(uv2_t *ctx, uint8_t force_mode)
Set active force mode function.
uint8_t uv2_check_id(uv2_t *ctx)
Check sensor ID function.
void uv2_set_high_dynamic(uv2_t *ctx)
Set high dynamic function.
void uv2_set_normal_dynamic(uv2_t *ctx)
Set normal dynamic function.
void uv2_set_power_off(uv2_t *ctx)
Set power OFF function.
void uv2_default_cfg(uv2_t *ctx)
Click Default Configuration function.
void uv2_generic_read(uv2_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len)
Generic read function.
void uv2_generic_write(uv2_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len)
Generic write function.
uint16_t uv2_get_uva(uv2_t *ctx)
Get UVA data function.
void uv2_set_integration_time(uv2_t *ctx, uint16_t intg_time)
Set integration time function.
void uv2_set_trigger_measurement(uv2_t *ctx)
Set trigger one measurement function.
UV2_RETVAL uv2_init(uv2_t *ctx, uv2_cfg_t *cfg)
Initialization function.
uint16_t uv2_get_uvb(uv2_t *ctx)
Get UVB data function.
Click configuration structure definition.
Definition uv2.h:196
uint32_t i2c_speed
Definition uv2.h:204
pin_name_t scl
Definition uv2.h:199
pin_name_t sda
Definition uv2.h:200
uint8_t i2c_address
Definition uv2.h:205
Click ctx object definition.
Definition uv2.h:181
i2c_master_t i2c
Definition uv2.h:184
uint8_t slave_address
Definition uv2.h:188