Surilli
Published © LGPL

Connecting 3W Power LED with Surilli GSM

Blinking 3W Power LED ON and OFF. This LED can be further used for illumination purposes.

BeginnerFull instructions provided30 minutes460
Connecting 3W Power LED with Surilli GSM

Things used in this project

Hardware components

3W Power LED
×1
Surilli GSM
Surilli GSM
×1
Jumper wires (generic)
Jumper wires (generic)
×1
Breadboard (generic)
Breadboard (generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

Connecting 3W Power LED with Surilli GSM

File missing, please reupload.

Code

3W_Power_LED

C/C++
void setup() {
  pinMode(5, OUTPUT);
}

void loop() {
  digitalWrite(5, HIGH);   
  delay(1000);              
  digitalWrite(5, LOW);    
  delay(1000);              
}

Credits

Surilli
196 projects • 65 followers
Surilli is a premiere Internet of Things centric Technology Company aimed at providing cutting edge innovative solutions.
Contact

Comments

Please log in or sign up to comment.