Zeroplus Arduino starter kit with Logic Analyzer Manual page 96

Table of Contents

Advertisement

CODE EXPLANATION
#include <LiquidCrystal.h> Calling a library allows us to use
some functions to command the LCD.
LiquidCrystal lcd(12, 11, 5, 4, 3, 2) Maps the physical pins with
the pins defined in the library.
Serial.begin(9600) Initializes the serial port. 9600 is the rate,
in Bauds, at which data are transmitted over the bus.
lcd.begin(16, 2) Initializes the LCD and specify the dimensions
of the screen. Here we use a 16 columns and 2 rows LCD screen.

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the Arduino starter kit with Logic Analyzer and is the answer not in the manual?

Subscribe to Our Youtube Channel

Table of Contents