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 LEDFLASH2_MAP_MIKROBUS( cfg, mikrobus ) \
53 cfg.scl = MIKROBUS( mikrobus, MIKROBUS_SCL ); \
54 cfg.sda = MIKROBUS( mikrobus, MIKROBUS_SDA ); \
55 cfg.fi = MIKROBUS( mikrobus, MIKROBUS_AN ); \
56 cfg.en = MIKROBUS( mikrobus, MIKROBUS_RST ); \
57 cfg.fen = MIKROBUS( mikrobus, MIKROBUS_PWM ); \
58 cfg.ten = MIKROBUS( mikrobus, MIKROBUS_INT );
65 #define LEDFLASH2_RETVAL uint8_t
67 #define LEDFLASH2_OK 0x00
68 #define LEDFLASH2_INIT_ERROR 0xFF
75 #define LEDFLASH2_MODE_OFF 0x00
76 #define LEDFLASH2_MODE_FLASH 0x01
77 #define LEDFLASH2_MODE_TORCH 0x02
84 #define LEDFLASH2_CUR_100 0x00
85 #define LEDFLASH2_CUR_90 0x01
86 #define LEDFLASH2_CUR_80 0x02
87 #define LEDFLASH2_CUR_70 0x03
88 #define LEDFLASH2_CUR_63 0x04
89 #define LEDFLASH2_CUR_56 0x05
90 #define LEDFLASH2_CUR_50 0x06
91 #define LEDFLASH2_CUR_44 0x07
92 #define LEDFLASH2_CUR_39 0x08
93 #define LEDFLASH2_CUR_35 0x09
94 #define LEDFLASH2_CUR_31 0x0A
95 #define LEDFLASH2_CUR_28 0x0B
96 #define LEDFLASH2_CUR_25 0x0C
97 #define LEDFLASH2_CUR_22 0x0D
98 #define LEDFLASH2_CUR_20 0x0E
99 #define LEDFLASH2_CUR_18 0x0F
106 #define LEDFLASH2_FTMR_1250 0xE0
107 #define LEDFLASH2_FTMR_1093 0xC0
108 #define LEDFLASH2_FTMR_937 0xA0
109 #define LEDFLASH2_FTMR_781 0x80
110 #define LEDFLASH2_FTMR_625 0x60
111 #define LEDFLASH2_FTMR_468 0x40
112 #define LEDFLASH2_FTMR_312 0x20
113 #define LEDFLASH2_FTMR_156 0x00
278 #endif // _LEDFLASH2_H_
Click ctx object definition.
Definition: ledflash2.h:127
#define LEDFLASH2_RETVAL
Definition: ledflash2.h:65
pin_name_t en
Definition: ledflash2.h:158
i2c_master_t i2c
Definition: ledflash2.h:137
Click configuration structure definition.
Definition: ledflash2.h:149
uint8_t slave_address
Definition: ledflash2.h:141
digital_out_t fi
Definition: ledflash2.h:130
pin_name_t fi
Definition: ledflash2.h:157
digital_out_t ten
Definition: ledflash2.h:133
digital_out_t en
Definition: ledflash2.h:131
digital_out_t fen
Definition: ledflash2.h:132
LEDFLASH2_RETVAL ledflash2_init(ledflash2_t *ctx, ledflash2_cfg_t *cfg)
Initialization function.
void ledflash2_generic_read(ledflash2_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len)
Generic read function.
void ledflash2_write_register(ledflash2_t *ctx, uint8_t reg_address, uint8_t reg_data)
Write register function.
uint8_t ledflash2_read_register(ledflash2_t *ctx, uint8_t reg_address)
Read register function.
pin_name_t fen
Definition: ledflash2.h:159
void ledflash2_generic_write(ledflash2_t *ctx, uint8_t reg, uint8_t *data_buf, uint8_t len)
Generic write function.
void ledflash2_cfg_setup(ledflash2_cfg_t *cfg)
Config Object Initialization function.
pin_name_t scl
Definition: ledflash2.h:152
uint32_t i2c_speed
Definition: ledflash2.h:164
pin_name_t sda
Definition: ledflash2.h:153
void ledflash2_toggle_flash_inhibit(ledflash2_t *ctx, uint8_t pin_state)
Toggle flash inhibit function.
pin_name_t ten
Definition: ledflash2.h:160
void ledflash2_set_mode(ledflash2_t *ctx, uint8_t mode, uint8_t intensity, uint8_t flash_duration)
Set mode function.
uint8_t i2c_address
Definition: ledflash2.h:165