Skip to main content

Wi-Fi Controlled Robot Car Using Nodemcu and Blynk

Wi-Fi Controlled Robot Car Using Nodemcu and Blynk


We can control the robot car over the internet for infinite range.



Things used in this project:↗

Hardware components:
1)NodeMCU  🛒
2)L298 Motor Driver Module  🛒
3)Bo Motor  🛒
4)LiPo Battery  🛒
5)Jumper Wires  🛒

Software Used:


1)BLYNK
2)Arduino IDE

Procedure:

STEP 1: Hardware Connections

Getting to Know Your L298N Dual H-Bridge Motor Controller Module .An H-Bridge may be a circuit which will drive a current in either polarity and be controlled by Pulse Width Modulation (PWM). What is Pulse Width Modulation? Pulse Width Modulation may be a means in controlling the duration of an electronic pulse. Motors will last for much longer and be more reliable if controlled through PWM

  • Specifications:
  • Double H bridge Driver Chip: L298N
  • Logical voltage: 5 V
  • Drive voltage: 5V-35V
  • Logical current: 0-36mA
  • Drive current: 2 A (MAX single bridge)
  • Max power: 25W
  • Note: Built-in 5v power supply, when the driving voltage is 7v-35v. But i recommend you not to power up your microcontroller with on-board 5v power supply.

1: connect the bo motor to the motor driver as shown within the image above.

2: connect the motor driver to nodemcu as given below:

  • GPIO2(D4)- IN3
  • GPIO15(D8)-IN1
  • GPIO0(D3)-IN4
  • GPIO13(D7)-IN2
  • GPIO14(D5)-Enb-A
  • GPIO12(D6)-Enb-B

3:Supply Connections :

  • +12v - Positive terminal of the battery to be connected.
  • GND - Ground terminal of the battery to be connected.
  • +5v - +5v input (unnecessary if your power source is less than +7v to +9v, if the power source is greater than +9v to +35v then it can act as a 5v out)
  • 4:Input Connections :
  • (Motor A) ENA - Enables PWM signal for Motor A
  • IN1 -Enable Motor A
  • IN2 - Enable Motor A
  • (Motor B) ENB - Enables PWM signal for Motor B
  • IN3: Enable Motor B
  • IN4: Enable Motor B

Note : Make sure you have all of your grounds connected together. (NodeMCU, Power Source, and Motor Driver)The PWM Pins are unnecessary if you are doing not want to regulate PWM features.

STEP 2: Software Connections
  • Download the Blynk app from the google play store
  • Sign in with a valid E-mail address
  • Create a new project

  • Give Project a name and choose NodeMCU as the device from the list
  • Then choose WIFI as the connection type and press create
  • An Auth Token will we generated an sent to the Email address which you signed in
  • Copy and save the Auth Token somewhere save and will we used in upcoming steps

  • Now click "+" to add widgets, then add a Joystick and Slider .now the Joystick is displayed on the dashboard

  • Then click on the Joystick widgets from the dashboard to edit the Joystick settings

  • select the virtual pin v1 because I even have written the code for v1 and slide the button from split to merge
  • set the worth range from 0-1023 because it helps in easy control of robot for larger values

  • now select the slider , select the virtual pin v2,and set values from 0 - 1023.
Arduino IDE Setup:

  • Click on the Icon to open the Arduino window
  • Open the File and click on the Preferences

  • Adding ESP8266 Board Manager

Now open the tools therein select Board: “Arduino/Genuino Uno” and click on on the Boards Manager as shown within the figure

  • ESP8266 Board Package

The Boards Manager window opens, scroll the window page to bottom till you see the module with the name ESP8266. Once we catch on , select that module and choose version and click on on the Install button. When it is installed it shows Installed in the module as shown in the figure and then close the window.

  • Selecting ESP8266 Arduino Board

To run the esp8266 with Arduino we've to pick the Board: “Arduino/Genuino Uno” then change it to NodeMCU 1.0 (ESP-12E Module) or other esp8266 modules counting on what you have .This can be done by scrolling down, as shown in the figure.

  • Connecting ESP8266 to the PC

Now Let’s connect the ESP8266 module to your computer through USB cable as shown within the figure. When module is connected to the USB, COM port is detected eg: here COM5 is shown within the figure.

STEP 3: Programming NodeMCU

#include <Esp8266Wifi.h>

