vibrasense2 2.0.0.0
|
API for configuring and manipulating Vibra Sense 2 Click driver. More...
Topics | |
Vibra Sense 2 Registers Settings | |
Settings for registers of Vibra Sense 2 Click driver. | |
Vibra Sense 2 MikroBUS Map | |
MikroBUS pin mapping of Vibra Sense 2 Click driver. | |
Functions | |
void | vibrasense2_cfg_setup (vibrasense2_cfg_t *cfg) |
Vibra Sense 2 configuration object setup function. | |
err_t | vibrasense2_init (vibrasense2_t *ctx, vibrasense2_cfg_t *cfg) |
Vibra Sense 2 initialization function. | |
err_t | vibrasense2_generic_write (vibrasense2_t *ctx, uint8_t reg, uint8_t *tx_buf, uint8_t tx_len) |
Vibra Sense 2 I2C writing function. | |
err_t | vibrasense2_generic_read (vibrasense2_t *ctx, uint8_t reg, uint8_t *rx_buf, uint8_t rx_len) |
Vibra Sense 2 I2C reading function. | |
uint16_t | vibrasense2_read_data (vibrasense2_t *ctx) |
Read data function. | |
uint16_t | vibrasense2_read_voltage (vibrasense2_t *ctx, uint16_t v_ref) |
Read voltage function. | |
int8_t | vibrasense2_vibration_level (vibrasense2_t *ctx) |
Get Vibration Level function. | |
API for configuring and manipulating Vibra Sense 2 Click driver.
Any initialization code needed for MCU to function properly. Do not remove this line or clock might not be set correctly.
void vibrasense2_cfg_setup | ( | vibrasense2_cfg_t * | cfg | ) |
Vibra Sense 2 configuration object setup function.
This function initializes click configuration structure to initial values.
[out] | cfg | : Click configuration structure. See vibrasense2_cfg_t object definition for detailed explanation. |
err_t vibrasense2_generic_read | ( | vibrasense2_t * | ctx, |
uint8_t | reg, | ||
uint8_t * | rx_buf, | ||
uint8_t | rx_len ) |
Vibra Sense 2 I2C reading function.
This function reads a desired number of data bytes starting from the selected register by using I2C serial interface.
[in] | ctx | : Click context object. See vibrasense2_t object definition for detailed explanation. |
[in] | reg | : Start register address. |
[out] | rx_buf | : Output read data. |
[in] | rx_len | : Number of bytes to be read. |
0
- Success, -1
- Error.err_t vibrasense2_generic_write | ( | vibrasense2_t * | ctx, |
uint8_t | reg, | ||
uint8_t * | tx_buf, | ||
uint8_t | tx_len ) |
Vibra Sense 2 I2C writing function.
This function writes a desired number of data bytes starting from the selected register by using I2C serial interface.
[in] | ctx | : Click context object. See vibrasense2_t object definition for detailed explanation. |
[in] | reg | : Start register address. |
[in] | tx_buf | : Data to be written. |
[in] | tx_len | : Number of bytes to be written. |
0
- Success, -1
- Error.err_t vibrasense2_init | ( | vibrasense2_t * | ctx, |
vibrasense2_cfg_t * | cfg ) |
Vibra Sense 2 initialization function.
This function initializes all necessary pins and peripherals used for this click board.
[out] | ctx | : Click context object. See vibrasense2_t object definition for detailed explanation. |
[in] | cfg | : Click configuration structure. See vibrasense2_cfg_t object definition for detailed explanation. |
0
- Success, -1
- Error.uint16_t vibrasense2_read_data | ( | vibrasense2_t * | ctx | ) |
Read data function.
Function is used to read raw data from MCP3221.
[in] | ctx | : Click context object. See vibrasense2_t object definition for detailed explanation. |
uint16_t vibrasense2_read_voltage | ( | vibrasense2_t * | ctx, |
uint16_t | v_ref ) |
Read voltage function.
Function is used to calculate piezo voltage in millivolts.
[in] | ctx | : Click context object. See vibrasense2_t object definition for detailed explanation. |
[in] | v_ref | : 16-bit value representing power supply voltage. |
int8_t vibrasense2_vibration_level | ( | vibrasense2_t * | ctx | ) |
Get Vibration Level function.
Function is used to get vibration level.
[in] | ctx | : Click context object. See vibrasense2_t object definition for detailed explanation. |