Zachary Haslam
Published © GPL3+

Program Your Arduino From Your Raspberry Pi

What? Program an Arduino from your Raspberry Pi? It's possible, and super easy!

BeginnerProtip15 minutes68,133
Program Your Arduino From Your Raspberry Pi

Things used in this project

Story

Read more

Code

Classic blink program

Arduino
// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);//turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(LED_BUILTIN, LOW);//turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}

Credits

Zachary Haslam

Zachary Haslam

1 project • 84 followers
My name is Zach, and I'm 15. I've been developing for aImost 4 years now. specialize in Python and Linux.
Thanks to pert and Ron Mourant.

Comments