Pooja Baraskar
Published © GPL3+

Let's Make A Wearable: Part 1

It is fun to carry on a wearable electronics but developing them is great fun too.

BeginnerFull instructions provided994
Let's Make A Wearable: Part 1

Things used in this project

Hardware components

Flora
Adafruit Flora
×1
LiPoly Battery
×1

Story

Read more

Code

Untitled file

C/C++
    // Pin D7 has an LED connected on FLORA.  
    int led = 7;  
      
    // the setup routine runs once when you press reset  
    void setup() {   
       // initialize the digital pin as an output.  
       pinMode(led, OUTPUT);   
    }  
      
    // the loop routine runs over and over again forever:  
    void loop() {  
       digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)  
       delay(1000); // wait for a second  
       digitalWrite(led, LOW); // turn the LED off by making the voltage LOW  
       delay(1000); // wait for a second  
    }  

Credits

Pooja Baraskar
25 projects • 178 followers
Pooja Baraskar is an accomplished software engineer, inventor, and technical author with over a decade of experience in the tech industry.

Comments