Skip to main content

Posts

Showing posts with the label Makerspace

Arduino Based Dancing Robo

Hello Makers This Blog is about making a generic dancing bot which will move his hand entertainingly responsive to interruptions. Video Link Components you need: Arduino UNO  ( Click here to Buy Arduino UNO ) I.R. Module ( Click here to buy IR Module ) Servo-2 ( Click here to buy servos ) Jumper Wire ( Click here to buy jumper wire ) Cardboard ( Click here to buy cardboard ) Follow the steps and do the connections As given in Video Arduino Code : Servo myServo0;     //Object Name of your first Servo Servo myServo1;     //Object Name of your Second Servo int a;              //Variable to Store Value of IR int count = 0;      //A Counter Variable void setup() {   // put your setup code here, to run once:   myServo.attach(3);   //Attaching pin No. of first Servo will be 3   myServo1.attach(4);  //Attaching pin No. of first Servo will be 4   pinMode(5, INPUT);   //Attaching pin No. of IR   Serial.begin(9600);  //To Start your Serial Monitor } void loop() {   // put

Getting Started with Arduino

What is Arduino? Arduino is basically an open source electronics platform which is having easy to use hardware and software implementation. It’s a micro-controller interfaced with other vital components like programmer ICs, voltage regulator etc. With the help of this, we can interface various input (sensors) and output (LED's) components. Why Arduino? Arduino is not just a micro-controller it is also interfaced with several other components which make the job of the user very simple. Arduino Uno Pin-Out How Arduino works? An input of 5v is given to the board using a USB cable (not necessary) through a laptop or any other convenient power source. Microcontrollers are usually programmed through a programmer unless we have a firmware in our microcontroller that allows installing new firmware without any external programmer. This is bootloader. All the controllers present in UNO are from ATMEL Semiconductor (Now acquired by Microchip). We hav