ASSIGNMENT NO. 6

OUTPUT DEVICES


1 : Output devices and arduino

Used LCD i2c as output device. Printed my name.
Code:
#include
#include
void setup()
{
// initialize the LCD
lcd.begin();
lcd.backlight(); }
void loop()
{
//start of loop
lcd.clear();
lcd.print("Prankur bola");
lcd.setCursor (0,1); // go to start of 2nd line
lcd.print("Hello World!");
//lcd.print(millis() / 1000);
delay(500);
//end of loopcode Robojax code for LCD with I2C
}

2 : Reading dataSheet

Data sheets are the manual of any electronic device. They contain all information about the component like its operating voltage(if applicable), dimensions of the part and behaviour of the component in most used conditions. Also, it contains information about the pins, terminals it has. Different combinations or configurations of the component which are commonly used.
I have used data sheets to check the range of operating voltage of the component. For linear actuator, used to check the pin diagram of the connector to check the pin functionality.

3 : Combination of input and output devices with arduino

w3schools

END

Assignment no. 1 Assignment no. 2 Assignment no. 3 Assignment no. 4 Assignment no. 5 Assignment no. 6 Assignment no. 7