EL Shield
This shield is used to control EL devices. It can control 4 EL devices simultaneously. The controlling method is as simple as controlling an LED. Driven by PWM, it can create a colorful and florid effect by controlling each EL wire with a simple program. Combined with our EL Inverter, it can drive an EL wire as long as 15m, which provides infinite possibility for your design. Besides, the Shield is covered by Acrylic board, which enhances user's safety.
Specifications
- Operating Voltage: 5V
- Invertor interface: JST 2.0
- Control channel interface: 2P - 2.5SM socket
Hardware Overview
Demonstration
Here is a simple demo involving EL shield, 4 EL tapes and the custom invertor that accompanies EL shield. Hook all things up as in the picture below.
Upload the code below to your microcontroller.
// EL test code
void setup(){
for(int i = 4; i<8; i++)
{
pinMode(i, OUTPUT);
}
}
void setEL(int ch) // set a certain EL on
{
for(int i = 4; i<8; i++) // all off
digitalWrite(i, LOW);
digitalWrite(ch+3, HIGH); // ch on
}
int count = 0;
void loop()
{
setEL(count%4 + 1);
delay(200);
if(count++ == 1000)
{
count = 0;
}
}
Schematic Online Viewer
Resources
- EL Shield eagle file
- EL Shield Source code file for Arduino 1.0
- BT134W-600D datasheet
- MOC 3063 datasheet
Tech Support & Product Discussion
Thank you for choosing our products! We are here to provide you with different support to ensure that your experience with our products is as smooth as possible. We offer several communication channels to cater to different preferences and needs.