Surilli
Published © LGPL

Connecting 3W Power LED with Surilli Basic M0

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

BeginnerFull instructions provided30 minutes495
Connecting 3W Power LED with Surilli Basic M0

Things used in this project

Hardware components

3W Power LED
×1
Surilli Basic
Surilli Basic
×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 LED with Surilli Basic M0

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.