Skip to main content

How To Make A Edge Detector Bluetooth Car| Edge Detector Car| Topped With Fun

Circuit Diagram:



Code:

//Include AF Motor.h library before uploading the sketch

#include <AFMotor.h>

#define IR1 A0

#define IR2 A1



AF_DCMotor motor1(1, MOTOR12_1KHZ); 

AF_DCMotor motor2(2, MOTOR12_1KHZ); 

AF_DCMotor motor3(3, MOTOR34_1KHZ);

AF_DCMotor motor4(4, MOTOR34_1KHZ);



char command; 


void setup() 

{       

  Serial.begin(9600);  //Set the baud rate to your Bluetooth module.

  pinMode(IR1, INPUT);

  pinMode(IR2, INPUT);

    

}


void loop(){

  

  /*Serial.print("Right");

    Serial.println(Right);

    Serial.print("Left");

    Serial.println(Left);*/

    

  if(Serial.available() > 0){ 

    command = Serial.read(); 

    Stop(); 

    

    Serial.println(command);

    

    

    switch(command){

    case 'F':  

      forward();

      break;

    case 'B':  

       back();

      break;

    case 'L':  

      left();

      break;

    case 'R':

      right();

      break;

    }

    

    

   

    int Right = digitalRead(IR1);

    int Left = digitalRead(IR2);

    

    if(Right == 1 || Left == 1) {

      motor1.setSpeed(255);

      motor1.run(BACKWARD);

      motor2.setSpeed(255);

      motor2.run(BACKWARD);

      motor3.setSpeed(255);

      motor3.run(BACKWARD);

      motor4.setSpeed(255);

      motor4.run(BACKWARD);

      

    }else if(Right == 0 || Left == 0) {

      command = Serial.read();

    }

 }

}


void forward()

{

  motor1.setSpeed(150); //Define maximum Speed

  motor1.run(FORWARD); //rotate the motor clockwise

  motor2.setSpeed(150); //Define maximum Speed

  motor2.run(FORWARD); //rotate the motor clockwise

  motor3.setSpeed(150);//Define maximum Speed

  motor3.run(FORWARD); //rotate the motor clockwise

  motor4.setSpeed(150);//Define maximum Speed

  motor4.run(FORWARD); //rotate the motor clockwise

}


void back()

{

  motor1.setSpeed(150); //Define maximum Speed

  motor1.run(BACKWARD); //rotate the motor anti-clockwise

  motor2.setSpeed(150); //Define maximum Speed

  motor2.run(BACKWARD); //rotate the motor anti-clockwise

  motor3.setSpeed(150); //Define maximum Speed

  motor3.run(BACKWARD); //rotate the motor anti-clockwise

  motor4.setSpeed(150); //Define maximum Speed

  motor4.run(BACKWARD); //rotate the motor anti-clockwise

}


void left()

{

  motor1.setSpeed(200); //Define maximum Speed

  motor1.run(BACKWARD); //rotate the motor anti-clockwise

  motor2.setSpeed(200); //Define maximum Speed

  motor2.run(BACKWARD); //rotate the motor anti-clockwise

  motor3.setSpeed(200); //Define maximum Speed

  motor3.run(FORWARD);  //rotate the motor clockwise

  motor4.setSpeed(200); //Define maximum Speed

  motor4.run(FORWARD);  //rotate the motor clockwise

}


void right()

{

  motor1.setSpeed(200); //Define maximum Speed

  motor1.run(FORWARD); //rotate the motor clockwise

  motor2.setSpeed(200); //Define maximum Speed

  motor2.run(FORWARD); //rotate the motor clockwise

  motor3.setSpeed(200); //Define maximum Speed

  motor3.run(BACKWARD); //rotate the motor anti-clockwise

  motor4.setSpeed(200); //Define maximum Speed

  motor4.run(BACKWARD); //rotate the motor anti-clockwise


void Stop()

{

  motor1.setSpeed(0); //Define minimum Speed

  motor1.run(RELEASE); //stop the motor when release the button

  motor2.setSpeed(0); //Define minimum Speed

  motor2.run(RELEASE); //rotate the motor clockwise

  motor3.setSpeed(0); //Define minimum Speed

  motor3.run(RELEASE); //stop the motor when release the button

  motor4.setSpeed(0); //Define minimum Speed

  motor4.run(RELEASE); //stop the motor when release the button

}

Comments

Popular posts from this blog

How To Make Wi-Fi Car With NodeMCU| NodeMCU Projects| Topped With Fun

Circuit Diagram:  Code: #define ENA   14           // Enable/speed motors Right        GPIO14(D5) #define ENB   12            // Enable/speed motors Left         GPIO12(D6) #define IN_1  15            // L298N in1 motors Right           GPIO15(D8) #define IN_2  13            // L298N in2 motors Right           GPIO13(D7) #define IN_3  2             // L298N in3 motors Left            GPIO2(D4) #define IN_4  0             // L298N in4 motors Left            GPIO0(D3) #include <ESP8266WiFi.h> #include <WiFiClient.h>  #include <ESP8266WebServer.h> String command;  ...

IOT Based Heart Rate And SpO2 Tracker With NodeMCU MAX30100 And Blynk Application With Code Diagram

Circuit Diagram: SCL PIN - D1 , SDA PIN - D2 , INT PIN - D0 Code: #include <Wire.h> #include "MAX30100_PulseOximeter.h" #define BLYNK_PRINT Serial #include <Blynk.h> #include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> #include "Adafruit_GFX.h" #include "OakOLED.h" #define REPORTING_PERIOD_MS 1000 OakOLED oled; char auth[] = "*********************";             // Authentication Token Sent by Blynk char ssid[] = "********************";        //WiFi SSID char pass[] = "*********************";        //WiFi Password // Connections : SCL PIN - D1 , SDA PIN - D2 , INT PIN - D0 PulseOximeter pox; float BPM, SpO2; uint32_t tsLastReport = 0; const unsigned char bitmap [] PROGMEM = {   0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x18, 0x00, 0x0f, 0xe0, 0x7f, 0x00, 0x3f, 0xf9, 0xff, 0xc0,   0x7f, 0xf9, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xf0,  ...

Obstacle Avoiding Car With Ultrasonic Sensor|Autonomous Car Using L293D Motor Driver|Topped With Fun

Download The Libraries Here:- Motor-Shield-l-master Arduino-NewPing-master Circuit Diagram:- Code:- #include <AFMotor.h>   #include <NewPing.h> #include <Servo.h>  #define TRIG_PIN A4  #define ECHO_PIN A5 #define MAX_DISTANCE 200  #define MAX_SPEED 190 // sets speed of DC  motors #define MAX_SPEED_OFFSET 20 NewPing sonar(TRIG_PIN, ECHO_PIN, MAX_DISTANCE);  AF_DCMotor motor1(1, MOTOR12_1KHZ);  AF_DCMotor motor2(2, MOTOR12_1KHZ); AF_DCMotor motor3(3, MOTOR34_1KHZ); AF_DCMotor motor4(4, MOTOR34_1KHZ); Servo myservo;    boolean goesForward=false; int distance = 100; int speedSet = 0; void setup() {   myservo.attach(10);     myservo.write(115);    delay(2000);   distance = readPing();   delay(100);   distance = readPing();   delay(100);   distance = readPing();   delay(100);   distance = readPing();   delay(100); } void loop() {  int distanceR = 0; ...