Pooja Baraskar
Published © GPL3+

Getting Started With Intel Galileo

Let's see how to get started with Intel's IoT board Galileo.

BeginnerProtip2,480
Getting Started With Intel Galileo

Story

Read more

Code

Untitled file

C/C++
  int led = 13;  
      
    void setup()  
    {  
        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

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