Skip to main content

Something Automatic

I have a bot with good wheels and 200RPM motors on each wheel manual driven. I was thinking of automating it with my arduino and some sensors. I don’t have any specific idea of its applications. Hope someone might suggest something interesting. Waiting for suggestions!! 
Manually Controlled Bot


Arduino mega


        
Few 16x2 Displays
Ultrasonic Sensor

Comments

Popular posts from this blog

Using HC-SR04 (Ultrasonic sensor) with arduino

HC-SR04 is an ultrasonic sensor which works on the principle of ultrasonic waves. Basically it creates a pulse depending on the distance from the sensor. It has two eyes like structure one of which transmits the waves and the other acts as receiver. The sensor has 4 pins VCC, TRIG, ECHO, GND. When the sensor is triggered by sending a pulse to TRIG pin, it sends a pulse through ECHO pin which can be measured. 1.       Parts needed: Arduino, wires, Ultrasonic Sensor (HC-SR04). 2.       Connections: VCC pin to Arduino 5V TRIG pin to Arduino pin 11 ECHO pin to Arduino pin 12 GND pin to Arduino GND 3.       Code: void setup ()   {   Serial.begin( 9600 ); //Sensor TRIG pin to pin 11 pinMode( 11 , OUTPUT); //Sensor ECHO pin to pin 12 pinMode( 12 , INPUT);   } void loop ()   {   int duration, distance; //to send trigger pin to pin 11 by activating it ...