Posts

arduino program for servo motor

Image
ARDUINO WITH SERVO MOTOR TOOLS-  1. arduino uno r3  2. servo motor ( 0 degree to 180 degree rotation)  3.jumping wires CODES-  #include <Servo.h>     // Header file for servo motor Servo m ;                   //  defined name of servo motor as m. void setup() {   m.attach(9) ;             // attach the data wire of servo to arduino 9th pin   } void loop() {   m.write(0);                //  servo motor will go to 0 degree   delay(10);   m.write(90);             //    servo motor will go to 90 degree   delay(10);   m.write(0);   delay(10);   m.write(180) ;           // servo motor will go to 180 degree   delay(10);   m.write(0);   }    link-...

arduino uno program for ir sensor

Image
ARDUINO UNO WITH IR SENSOR  Hardware for this project-  1. IR sensor 2. arduino uno r3 3. jumping wires 4. led (to show output)  All Coding will done in arduino software. CODING- void setup() { Serial.begin(9600);          // using serial monitor to check the outputs.Serial monitor is on top right of arduino  pinMode(6,INPUT);                            software.Initially the value will 0 of IR sensor.   pinMode(7,OUTPUT);                        If it detect object then value will be zero. when object will detect led   }                                                          will glow.   void loop() {  int a=digitalRead(6);  ...

SESSION 2- (IR SENSOR WITH 8051 MICRO-CONTROLLER)

Image
8051 MICRO-CONTROLLER   WITH IR SENSOR Tools required- * AT89C51 (8051 micro controller) *Bread board *Jumping wires *IR sensor *Led @details all given below in pictures PROGRAM-                                   Keil compiler using for coding for 8051.

SESSION 1 (8051 MICRO-CONTROLLER)

Image
                                     Lets  begin session(1) with 8051 micro controller.                         https://electronicsforu.com/resources/8051-microcontroller-notes For  deep knowledge you can follow the above link .All details are available  in this link. Basic description about 8051 micro controller is given below- 8051   – This version of micro-controller is cheaper and available from various manufacturers. The manufacturers use  micro-controller for mass production because the price per unit is very cheap. The main features of 8051  micro-controller  are:                     RAM – 128 Bytes (Data memory)      ROM – 4Kbytes (ROM signify the on – chip program space)   ...

IOT TOOLS FOR PROJECT

Image
MAIN TOOLS FOR IOT PROJECTS -   MICROCONTROLLER                                                                                                                                                                                                                                                                 Arduino models are- Arduino uno rev3  ...

what do you think about IOT?

Image
Internet of thing (IOT) is a technology connecting devices,machines,tools to internet by means of wireless technologies. Over 9 billion things connected to internet,as of now. Things connected to the internet are projected to cross 20 billion in the near future. In future  IOT market share will increase to high level. Day by day  companies and developers are working on it .Now every thing is developing. Machines are doing work automatically and we can control them by our smart phone ,tablet from any where in this  earth. Because of Iot we can say that we are living in a new world where without men power we can control a machine . Our homes are also becomes smart .By using IOT our home doors are becomes automatic,we can control our ac and fans by our own smart phone , we can operate our washing machine ,water motor and geyser from our office/work place. #reference-nptel online cousre