HC05 Bluetooth Modül (DIP)
Satış Fiyatı
157,42 TL
(Kdv Dahil)
Kategori
Marka
Stok Kodu
HC05
Fiyat
3,81 USD + KDV
Havale
155,06 TL
(%1,50 havale indirimi)
*28,07 TL den başlayan taksitlerle!!
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
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
// 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; }
}
}