मंगलवार, 16 मार्च 2021

HC-05 Bluetooth Module with Arduino-MIT App Inventor..

 आज हम इस टिटोरियल में सीखे गए बुलेटूथ मॉडुल (HC-05 Bluetooth Module with Arduino-MIT App)
को कैसे कनेक्ट करते ह। 
कॉम्पोनेन्ट लिस्ट नीचे दिया गया ह। 

-arduino uno ,

-buletooth  module ,

-led 

-थोड़ा connector ,

-एक मोबाइल android 

निचे विडिओ लिंक दिया हुआ ह उसके मदद से आप connenation कर सकते ह। 

https://youtu.be/CoBSyhI7Yi4


नोट -mit app download link

code-for arduino uno-

/*  

HC05 - Bluetooth AT-Command mode 

*/

#include <SoftwareSerial.h>

SoftwareSerial MyBlue(6, 7); // RX | TX

int flag = 0;

int LED = 8;

void setup()

{  

  Serial.begin(9600);

  MyBlue.begin(9600);

  pinMode(LED, OUTPUT);

  Serial.println("Ready to connect\nDefualt password is 1234 or 000");

}

void loop()

{

   if( MyBlue.available()>0){

    // read the bluetoot data and store it

  flag = MyBlue.read();

    char Rec = char(flag);

    if (Rec != '0')

    {

    Serial.println(Rec);

    } 

  }

  if (flag == 'a')

  {

    digitalWrite(LED, HIGH);

    Serial.println("LED On");

  }

  if (flag == 'b')

  {

    digitalWrite(LED, LOW);

    Serial.println("LED Off");

  }

}


कोई टिप्पणी नहीं:

एक टिप्पणी भेजें

3.5 " TFT LCD shield

                                                                                                                                            ...