current sensor

@retrolefty: thats what I thought but I tried the code from the guys at openenergymonitor.org at it didn't work either...

here's the code I got (http://openenergymonitor.org/emon/buildingblocks/arduino-sketch-current-only)

#include "EmonLib.h"                   // Include Emon Library
EnergyMonitor emon1;                   // Create an instance

void setup()
{  
  Serial.begin(9600);
  
  emon1.current(1, 111.1);             // Current: input pin, calibration.
}

void loop()
{
  double Irms = emon1.calcIrms(1480);  // Calculate Irms only
  
  Serial.print(Irms*230.0);	       // Apparent power
  Serial.print(" ");
  Serial.println(Irms);		       // Irms
}