Skip to content

mananpatel06/Arduino-Tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 

Repository files navigation

Arduino

This is Arduino tutorial.

Code:- https://collegekode.blogspot.com/search/label/Arduino

  1. Interface 8 LEDs with Arduino UNO (digital 0 to digital 7). Develop an Arduino sketch for following: a. Toggle all LEDs continuously every 500 milliseconds. b. Toggle even and odd LEDs continuously for 2 seconds. c. Generate left series (i.e. used during Navaratri)

  2. Interface LED to normally open (NO) terminal of relay to Arduino. Develop an Arduino sketch to toggle LED every 3 seconds through relay.

  3. Interface DC motor and Buzzer with Arduino. Develop an Arduino sketch to rotate motor anti-clockwise for 10 seconds after that sound buzzer for 2 seconds and silent at last.

  4. Interface seven segment LED display with Arduino. Write a program display first ODD numbers and then EVEN numbers on seven segment with delay of 1 second (the numbers are in between 0 to 9).

  5. Write program to display 1 to 100 on LCD as follows

image

  1. Write your name on LCD scroll left and scroll right

  2. Write program to show clock on LCD as follows

image

  1. Display the string on LCD Ex.; “Hello World”

  2. Interface 4 push button & do following: ** SW1 : when press, display 0 to 9 on LCD ** SW2 : when press, display 00 to 99 on LCD ** SW3 : when press, display 000 to 999 on LCD ** SW4 : when press, display 0000 to 9999 on LCD

  3. Set the time using four switch and display the clock on LCD ** SW1 : when press, increment 1 digit ** SW2 : when press, decrement 1 digit ** SW3 : when press, display set time and start the clock ** SW4 : when press, reset the clock

  4. Receive serially data 0 to 9 and display on LCD

  5. Transmit “Hello World!” serially and display on monitor

  6. Receive the data between 0 to 9 serially

  7. Interface switch and do following: ** SW1 : when press, transmit “Good Morning ” ** SW1 : when open, transmit “Bad Morning ”

  8. Connect switch to Arduino. If switch is on than print ”ON” else print “OFF” on serial monitor.

  9. Interface temperature sensor, LCD and buzzer with Arduino UNO. Develop an Arduino sketch do follows: Display temperature on the LCD.If temperature is above 50 `C then sound the buzzer otherwise silent it.

  10. Interface Potentiometer and dc motor with Arduino Uno. Develop an Arduino sketch to control speed of DC motor using Potentiometer.

  11. Interface Potentiometer and servo motor with Arduino Uno. Develop an Arduino sketch to control angle of servo motor using potentiometer.

  12. Identify bugs and resolve it to fulfill following objective. Interface 3 LEDs and 4 SWICHES with Arduino. Develop a program that by pressing 1st switch it will ON LED1, by pressing 2nd switch it ON LED2 and same for 3rd switch and LED3. By pressing 4th switch it will reset (OFF) all LEDs.

image