August 22, 2025

Of course I started with the blink one LED on pin 13 standard.

//Example 01 : Blinking LED

#define LED 13

void setup()
{
  pinMode(LED, OUTPUT);
}

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

Then, I jumped right into a servo driving program. All it does is send the servo all the way to one end of it’s rotation, wait, send it all the way to the other end of it’s rotation, wait and repeat. Not much, but it’s a start.

About The Author

Leave a Reply

Your email address will not be published. Required fields are marked *