Pooja Baraskar
Published © GPL3+

Grove Starter Kit With LinkIt One

The Grove Starter Kit is a better choice because: It accelerates development and testing with IoT.

BeginnerProtip1,133
Grove Starter Kit With LinkIt One

Things used in this project

Story

Read more

Code

Displaying Hello World in LCD

Arduino
#include

#include "rgb_lcd.h"


rgb_lcd lcd;


void setup()


{


// set up the LCD's number of columns and rows:


lcd.begin(16, 2);


// Print a message to the LCD.


lcd.print("hello, world!");


}


void loop()


{


// Turn off the display:


lcd.noDisplay();


delay(500);


// Turn on the display:


lcd.display();


delay(500);


}

Credits

Pooja Baraskar

Pooja Baraskar

25 projects • 178 followers
Pooja Baraskar is an accomplished software engineer, inventor, and technical author with over a decade of experience in the tech industry.

Comments