Friday, September 20, 2019

IoT Based DC Motor Direction And Speed Control Using Blynk App


Blynk App Configuration Video




CODE

#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
char auth[] = " Your Blynk Auth code";
char ssid[] = "Wi-Fi name";
char pass[] = "wifi password";
void setup()
{
Serial.begin(9600);
Blynk.begin(auth, ssid, pass); 
}
void loop()
{
Blynk.run();
}

12 comments:

  1. hello..I saw your video on youtube and it was really interesting. i am a beginner in arduino..and i am very interested to trying this tutorial..can you please give me full code.

    ReplyDelete
    Replies
    1. Hey hi I have provided full code. Please watch the video of blynk app configuration
      video

      Delete
  2. I want to make a car with servo steering.... How to control 1 servo and 1 dc mini motor with blynk app... I have nodemcu, mechanical setup, L298n, blynk app

    ReplyDelete
    Replies
    1. Hey Hi, now I will upload a blog post related to your need please go through it.

      Delete
    2. Hi i need also the same thing please upload

      Delete
    3. I have already uploaded that please check my blog. I have created using servo

      Delete
    4. hi thanks for reply. please post ful code for the above project

      Delete
    5. I have provided the full code.

      Delete
  3. Hello sir
    I am unable to find the full code

    ReplyDelete
    Replies
    1. There is no much code required. Go through app settings video. You will find that.

      Delete
  4. Where i can find the full code?

    ReplyDelete
    Replies
    1. There is no much code required. Go through app settings video. You will find that

      Delete

CIRCUITS WITH PROJECTS SOURCE CODES

Flex Sensor And Accelerometer-based Gesture Controlled Robot With Robot...