Posts

Project Mania

 Robotics hand #include <Servo.h> Servo s1;   Servo s2;  Servo s3;  int pos = 0;    // variable to store the servo position void setup() { s1.attach(3); s2.attach(9);  s3.attach(6);    } void loop() {   delay(50);   for (pos = 0; pos <= 60; pos += 1)    {                                     // s2 downwards    s2.write(pos);                   delay(50);                          }   for (pos = 20; pos >= 0; pos -= 1)     {                                         //s1 close     s3.write(pos);                   d...

Class 7

Image
 Syllables   Arduino What is Arduino Arduino Hardware Arduino Software           Light Automation by Arduino Light blinking Ambulance lights Traffic lights Chaser lights  5 by 5 lights               Servo Motor   What is servo motor How does it work. How does connection How does coding 1 servo run on 45 2 servo connection and coding           Project 1 - make a project by using 2 Leds and 1 servo.           Motor driver  What is Motor driver  How does it work. How does connection How does coding project 2 - make a project by using motor driver, 2 motors etc.   What is Arduino     Arduino - Arduino is an open-source electronics platform based on easy-to-use hardware and software. It consists of a microcontroller (a small computer on a single integrated circuit) and an integrated development environment (IDE) that allows...

Class 8

Image
What is sensor types of sensor LDR sensor IR sensor project 1 ultrasonic sensor smoke sensor Rain drop sensor MQ3 sensor project 2 Bluetooth LCD project 3 IOT esp32 esp8266 Led project by esp32 and esp8266 Sensor connect of esp32 final project #LDR  int ldr = A0; void setup() {   Serial.begin(9600);   pinMode(A0,INPUT);   pinMode(13,OUTPUT); } void loop() {   int data = analogRead(ldr);   Serial.print(" ldr ");   Serial.println(data);   delay(100);   if(data <= 500)   {     digitalWrite(13,HIGH);   }   else   {     digitalWrite(13,LOW);   } } #Ultrasonic An ultrasonic sensor is device  that measures the distance to an object using ultrasonic sound waves.                             An ultrasonic sensor works through a process that involves sending out sound waves and measuring the time it takes for them to return. Here’s ...

Class 6

Image
Syllabus  What is Robot? types of Robots? Use of Robot? Explain Capacitor with diagram. Explain transistor with diagram. What is IC What is Sensor? Types of sensors? Explain IR sensor with diagram. Explain LDR sensor with diagram. Explain Touch sensor with diagram. Temperature sensor.  What is analog and digital sensor.  What is wireless communication. What is wireless module, connection of wireless module. Make a wireless car.  What is Conductor , semi-conductor and insulator.   What is robot - A robot is a type of automated machine that can execute specific tasks with little or no human intervention and with speed and precision.                                          Types of robot -  Pre programmed robot                                      ...