• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
Mechanic37

Mechanic37

इंजीनियरिंग और फिजिक्स,केमिस्ट्री

  • भौतिक विज्ञान
  • इंजीनियरिंग नोट्स
    • मैकेनिकल इंजीनियरिंग
    • इलेक्ट्रिकल इंजीनियरिंग
    • इलेक्ट्रॉनिक इंजीनियरिंग
    • इंजीनियरिंग प्रोजेक्ट्स
  • रसायन
  • जीव विज्ञान
  • कंप्यूटर
Home » Led को Android phone की Bluetooth से control करें

Led को Android phone की Bluetooth से control करें

December 25, 2022 by admin Leave a Comment

0
(0)

Hello Readers,Android mobile की Bluetooth का use कर Led Control कैसे करें इस Arduino Project में यही Led control system तैयार किया है इसके लिये मेने एक Android mobile appDevlopeकिया है यह Android app Arduino से Connect Bluetooth Module HC-06 से connect हो कर led control करेगा इसके लिए GUI Button होंगे जिनको press करने पर यह Arduino को One byte number send करेगा Bluetooth के ज़रिये जो Arduino पर recieve हो कर Arduino Programming से Output  हम Led control on-off करने के लिए use करेंगे


(adsbygoogle = window.adsbygoogle || []).push({});

Android Proximity Sensor using with Arduino

  • Robotic Arm Gripper Bnaye
  • Make A  Power Bank
  • Home Automation In Hindi 

इस Bluetooth control System के लिए Material

  • Arduino uno
  • Android mobile phone
  • Bluetooth Hc-06
  • Led
  • jumper wire
  • Breadbord
  • Android app


(adsbygoogle = window.adsbygoogle || []).push({});

ये सब आप mechanic37.com की shop से खरीद सकते है-

Arduino shop

Arduino से circuit बनाये 

सबसे पहले इस material को इक्कठा करने के बाद इनसे jumper wires का use कर के arduino circuit बनाएं इस प्रकार

  1. Connect Led to Arduino’s digital pin 13 और Gnd pin से connect करें 
  2. Bluetooth module Hc-06 की  Rx-Tx दोनों पिनों को 10,11 से connect करें
  3. Hc-06 की Vcc pin को Arduino की 5v से connect करें
  4. Gnd को Arduino की Gnd से connect करें

Led Control App Apk Download करें 

Led Control Android app

इसी android app से led control होगी Android app को मेने Arduino से connect bluetooth module hc-06 को Android mobile phone की bluetooth से connect करने के लिए बनाया है यह Android bluetooth का use कर Arduino की bluetooth को one byte number send करेगा और यह number 0,1 के form में होगा आप programming को read करें मेने उन्ही numbers को use किया है जब आप android app में led on के button पर click करेंगे तब bluetooth पर 1 send करेगा और इस प्रकार जब led off button पर click करेंगे तब 0 send करेगा 

Download Led Control App

  • Bluetooth controlled robot bnaye
  • Make A Robotic Arm


(adsbygoogle = window.adsbygoogle || []).push({});

How to pair with app

सबसे पहले नीचे की steps clear करें program upload करने के बाद hc-06 bluetooth module को Android app से connect करने के लिए bluetooth on करें और android app को launch करें और और connect पर click करें अब आपके सामने सभी search और pair की गई device आ जाएँगी जिनमे आप hc-06 को choose करें और password-1234 fill करें यह android से pair हो गयी होगी अब आप अपने led control कर सकते है 

Arduino Led Programming for Android

Arduino programming for android

I hope अपने सब clear कर लिया होगा अब Bluetooth module hc-06 के Rx और Tx pin को remove कर के Arduino IDE को launch करें और इस program को copy कर के arduino Ide software में paste करें program varify कर program को Arduino uno microcontroller board में upload करें 

  • Arduino Projects
  • Arduino क्या है 

upload kese करते है इसको जानने के लिए इस post को read कर सकते है 


(adsbygoogle = window.adsbygoogle || []).push({});

How upload a program in Arduino uno 

#include<SoftwareSerial.h>

int bluetoothRx = 2; int bluetoothTx = 3;

SoftwareSerial bluetooth(bluetoothTx, bluetoothRx);

void setup()

{

pinMode(13, OUTPUT);

Serial.begin(9600);

//Setup Bluetooth serial connection to android

bluetooth.begin(9600);

}

void loop()

{

//Read from bluetooth and write to usb serial

if(bluetooth.available())

{

int num = bluetooth.read();

Serial.println(num);
if(num==1){

 digitalWrite(13, HIGH);
}
if(num==0){
  digitalWrite(13, LOW);

}

  • What is GUI
  • Getting started with Arduino

Android Proximity Sensor using with Arduino

यह Android mobile phone की Bluetooth से Arduino के लिए Hc-06 Bluetooth Module को connect करना और फिर उस connection से Led control करना इस project में है यह Hc-06 के लिए Basic Project भी है इसमें jumper wire का use safty से करे loose connection नही करें  ये projects आपको पसंद आया हो तो इसे अपने friends से social media पर share करें और अपने School and college में भी share करें  facebook,twitter,google+ पर share जरूर करें और mechanic37.com की हर एक new post अपने email पर पाने के लिए उपर subscription box से subscribe करे और आप को कोई भी problem हो या कोई सुझाव हो तो उसे comment कर के बतायें


(adsbygoogle = window.adsbygoogle || []).push({});

यह पेज आपको कैसा लगा ?

Average rating 0 / 5. Vote count: 0

Share this:

  • Click to share on WhatsApp (Opens in new window)
  • Click to share on Facebook (Opens in new window)
  • Click to print (Opens in new window)

Filed Under: Arduino

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

विषय

  • भौतिक विज्ञान
  • मैकेनिकल इंजीनियरिंग
  • इलेक्ट्रॉनिक्स इंजीनियरिंग
  • इलेक्ट्रिकल इंजीनियरिंग
  • रसायन विज्ञान
  • जीव विज्ञान 
  • कंप्यूटर 
  • इंजीनियरिंग प्रोजेक्ट्स

Footer

सोशल मीडिया पर जुड़ें

  • Facebook
  • Twitter
  • Instagram
  • Youtube

बनाना सीखें

  • ड्रोन कैसे बनाएं ?
  • रोबोट कैसे बनाएं ?
  • वेबसाइट कैसे बनाएं ?
  • एंड्राइड एप कैसे बनाएं ?

Policies

  • Shipping and Delivery
  • Refund and Cancellation Policy
  • Privacy Policy
  • Terms and Conditions

Shop

  • Shop
  • My account
  • Checkout
  • Cart

Mechanic37 2015 - 2024

  • साइटमैप
  • संपर्क करें
  • हमारे बारे में
  • विज्ञापन दें
  • Mechanical Notes
  • Electrical Notes
  • भौतिक विज्ञान
  • इलेक्ट्रॉनिक इंजीनियरिंग
  • रसायन विज्ञान
  • जीव विज्ञान
  • कंप्यूटर सीखें
  • इंजीनियरिंग प्रोजेक्ट्स
  • ऑटोकैड टुटोरिअल