Q.1.
What is the use of the SD.h Library in Arduino?
Q.2.
What is the use of the Ethernet library?
Q.3.
What is the purpose of the following Arduino code? void setup() { Seria.begin(9600);}void setup() { Serial.write(40);}
Q.4.
Which chipset is the LCD library for Arduino based on?
Q.5.
What is the resolution of the micros() function on the Arduino Nano?
Q.6.
What is the use of the Interrupt Service Routine in an Arduino?
Q.7.
What is the output of the program given below if a voltage ofis supplied to the pin corresponding to the A0 pin on an Arduino UNO? void setup() { Serial.begin(9600); pinMode(AINPUT); } void loop() { int s = analogRead(A0); Serial.println(s); }
Q.8.
What mode should we put the Arduino pin to, in order for object detection to work with the Ultrasonic Sensor?
Q.9.
What will happen if we supply a voltage ofto the Vcc of the NokiaGDM?
Q.10.
Which port on any Arduino board should be connected to the Key Port on the Adafruit FONA 3G+GPS Breakout?
Q.11.
What is the way of throwing an error using preprocessing directives to the Arduino Compiler and forcing it to stop compilation?