HC05 Bluetooth Modül (DIP)

HC05 Bluetooth Modül (DIP)

Satış Fiyatı
147,77 TL
(Kdv Dahil)
Marka
KO
Stok Kodu
HC05
Fiyat
3,81 USD + KDV
*17,90 TL den başlayan taksitlerle!!
Aynı gün kargo
Kampanyalı Ürün
Beğendiyseniz bu ürünü sosyal medyada paylaşın!
Ücretsiz Kargo İmkanı
2.000 TL ve üzeri
Kapıda Ödeme Avantajı
Kapıda ödeme yapabilirsiniz
Güvenli Alışveriş
256Bit SSL Sertifikası
Taksit Seçeneği
Kredi Kartı ile Güvenli Ödeme
 HC05 HC-05 bluetooth haberleşmesi üzerinden kablosuz seri haberleşme uygulamaları için geliştirilmiş modüldür. Master veya slave olarak kullanabilme imkanı vardır. 6pin dip ayaklı yapıdadır. Kolayca arduino ve diğer elektronik devrelerinize uart üzerinden  bağlayarak kablosuz haberleşme imkanı verir. 2.4 ghz haberleşme frekansında 10 metre kadar bir alanda haberleşme yapabilir. 6Va kadar besleme voltajı ile çalışabilir. Haberleşme voltaj seviyesi 3.3V dur. 



Özellikler:
    Çalışma Gerilimi: 3.3V - 6V
    Level:3.3V
    Power:3.6v - 6V
    Çalışma Akımı: Haberleşme kurulurken 30mA Haberleşme yapılırken 10mA
    Bluetooth Protokolü: Bluetooth 2.0+EDR(Gelişmiş Veri Hızı)
    Output Power Class: Class 2
    Çalışma Frekansı: 2.4GHz haberleşme frekansı
    Hassasiyet: ≤-80 dBm
    Çıkış Gücü:≤+4 dBm
    Haberleşme Mesafesi: 10m ( Açık alanda )
    Asenkron Hız: 2.1 MBps/160 KBps
    Senkron Hız: 1 MBps/1 MBps
    Pinler : EN, VCC, GND, TXD, RXD, STATE
    Bağlantı Durum Ledi : AT-Yavaş, Direk Bağlantı-Hızlı
    Boyutları: 4.3cm x 1.5cm x 0.6cm
 
Paket İçeriği:
1 Adet HC05 Modül

Bu ürüne ilk yorumu siz yapın!
Bu ürünün fiyat bilgisi, resim, ürün açıklamalarında ve diğer konularda yetersiz gördüğünüz noktaları öneri formunu kullanarak tarafımıza iletebilirsiniz.
Görüş ve önerileriniz için teşekkür ederiz.
// Basic bluetooth test sketch. HC-0x_FC-114_01_9600
//  Uses hardware serial to talk to the host computer and software serial for communication with the bluetooth module
//
//  Pins
//  BT VCC to Arduino 5V out. 
//  BT GND to GND
//  Arduino D3 to BT RX through a voltage divider
//  Arduino D2 BT TX (no need voltage divider)
//
//  When a command is entered in the serial monitor on the computer 
//  the Arduino will relay it to the bluetooth module and display the result.
//
// The HC-0x FC-114 modules require CR and NL

#include
SoftwareSerial BTSerial(2, 3); // RX | TX

char c = ' ';
boolean NL = true;

void setup() 
{
      Serial.begin(9600);
      Serial.println("Sketch HC-0x_FC-114_01_9600");
      Serial.println("Arduino with HC-0x FC-114 is ready");
      Serial.println("Make sure Both NL & CR are set");
      Serial.println("");
      
      // FC-114 default baud rate is 9600
      BTSerial.begin(9600);  
      Serial.println("BTserial started at 9600");
      Serial.println("");
      
}

void loop()
{

    // Read from the Bluetooth module and send to the Arduino Serial Monitor
    if (BTSerial.available())
    {
        c = BTSerial.read();
        Serial.write(c);
    }
    
      
    // Read from the Serial Monitor and send to the Bluetooth module
    if (Serial.available())
    {
        c = Serial.read();
        BTSerial.write(c);   
        
        // Echo the user input to the main window. The ">" character indicates the user entered text.
        if (NL) { Serial.print(">");  NL = false; }
        Serial.write(c);
        if (c==10) { NL = true; }
    }

}
 
 
 
 

HC05 Bluetooth Modül (DIP) KO HC05 Bluetooth Modül (DIP) ürününü ve BLUETOOTH MODÜLLER kategorisindeki ürünlerin çeşitleri ve fiyatlarını görebilirsiniz. HC05
HC05 Bluetooth Modül (DIP)

Tavsiye Et

*
*
*
IdeaSoft® | E-Ticaret paketleri ile hazırlanmıştır.