El Escudo Dos HELP.

So, I just bought my 2nd EED (I broke the 1st one) and currently having an issue.

The sample code from the product page works fine.

However, when I made my own code and uploaded it, that’s when the problem started.

The EL-Wires does not turn off at all when it’s supposed to be turned off.

I used a multimeter to check the AC voltage and it’s just fluctuating from 100-103v.

I have uploaded this pretty simple code on my Arduino UNO board if it would help.

**//

int LED1=2;

int LED2=3;

int LED3=4;

int LED4=5;

int LED5=6;

int LED6=7;

int LED7=8;

void setup() {

Serial.begin(115200);

// The EL channels are on pins 2 through 9

// Initialize the pins as outputs

// channel A

pinMode(LED1, OUTPUT); // channel C

pinMode(LED2, OUTPUT); // channel D

pinMode(LED3, OUTPUT); // channel E

pinMode(LED4, OUTPUT); // channel F

pinMode(LED5, OUTPUT); // channel G

pinMode(LED6, OUTPUT); // channel H

pinMode(LED7, OUTPUT); // channel H

}

void loop() {

digitalWrite(LED1, HIGH);

digitalWrite(LED2, HIGH);

delay(100);

digitalWrite(LED3, HIGH);

digitalWrite(LED4, HIGH);

delay(100);

digitalWrite(LED5, HIGH);

digitalWrite(LED6, HIGH);

delay(100);

digitalWrite(LED7, HIGH);

delay(100);

digitalWrite(LED7, LOW);

delay(100);

digitalWrite(LED5, LOW);

digitalWrite(LED6, LOW);

delay(100);

digitalWrite(LED3, LOW);

digitalWrite(LED4, LOW);

delay(100);

digitalWrite(LED1, LOW);

digitalWrite(LED2, LOW);

delay(100);

}

//**

As you can see, it is pretty simple.

The EED should turn on the EL Wires 2 at a time, then, when it reached the 7th wire, it will turn the EL Wires off 2 at a time again.

When I plug in the Arduino to the power source, it performs the 1st part of the code which is turning the EL Wires ON. But, it does not turn them OFF.

Then, I tried the same code on some LEDs and it’s working just fine.

https://imgur.com/pUMAMrT

https://imgur.com/VIY4lXO

I suspect with your delay of 100ms… you will not notice that it turned off… try making the delay longer

Even tried 1000 and it’s still not turning off when set to low. :frowning:

Can you send some photos of your setup?

TS-Chris:
Can you send some photos of your setup?

Sure thing. I uploaded them on Imgur. Here’s the link: https://imgur.com/a/5J8dVpG

Thank you so much, sir.

I have also uploaded a video to better explain what I was saying.

Here’s the link: https://youtu.be/UCCZFZKp9Gc

Thanks for sending links to your photos and video. Those help a lot in being able to see what’s going on.

I’m not sure why your code isn’t working. When I try it here it works fine for me. For the issue where you need to unplug and replug the Arduino to get it to execute the new code, I’ve never seen that before and I’m really not sure what could be causing that. It’s got to be something weird with your particular Arduino that causes this but I can’t for the life of me figure out what could be causing this issue.

I can see the EL wires turning off in your video so the shield is functional. I’m starting to think you might have a bad Arduino board. Can you try a different Arduino and see if the issues you’re having change?

How about enough power supply? When all the wires are on the inverter needs to provide more power. What happens if you do a loop with less wires. Start with two and add another one if that works.

TS-Chris:
Thanks for sending links to your photos and video. Those help a lot in being able to see what’s going on.

I’m not sure why your code isn’t working. When I try it here it works fine for me. For the issue where you need to unplug and replug the Arduino to get it to execute the new code, I’ve never seen that before and I’m really not sure what could be causing that. It’s got to be something weird with your particular Arduino that causes this but I can’t for the life of me figure out what could be causing this issue.

I can see the EL wires turning off in your video so the shield is functional. I’m starting to think you might have a bad Arduino board. Can you try a different Arduino and see if the issues you’re having change?

Yeah. I have tried it on a Mega and it has the same issue. Hmm. I guess, I just need to work around or use another code. It only happens when I use that one particular code where the EL-Wires need to turn ON 2 at a time then turn OFF.

Thanks for the help tho. :slight_smile: Really appreciate it.

paulvha:
How about enough power supply? When all the wires are on the inverter needs to provide more power. What happens if you do a loop with less wires. Start with two and add another one if that works.

Tried that. Still has the same issue. I’ll just use another code, I guess. Thanks for the help! :slight_smile: