Skip to main content

Project One - Blink

The purpose of this project is to demonstrate a simple digital-out display using the LED twig. Connect your equipment as shown in the image below: Connect the LED Twig to the D1/D2 Digital I/O jack on the Grove Shield. Arduino Pin D1 powers the Green LED on the Twig's SIG connector.

Now upload the following Arduino sketch:

// Project One - Double Blink
//

int del=500; // adjust for blink rate

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

void loop()
{
digitalWrite(1, HIGH);

delay(del);
digitalWrite(1, LOW);

delay(del);
}

te simple. The LED alternately blink, with the delay between the two set by the variable del. However, in doing so you can experience for yourself how simple the Grove system is to use.

Tech Support & Product Discussion

Thank you for choosing our products! We are here to provide you with different support to ensure that your experience with our products is as smooth as possible. We offer several communication channels to cater to different preferences and needs.

Loading Comments...