Skip to main content

LinkIt ONE Tutorial - Marquee

What We’re Doing

The experiments in the previous sections used only one LED but to show dazzling light effects lets use three LEDs. Make connections as shown in the Fig 4.2 and upload the code given below and observe the changes that happens.

Things you need

  • LinkIt One x 1

  • Break board x 1

  • Resistors 330Ω,1kΩ x 3

  • 5mm LED x 3

  • Transistor(2N3904) x 3

Schematic

Connection

Code

Please click on the button below to download the code for the kit:

You can unzip the file to the Examples folder of your Arduino IDE.

To access the demo code open:

File -> Examples -> Starter Kit for LinkIt -> Basic -> L4_Control_LEDs

const int pinLed1    = 2;                       // pin of led1
const int pinLed2 = 3; // pin of led2
const int pinLed3 = 4; // pin of led3

void setup()
{
pinMode(pinLed1, OUTPUT); // set all pin OUTPUT
pinMode(pinLed2, OUTPUT);
pinMode(pinLed3, OUTPUT);
}


void loop()
{
digitalWrite(pinLed4, LOW); // led4 off
digitalWrite(pinLed1, HIGH); // led1 on
delay(100);

digitalWrite(pinLed1, LOW); // led1 off
digitalWrite(pinLed2, HIGH); // led2 on

delay(100);

digitalWrite(pinLed2, LOW); // led2 off
digitalWrite(pinLed3, HIGH); // led3 on

delay(100);

digitalWrite(pinLed3, LOW); // led3 off
digitalWrite(pinLed4, HIGH); // led4 on

delay(100);
}

Troubleshooting

  • Check the polarity of the LED's.

  • Ensure that you have connected the LED' to the correct port pins.

Making it better

Upload the following code with the same breadboard connection in order to obtain different flashing effects.

To access the demo code open:

File -> Examples -> Starter Kit for LinkIt -> Extend_Lesson –> L4_Control_LEDs_Speed

More ideas

Modify the existing code such that the frequency of LED blinking increases.

Reference

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...