#include<BlynkSimpleEsp82666.h>

/* define L298N or L293D motor control pins */

int leftMotorForward = 2; /* GPIO2(D4) -> IN3 */

int rightMotorForward = 15; /* GPIO15(D8) -> IN1 */

int leftMotorBackward = 0; /* GPIO0(D3) -> IN4 */

int rightMotorBackward = 13; /* GPIO13(D7) -> IN2 */

int z;

/* define L298N or L293D enable pins */

int rightMotorENB = 14; /* GPIO14(D5) -> Motor-A Enable */

int leftMotorENB = 12; /* GPIO12(D6) -> Motor-B Enable *

/ You should get Auth Token in the Blynk App. // Go to the Project Settings (nut icon).

// Use your own WiFi settings

char auth[] = "**********";

char ssid[] = "type your network name here ";

char pass[] = "type your network password here";

// neutral zone settings for x and y

// joystick must move outside these boundary numbers to activate the motors

// makes it a little easier to control the wifi car

int minRange = 312;

int maxRange = 712;

// analog speeds from 0 (lowest) - 1023 (highest)

// 3 speeds used -- 0 (noSpeed), 350 (minSpeed), 850 (maxSpeed).

// use whatever speeds you want...too fast made it a pain in the ass to control

int minSpeed = 450;

int maxSpeed = 1023;

int noSpeed = 0;

void moveControl(int x, int y) {

// movement logic // move forward

// y je vetsi jak maxrange a současně x je vetsi jak minRange a současne mensi jak max range

if(y >= maxRange && x >= minRange && x <= maxRange) {

analogWrite(leftMotorENB,z);

analogWrite(rightMotorENB,z);

digitalWrite(leftMotorForward,HIGH);

digitalWrite(rightMotorForward,HIGH);

digitalWrite(leftMotorBackward,LOW);

digitalWrite(rightMotorBackward,LOW); } //MOVE FORWARD RIGHT

else if(x <= minRange && y >= maxRange ) {

digitalWrite(leftMotorENB,maxSpeed);

digitalWrite(rightMotorENB,minSpeed);

digitalWrite(leftMotorForward,HIGH);

digitalWrite(rightMotorForward,HIGH);

digitalWrite(rightMotorBackward,LOW);

digitalWrite(leftMotorBackward,LOW); } // move right

else if(x >= maxRange && y >= minRange && y<=maxRange)

{ analogWrite(leftMotorENB,z);

analogWrite(rightMotorENB,z);

digitalWrite(leftMotorForward,HIGH);

digitalWrite(rightMotorForward,LOW);

digitalWrite(rightMotorBackward,HIGH);

digitalWrite(leftMotorBackward,LOW);

}

// move forward LEFT

else if(x <= minRange && y >= maxRange ) {

digitalWrite(leftMotorENB,minSpeed);

digitalWrite(rightMotorENB,maxSpeed);

digitalWrite(leftMotorForward,HIGH);

digitalWrite(rightMotorForward,HIGH);

digitalWrite(rightMotorBackward,LOW);

digitalWrite(leftMotorBackward,LOW); }

// moveleft else if(x <= minRange && y >= minRange && y <= maxRange) {

analogWrite(leftMotorENB,z);

analogWrite(rightMotorENB,z);

digitalWrite(leftMotorForward,LOW);

digitalWrite(rightMotorForward,HIGH);

digitalWrite(rightMotorBackward,LOW);

digitalWrite(leftMotorBackward,HIGH); }

// neutral zone

else if(y < maxRange && y > minRange && x < maxRange && x > minRange)

{ digitalWrite(leftMotorENB,LOW);

digitalWrite(rightMotorENB,LOW);

digitalWrite(leftMotorForward,LOW);

digitalWrite(leftMotorBackward,LOW);

digitalWrite(rightMotorForward,LOW);

digitalWrite(rightMotorBackward,LOW); }

// move back

else if(y <= minRange && x >= minRange && x <= maxRange) {

analogWrite(leftMotorENB,z);

analogWrite(rightMotorENB,z);

digitalWrite(leftMotorBackward,HIGH);

digitalWrite(rightMotorBackward,HIGH);

digitalWrite(leftMotorForward,LOW);

digitalWrite(rightMotorForward,LOW); }

// move back and right

else if(y <= minRange && x <= minRange) {

digitalWrite(leftMotorENB,maxSpeed);

digitalWrite(rightMotorENB,minSpeed);

digitalWrite(leftMotorForward,LOW);

digitalWrite(rightMotorForward,LOW);

digitalWrite(rightMotorBackward,HIGH);

digitalWrite(leftMotorBackward,HIGH); }

// move back and left

else if(y <= minRange && x >= maxRange) {

digitalWrite(leftMotorENB,minSpeed);

digitalWrite(rightMotorENB,maxSpeed);

digitalWrite(leftMotorForward,LOW);

digitalWrite(rightMotorForward,LOW);

digitalWrite(rightMotorBackward,HIGH);

digitalWrite(leftMotorBackward,HIGH); } }

void setup() {

// initial settings for motors off and direction forward

pinMode(leftMotorForward, OUTPUT);

pinMode(rightMotorForward, OUTPUT);

pinMode(leftMotorBackward, OUTPUT);

pinMode(rightMotorBackward, OUTPUT);

/* initialize motor enable pins as output */

