upm  0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
Public Member Functions

C++ API for the ADC121C021 I2C ADC. More...

Detailed Description

UPM module for the ADC121C021 12 bit Analog to Digital (ADC) converter. By providing a constant reference voltage, this sensor helps to increase the accuracy of a value collected from an analog sensor.

// Instantiate an ADC121C021 on I2C bus 0
upm::ADC121C021 *adc = new upm::ADC121C021(ADC121C021_I2C_BUS,
ADC121C021_DEFAULT_I2C_ADDR);
// An analog sensor, such as a Grove light sensor,
// must be attached to the adc
// Prints the value and corresponding voltage every 50 milliseconds
while (shouldRun)
{
uint16_t val = adc->value();
cout << "ADC value: " << val << " Volts = "
<< adc->valueToVolts(val) << endl;
usleep(50000);
}

Public Member Functions

 ADC121C021 (int bus, uint8_t address=ADC121C021_DEFAULT_I2C_ADDR, float vref=ADC121C021_DEFAULT_VREF)
 
 ~ADC121C021 ()
 
mraa_result_t writeByte (uint8_t reg, uint8_t byte)
 
mraa_result_t writeWord (uint8_t reg, uint16_t word)
 
uint8_t readByte (uint8_t reg)
 
uint16_t readWord (uint8_t reg)
 
uint16_t value ()
 
float valueToVolts (uint16_t val)
 
bool getAlertStatus ()
 
bool alertLowTriggered ()
 
bool alertHighTriggered ()
 
void clearAlertStatus ()
 
void enableAlertFlag (bool enable)
 
void enableAlertPin (bool enable)
 
void enableAlertHold (bool enable)
 
void enableAlertPinPolarityHigh (bool enable)
 
void setAutomaticConversion (ADC121C021_CYCLE_TIME_T cycleTime)
 
mraa_result_t setAlertLowLimit (uint16_t limit)
 
mraa_result_t setAlertHighLimit (uint16_t limit)
 
mraa_result_t setHysteresis (uint16_t limit)
 
uint16_t getHighestConversion ()
 
uint16_t getLowestConversion ()
 
mraa_result_t clearHighestConversion ()
 
mraa_result_t clearLowestConversion ()
 

Constructor & Destructor Documentation

ADC121C021 ( int  bus,
uint8_t  address = ADC121C021_DEFAULT_I2C_ADDR,
float  vref = ADC121C021_DEFAULT_VREF 
)

adc121c021 ADC constructor

Parameters
busi2c bus to use
addressthe address for this sensor; default is 0x55
vrefreference voltage for this sensor; default is 3.0
~ADC121C021 ( )

ADC121C021 Destructor

Member Function Documentation

mraa_result_t writeByte ( uint8_t  reg,
uint8_t  byte 
)

Write byte value into register

Parameters
regregister location to write into
bytebyte to write
Returns
0 (MRAA_SUCCESS) if successful; non-zero otherwise
mraa_result_t writeWord ( uint8_t  reg,
uint16_t  word 
)

Write word value into register

Parameters
regregister location to write into
wordword to write
Returns
0 (MRAA_SUCCESS) if successful; non-zero otherwise
uint8_t readByte ( uint8_t  reg)

Read byte value from register

Parameters
regregister location to read from
Returns
value at specified register
uint16_t readWord ( uint8_t  reg)

Read word value from register

Parameters
regregister location to read from
Returns
value at specified register
uint16_t value ( )

Read current value of conversion

Returns
current conversion value
float valueToVolts ( uint16_t  val)

Convert a supplied value to voltage based on set VREF

Parameters
valvalue of conversion (from value())
Returns
conversion value in volts
bool getAlertStatus ( )

Read current status of the alert flag. If the flag is set, the lower or upper alert indicators will be set as appropriate, and you can access these values with alertLowTriggered() or alertHighTriggered().

Returns
true if the alert flag is set
bool alertLowTriggered ( )
inline

Return the current value of m_alertLow. You must call getAlertStatus() to update this value.

Returns
current alert low status
bool alertHighTriggered ( )
inline

Return the current value of m_alertHigh. You must call getAlertStatus() to update this value.

Returns
current alert high status
void clearAlertStatus ( )

Clear the alert low and high flags. This will also clear the last stored alert values.

void enableAlertFlag ( bool  enable)

Enable or disable the Alert Flag functionality. If enabled, then when the measured value exceeds the low or high limits configured, the alert flag will be set. Use getAlertStatus() to access these values.

Parameters
enableif true, enables Alert Flag; otherwise, disables Alert Flag
void enableAlertPin ( bool  enable)

Enable or disable the Alert Pin functionality.

Parameters
enableif true, enables Alert Pin; otherwise, disables Alert Pin
void enableAlertHold ( bool  enable)

Enable or disable the Alert Hold functionality. When Alert Hold is enabled, the alert status remains until manually cleared via clearAlertStatus(). Otherwise, the alert will self clear when the value moves into the defined limits if alerts are enabled via enableAlertFlag().

Parameters
enableif true, enables Alert Hold; otherwise, disables Alert Hold
void enableAlertPinPolarityHigh ( bool  enable)

If the Alert Pin fnctionality is enabled, define the active polarity of the pin in an alert condition. Enabling this sets the pin to active high in an alert condition, otherwise an active low is used.

Parameters
enableif true, Alert Pin is active high, else active low
void setAutomaticConversion ( ADC121C021_CYCLE_TIME_T  cycleTime)

Enable or disable Automatic Conversion mode. When enabled, the ADC will sample and update the conversion value independently. This is disabled by default, and a conversion is only done by calling value().

Parameters
cycleTimeset the Cycle Time for automatic conversion
mraa_result_t setAlertLowLimit ( uint16_t  limit)

Set the Alert Low Limit. If Alerts are enabled and the measured conversion value is lower than this, an alert will be triggered.

Parameters
limitthe Low Alert Limit
Returns
0 (MRAA_SUCCESS) if successful; non-zero otherwise
mraa_result_t setAlertHighLimit ( uint16_t  limit)

Set the Alert High Limit. If Alerts are enabled and the measured conversion value is higher than this, an alert will be triggered.

Parameters
limitthe High Alert Limit
Returns
0 (MRAA_SUCCESS) if successful; non-zero otherwise
mraa_result_t setHysteresis ( uint16_t  limit)

Set the Hysteresis value. If a high or low alert condition is triggered, the conversion result must move within the high or low limit by more than this value to clear the alert condition. If the Alert Hold bit is set, then the alert will not self clear regardless of this value.

Parameters
limitHysteresis Limit
Returns
0 (MRAA_SUCCESS) if successful; non-zero otherwise
uint16_t getHighestConversion ( )

Return the Highest Conversion value sampled so far. This value is only updated by the converter when automatic conversion mode is enabled.

Returns
the highest conversion value recorded
uint16_t getLowestConversion ( )

Return the Lowest Conversion value sampled so far. This value is only updated by the converter when automatic conversion mode is enabled.

Returns
the lowest conversion value recorded
mraa_result_t clearHighestConversion ( )

Clear the Highest Conversion value sampled so far.

Returns
0 (MRAA_SUCCESS) if successful; non-zero otherwise
mraa_result_t clearLowestConversion ( )

Clear the Lowest Conversion value sampled so far.

Returns
0 (MRAA_SUCCESS) if successful; non-zero otherwise

The documentation for this class was generated from the following files: