- ID: ecs1030
- Name: ECS1030 Non-Invasive Current Sensor
- Category: electric
- Manufacturer: sparkfun
- Connection: analog
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)
{
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;
}