ambient18 2.0.0.0
Ambient 18 Click Driver

API for configuring and manipulating Ambient 18 Click driver. More...

Topics

 Ambient 18 Registers Settings
 Settings for registers of Ambient 18 Click driver.
 
 Ambient 18 MikroBUS Map
 MikroBUS pin mapping of Ambient 18 Click driver.
 

Functions

void ambient18_cfg_setup (ambient18_cfg_t *cfg)
 Ambient 18 configuration object setup function.
 
void ambient18_drv_interface_selection (ambient18_cfg_t *cfg, ambient18_drv_t drv_sel)
 Ambient 18 driver interface setup function.
 
err_t ambient18_init (ambient18_t *ctx, ambient18_cfg_t *cfg)
 Ambient 18 initialization function.
 
err_t ambient18_read_raw_adc (ambient18_t *ctx, uint16_t *raw_adc)
 Ambient 18 read raw ADC value function.
 
err_t ambient18_read_voltage (ambient18_t *ctx, float *voltage)
 Ambient 18 read voltage level function.
 
err_t ambient18_set_vref (ambient18_t *ctx, float vref)
 Ambient 18 set vref function.
 
void ambient18_set_gain_mode (ambient18_t *ctx, uint8_t mode)
 Ambient 18 set gain mode function.
 
int32_t ambient18_voltage_to_lux (ambient18_t *ctx, float voltage)
 Ambient 18 voltage to illuminance function.
 

Detailed Description

API for configuring and manipulating Ambient 18 Click driver.

Any initialization code needed for MCU to function properly. Do not remove this line or clock might not be set correctly.

Function Documentation

◆ ambient18_cfg_setup()

void ambient18_cfg_setup ( ambient18_cfg_t * cfg)

Ambient 18 configuration object setup function.

This function initializes click configuration structure to initial values.

Parameters
[out]cfg: Click configuration structure. See ambient18_cfg_t object definition for detailed explanation.
Returns
Nothing.
Note
The all used pins will be set to unconnected state.

◆ ambient18_drv_interface_selection()

void ambient18_drv_interface_selection ( ambient18_cfg_t * cfg,
ambient18_drv_t drv_sel )

Ambient 18 driver interface setup function.

This function sets a serial driver interface which will be used further in the click driver.

Parameters
[out]cfg: Click configuration structure. See ambient18_cfg_t object definition for detailed explanation.
[in]drv_sel: Driver interface selection. See ambient18_drv_t object definition for detailed explanation.
Returns
Nothing.
Note
This driver selection should be call before init function to configure the driver to work with the serial interface which is consistent with the real state of the hardware. If this function is not called, the default driver interface will be set.

◆ ambient18_init()

err_t ambient18_init ( ambient18_t * ctx,
ambient18_cfg_t * cfg )

Ambient 18 initialization function.

This function initializes all necessary pins and peripherals used for this click board.

Parameters
[out]ctx: Click context object. See ambient18_t object definition for detailed explanation.
[in]cfg: Click configuration structure. See ambient18_cfg_t object definition for detailed explanation.
Returns
  • 0 - Success,
  • -1 - Error.
See #err_t definition for detailed explanation.
Note
None.

◆ ambient18_read_raw_adc()

err_t ambient18_read_raw_adc ( ambient18_t * ctx,
uint16_t * raw_adc )

Ambient 18 read raw ADC value function.

This function reads raw ADC value.

Parameters
[in]ctx: Click context object. See ambient18_t object definition for detailed explanation.
[out]raw_adc: Output ADC result.
Returns
  • 0 - Success,
  • -1 - Error.
See #err_t definition for detailed explanation.
Note
None.

◆ ambient18_read_voltage()

err_t ambient18_read_voltage ( ambient18_t * ctx,
float * voltage )

Ambient 18 read voltage level function.

This function reads raw ADC value and converts it to proportional voltage level.

Parameters
[in]ctx: Click context object. See ambient18_t object definition for detailed explanation.
[out]voltage: Output voltage level [V].
Returns
  • 0 - Success,
  • -1 - Error.
See #err_t definition for detailed explanation.
Note
The conversion to voltage depends on the entered reference voltage.

◆ ambient18_set_gain_mode()

void ambient18_set_gain_mode ( ambient18_t * ctx,
uint8_t mode )

Ambient 18 set gain mode function.

This function sets the gain mode.

Parameters
[in]ctx: Click context object. See ambient18_t object definition for detailed explanation.
[in]mode:
  • 0 - Shutdown,
  • 1 - H-Gain - up to 100 Lux,
  • 2 - M-Gain - up to 1000 Lux,
  • 3 - L-Gain - up to 10000 Lux.
Returns
None.
Note
None.

◆ ambient18_set_vref()

err_t ambient18_set_vref ( ambient18_t * ctx,
float vref )

Ambient 18 set vref function.

This function sets the voltage reference for Ambient 18 click driver.

Parameters
[in]ctx: Click context object. See ambient18_t object definition for detailed explanation.
[in]vref: Reference voltage (volts).
Returns
  • 0 - Success,
  • -1 - Error.
See #err_t definition for detailed explanation.
Note
The default voltage reference set with ambient18_init is 3.3V.

◆ ambient18_voltage_to_lux()

int32_t ambient18_voltage_to_lux ( ambient18_t * ctx,
float voltage )

Ambient 18 voltage to illuminance function.

This function calculates illuminance (lux) based on the voltage input.

Parameters
[in]voltage: Voltage from IOUT (volts).
Returns
  • >=0 Illuminance in lux,
  • <0 Gain mode error.
Note
Gain mode must be set before this function call.