Introduction: Hello World

Linkit one for dummies

Step 1: Materials

LED

Transistor

resistor

linkit one

breadboard

wires

Step 2: Coding and Putting Together

This is the code you use

const int pinLED = 3; // LED connect to D13
void setup() { pinMode(pinLED, OUTPUT); // set direction of D13-OUTPUT } void loop() { digitalWrite(pinLED, HIGH); // LED on delay(3000); digitalWrite(pinLED, LOW); // LED off delay(100); }

It is pretty basic but it works, in order to use it you have to format it correctly which i couldnt do on here

Before coding connect all the components according to the picture.

After you have uploaded the code you are done. Congrats

Leave a comment if you have a questions