pinMode(leftMotorENB, OUTPUT);

pinMode(rightMotorENB, OUTPUT);

Blynk.begin(auth, ssid, pass); }

void loop() {

Blynk.run(); }

BLYNK_WRITE(V1)

{ int x = param[0].asInt();

int y = param[1].asInt();

moveControl(x,y); }

BLYNK_WRITE(V2)

{ z = param[0].asInt(); }      // code end here

HOPE U WOULD HAVE CREATED THIS PROJECT!!!




Comments

amazon banner

Popular posts from this blog

Motion Detector Camera

Motion Detector With Photo Capture Camera   Hello friends!! Welcome to This Blog. In this Blog, we will make a motion sensor detector with photo capture using ESP32CAM and the PIR module. The logic behind is when the PIR sensor detects any motion, the ESP32CAM will start taking the pictures. So you can use this project as a security camera. In thisblog, I will share the circuitdiagram, Arduino sketch, and the component list, so after reading the complete article you can easily make this project. Now ESP32 CAM is a small camera module that has ESP32S chip on the back and some GPIO pins to connect peripherals and it also has a micro-SD card slot, where you can insert the micro-SD card and store the pictures. Now before going to the circuit diagram and Arduino sketch, let me give you a quick overview of this project.  Components Required ESP32-CAM  PIR Motion Sensor Module BC547 NPN Transistor 220ohm, 1k, 10k Resistor. LED 5-mm FTDI 232 USB to Serial Interface board 5 v...

Automatic Water Tap Control

Automatic Water Tap Control System Using Arduino Hello, viewers welcome to our new project demonstration.The project title is automatic basin tap control system using Arduino with IR obstacle sensor. The project have another part which is detect the motion and control the light automatically.  Let's see how it is made.  Components list: * Arduino Nano * 16*2 LCD display * Water Tap * IR Sensor * 10k potentiometer * PIR Motion Sensor * 5v LED light * 12v Dc water pump * 12v transformer * BC547 Transistor * 4*2 Battery * On/OFF Switch * 10k Resistor * 100ohm resistor * Veroboard * Some Jumper wire For making this project single Arduino nano-board, 16*2 LCD Display. This is a PIR motion sensor and 5v LED light.The power switch for the circuit. This is another PIR motion sensor and 5v LED light. Here we supply the power using two 4V batteries. This is the rectifier circuit with 12V Auto Dc Transformer. Here we connect the 12V dc water pump motor. This IR obstacle sensor and water ...

Wireless Weather Station

Wireless weather station u sing Arduino   Dear friends welcome back! Today we are going to build a wireless weather station project using Arduino.Without any further delay, let’s get started!  A Wireless Weather Station with a big 3.2” Color TFT display. The project is up and running,and it displays the current date and time, the indoor temperature and humidity, and the outdoor temperature and humidity. The readings of the outdoor sensor are updated every second in order to demonstrate that we have a reliable communication link established with the transmitter which is outside at a distance of 5m. The readings of the indoor sensor are updated once every minute. The heart of the project is the fast Arduino Due, there is no flickering of the screen when the values are updated. Let’s now see the transmitter.  The transmitter is much simpler. It consists of an Arduino Nano, a DHT22 sensor and the NRF24L01 wireless transceiver module. The transmitter reads the temperature and ...