MIT APP INVENTOR 2 -nodemcu wifi car control app

Поделиться
HTML-код
  • Опубликовано: 12 сен 2024
  • control app using video - • Nodemcu(l298n motor dr...
    Arduino Code Available on:- www.knowled.in
    #MITappinventor #nodemcuprojects #wificar

Комментарии • 61

  • @suvrojitkumarsaha8857
    @suvrojitkumarsaha8857 5 лет назад +6

    Thank you so much Sir. You really helped me out :)

  • @momatechmkd4056
    @momatechmkd4056 3 года назад +3

    très merci beaucoup pour cette vidéo

  • @alexej7603
    @alexej7603 4 года назад +2

    Спасибо большое. Очень хорошее видео и понятное! А не могли бы вы снять видео и объяснить, как получать данные с датчиков? Например если на машинку установить дальномер, датчик освещенности, температуры и прочее... А так же, ещё бы и обратную связь сделать, для получения статуса управления, если вдруг машинка находится вне пределов видимости. Было бы очень здорово! Заранее благодарю за ответ.

  • @aofddofa6661
    @aofddofa6661 3 года назад +2

    is this vid about button and text box resizing 17 min ? .. i thought it's about wifi connection!

  • @opticnewtella
    @opticnewtella Год назад +1

    Best video ever.

  • @avinash_mundhe5244
    @avinash_mundhe5244 4 года назад +2

    Hi
    I regularly watch your videos on RUclips. They're really helpful.
    Needed a small favour
    Can I get Arduino code for sending sensor data from Node mcu to mit android app through WiFi - WiFi communication
    Thanks!

  • @gunoitiaya9058
    @gunoitiaya9058 3 года назад +1

    thank you this was so helpfull to me

  • @basilsjoseph3745
    @basilsjoseph3745 4 года назад +2

    I have a doubt...
    If we create an app to open the webpage hosted by ESP8266(eg:loading the IP 192.168.43.256) in a browser using webview,
    do we need to code each button to redirect ,like in your case , to move left, when left button is clicked, redirect to "IP/left".

  • @mtsuol
    @mtsuol 5 лет назад

    very nice work. very very useful for me thanks dear. good work

    • @Knowled
      @Knowled  5 лет назад

      thank u bro...

  • @valeriotarabella
    @valeriotarabella Год назад

    I hope you make a reaction and a comment about what you think a live performance of Elisa in halleluja 2016.

  • @erikfekete356
    @erikfekete356 5 лет назад +1

    Hey, I have a very important question.
    I am receiving the URL this way: if (req.indexOf("/on") != -1)
    {
    Serial.println("Turn on");
    digitalWrite(relay,HIGH);
    }
    It works fine and everything, but how can I SEND data from the arduino/esp8266/nodemcu TO the smartphone???

    • @Knowled
      @Knowled  5 лет назад

      string method bro

    • @Knowled
      @Knowled  5 лет назад

      techwarriorsinfo.blogspot.com/2019/02/nodemcu-car-motor-control-using.html

    • @erikfekete356
      @erikfekete356 5 лет назад

      @@Knowled Thanks!!!

  • @ms.hacker6822
    @ms.hacker6822 Месяц назад

    hey can you share me code. this URL is not opening.

  • @mrzaizai2k160
    @mrzaizai2k160 4 года назад +1

    if i want to send data back from esp8266 to MIT app (like distance sensor). How can i do that??

    • @Knowled
      @Knowled  4 года назад

      use iot method

    • @user-dt7xy7hr7k
      @user-dt7xy7hr7k 4 года назад

      randomnerdtutorials.com/projects-esp8266/

  • @marwaboukechi4585
    @marwaboukechi4585 3 года назад +1

    plese can you help me how to use it with a bleutooth module what shoudl i change !!!!!! thansks i w'd be grateful man !

    • @Knowled
      @Knowled  3 года назад +1

      Wait I update another video .....soon....

    • @marwaboukechi4585
      @marwaboukechi4585 3 года назад +1

      Thank you sir
      I am staying by tuned
      ❤️ All love for you
      Keep it up !

    • @marwaboukechi4585
      @marwaboukechi4585 3 года назад +1

      I am staying tuned*

  • @manofmesopotamia7602
    @manofmesopotamia7602 3 года назад +1

    how about enter ip address

  • @datuamasputra5416
    @datuamasputra5416 3 года назад

    Nice

  • @lesterescala5390
    @lesterescala5390 10 месяцев назад

    Code not available

  • @Sukrin_H
    @Sukrin_H 4 года назад +1

    hiii.. buttom start????

    • @Knowled
      @Knowled  4 года назад +1

      no need start button up,down button act as start button

  • @angkhoaphantran367
    @angkhoaphantran367 4 года назад +1

    I need Access Point code and app , Can you help me ? .. thank you so much

    • @Knowled
      @Knowled  4 года назад

      watch my blogs

  • @gunoitiaya9058
    @gunoitiaya9058 3 года назад

    but i could'nt find the rest of the video when it will be connected to the car by wifi ! can you help me with that plz ?

    • @Knowled
      @Knowled  3 года назад

      Yes how can help you... Tell me ur problem...

    • @Knowled
      @Knowled  3 года назад

      ok ok will try .....

    • @gunoitiaya9058
      @gunoitiaya9058 3 года назад

      @@Knowled i changed the Nodemcu with arduino what should i change in the code ? please answer me i need to finish the project or fail the semester :'(

    • @gunoitiaya9058
      @gunoitiaya9058 3 года назад

      @@Knowled this code :
      IP Checking code:
      #include
      WiFiClient client;
      WiFiServer server(80);
      const char* ssid = "wifi name";
      const char* password = "password";
      void setup()
      {
      Serial.begin(115200);
      connectWiFi();
      server.begin();
      }
      void loop()
      {
      }
      void connectWiFi()
      {
      Serial.println("Connecting to WIFI");
      WiFi.begin(ssid, password);
      while ((!(WiFi.status() == WL_CONNECTED)))
      {
      delay(300);
      Serial.print("..");
      }
      Serial.println("");
      Serial.println("WiFi connected");
      Serial.println("NodeMCU Local IP is : ");
      Serial.print((WiFi.localIP()));
      }
      Car control code:
      #include
      WiFiClient client;
      WiFiServer server(80);
      const char* ssid = "wifi name";
      const char* password = "password";
      String data ="";
      int leftMotorForward = 2; /* GPIO2(D4) -> IN3 */
      int rightMotorForward = 15; /* GPIO15(D8) -> IN1 */
      int leftMotorBackward = 0; /* GPIO0(D3) -> IN4 */
      int rightMotorBackward = 13; /* GPIO13(D7) -> IN2 */
      void setup()
      {
      pinMode(leftMotorForward, OUTPUT);
      pinMode(rightMotorForward, OUTPUT);
      pinMode(leftMotorBackward, OUTPUT);
      pinMode(rightMotorBackward, OUTPUT);
      server.begin();
      }
      void loop()
      {

      client = server.available();
      if (!client) return;
      data = checkClient ();

      if (data == "up") MotorForward();

      else if (data == "down") MotorBackward();

      else if (data == "left") TurnLeft();

      else if (data == "right") TurnRight();

      else if (data == "stop") MotorStop();
      }
      void MotorForward(void)
      {
      digitalWrite(leftMotorForward,HIGH);
      digitalWrite(rightMotorForward,HIGH);
      digitalWrite(leftMotorBackward,LOW);
      digitalWrite(rightMotorBackward,LOW);
      }
      void MotorBackward(void)
      {
      digitalWrite(leftMotorBackward,HIGH);
      digitalWrite(rightMotorBackward,HIGH);
      digitalWrite(leftMotorForward,LOW);
      digitalWrite(rightMotorForward,LOW);
      }
      void TurnLeft(void)
      {

      digitalWrite(leftMotorForward,LOW);
      digitalWrite(rightMotorForward,HIGH);
      digitalWrite(rightMotorBackward,LOW);
      digitalWrite(leftMotorBackward,HIGH);
      }
      void TurnRight(void)
      {

      digitalWrite(leftMotorForward,HIGH);
      digitalWrite(rightMotorForward,LOW);
      digitalWrite(rightMotorBackward,HIGH);
      digitalWrite(leftMotorBackward,LOW);
      }
      void MotorStop(void)
      {

      digitalWrite(leftMotorForward,LOW);
      digitalWrite(leftMotorBackward,LOW);
      digitalWrite(rightMotorForward,LOW);
      digitalWrite(rightMotorBackward,LOW);
      }
      /***RECEIVE DATA FROM the APP ***/
      String checkClient (void)
      {
      while(!client.available()) delay(1);
      String request = client.readStringUntil('
      ');
      request.remove(0, 5);
      request.remove(request.length()-9,9);
      return request;
      }

    • @Knowled
      @Knowled  3 года назад

      @@gunoitiaya9058 add first library file...

  • @حيدرحسن-ص4ح
    @حيدرحسن-ص4ح 5 лет назад

    thanx alot...thats amazing ....please arduino code

    • @Knowled
      @Knowled  5 лет назад

      code link:-techwarriorsinfo.blogspot.com/2019/02/nodemcu-car-motor-control-using.html

  • @inesdemariajorge5691
    @inesdemariajorge5691 2 года назад

    Can you help? What's the next to connect?

    • @Knowled
      @Knowled  2 года назад

      ruclips.net/video/6zXFDCTChuc/видео.html

    • @inesdemariajorge5691
      @inesdemariajorge5691 2 года назад

      @@Knowled thank you!
      You can explain to me how to do it with an arduino wifi?

  • @kishorekumarr2061
    @kishorekumarr2061 5 лет назад

    sir can i get the code for motor control....so it will be easy to understand program too

    • @Knowled
      @Knowled  5 лет назад

      watch my blogs:-techwarriorsinfo.blogspot.com/2019/02/nodemcu-car-motor-control-using.html

  • @walidkiblawi9672
    @walidkiblawi9672 Год назад

    hello, i need the code

  • @zoomtechbangla4455
    @zoomtechbangla4455 4 года назад +1

    Thank you so much Sir Give me mit aia file

    • @Knowled
      @Knowled  4 года назад

      no file sir watch my video sir

  • @marcorosas3554
    @marcorosas3554 5 лет назад

    Tienes el código de Arduino?

  • @srinithi9510
    @srinithi9510 2 месяца назад

    Explain this in tamil

  • @afacreatif
    @afacreatif 4 года назад

    ijin belajar om

  • @habialq8197
    @habialq8197 5 лет назад

    Please share arduino code Sir :)

    • @Knowled
      @Knowled  5 лет назад

      watch my blogs code link:-techwarriorsinfo.blogspot.com/2019/02/nodemcu-car-motor-control-using.html

  • @douha4373
    @douha4373 5 лет назад

    how to test this app with a real car plz thank you

    • @Knowled
      @Knowled  5 лет назад +1

      i'm not check this project in real car ....but...soon answer this qustion thank u....

    • @douha4373
      @douha4373 5 лет назад +1

      @@Knowled waiting thank you