It's a divice that plugs into the arduino to allow it to control 8 strips of electroluminecent wire,
www.sparkfun.comi thought it seemed like a pretty simple device but the output voltage of the inverter is 175v and the voltage at the boards 8 output headers is 40v, not enough to light the wires.
i've put the scope on the outputs and get 3khz, could the frequency be too high for the triacs?
here's the sketch:
#include <EL_Escudo.h>
void setup()
{
EL.all_off();
}
void loop()
{
EL.on(A);
delay(1000);
EL.off(A);
EL.on(B);
delay(1000);
EL.off(B);
EL.on(C);
delay(1000);
EL.off(C);
EL.on(D);
delay(1000);
EL.off(D);
EL.on(E);
delay(1000);
EL.off(E);
EL.on(F);
delay(1000);
EL.off(F);
EL.on(G);
delay(1000);
EL.off(G);
EL.on(H);
delay(1000);
EL.off(H);
EL.all_on();
delay(1000);
EL.all_off();
}