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

C++ API for the ECS1030 Non-Invasive Current/Electricity Sensor. More...

Detailed Description

This non-invasive current sensor can be clamped around the supply line of an electrical load to tell you how much current is passing through it. It does this by acting as an inductor and responding to the magnetic field around a current-carrying conductor. This particular current sensor will measure a load up to 30 Amps which makes it great for building your own energy monitors.

int
main(int argc, char **argv)
{
sensor = new upm::ECS1030(0);
signal(SIGINT, sig_handler);
while (!is_running) {
std::cout << "I = " << sensor->getCurrency_A () << ", Power = " << sensor->getPower_A () << std::endl;
std::cout << "I = " << sensor->getCurrency_B () << ", Power = " << sensor->getPower_B () << std::endl;
}
std::cout << "exiting application" << std::endl;
delete sensor;
return 0;
}

Public Member Functions

 ECS1030 (uint8_t pinNumber)
 
 ~ECS1030 ()
 
double getCurrency_A ()
 
double getPower_A ()
 
double getCurrency_B ()
 
double getPower_B ()
 
std::string name ()
 

Static Public Attributes

static const uint8_t DELAY_MS = 20000 / NUMBER_OF_SAMPLES
 
static const uint8_t VOLT_M = 5.1 / 1023
 
static const uint8_t R_LOAD = 2000.0 / CURRENT_RATIO
 

Constructor & Destructor Documentation

ECS1030 ( uint8_t  pinNumber)

Instanciates a ECS1030 (current sensor) object

Parameters
pinNumbernumber of the data pin
~ECS1030 ( )

ECS1030 object destructor, basicaly it close the GPIO.

Member Function Documentation

double getCurrency_A ( )

Return currency data for the sampled period

Here is the caller graph for this function:

double getPower_A ( )

Return power data for the sampled period

Here is the call graph for this function:

double getCurrency_B ( )

Return currency data for the sampled period

Here is the caller graph for this function:

double getPower_B ( )

Return power data for the sampled period

Here is the call graph for this function:

std::string name ( )
inline

Return name of the component


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