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

C++ API for the TA12-200 current transformer. More...

Detailed Description

UPM module for the TA12-200 current transformer, which is found, for instance, in the Grove Electricity Sensor. This module can measure AC current moving through a wire at up to 5A.

// Instantiate a TA12-200 sensor on analog pin A0
upm::TA12200* electricity = new upm::TA12200(0);
while (shouldRun)
{
unsigned int maxVal = electricity->highestValue();
float current = electricity->milliAmps(maxVal);
cout << "Max ADC Value: " << maxVal << ", current: " << current
<< "mA" << endl;
usleep(100000);
}

Public Member Functions

 TA12200 (int pin)
 
 ~TA12200 ()
 
uint32_t getMillis ()
 
void initClock ()
 
unsigned int highestValue ()
 
float milliAmps (unsigned int val, int res=TA12200_ADC_RES)
 

Constructor & Destructor Documentation

TA12200 ( int  pin)

TA12200 sensor constructor

Parameters
pinanalog pin to use
~TA12200 ( )

TA12200 Destructor

Member Function Documentation

uint32_t getMillis ( )

Return the number of milliseconds elapsed since initClock() was last called.

Returns
elapsed milliseconds
void initClock ( )

Reset the Clock

unsigned int highestValue ( )

Get the conversion value from the sensor

Returns
the highest value obtained over 1 second of measuring
float milliAmps ( unsigned int  val,
int  res = TA12200_ADC_RES 
)

Compute the measured voltage

Parameters
valvalue measured by highestValue()
resADC resolution
Returns
the measured current in milliamps

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