#include <X10Firecracker.h>
//arduino pin2 to CM17A male pin7
//arduino pin3 to CM17A male pin4
//arduino ground to CM17A male pin5
void setup()
{
  X10.init( 2, 3, 0 );
}


void Test()
{
  delay(1000);
  X10.sendCmd( hcA, 1, cmdOn );
  delay(1000);
  X10.sendCmd( hcA, 1, cmdOff );
//  X10.sendCmd( hcA, 2, cmdDim );
//  X10.sendCmd( hcA, 2, cmdBright );
}

void loop()
{
  //delay(2000);
  //Test();
  delay(1000);
}
