الوصف
المميزات
- حساسية حتي -80 مللي ديسيبل
- قوة إرسال إشارة لاسلكية و حتى +4 مللي ديسيبل
- إستهلاك بسيط للبطاريات و قوة إشارة خرج من 1.8 و حتى 3.6 فولت
- إمكانية التحكم في خصائصها عبر أوامر AT
- إيريال مدمج باللوحة
- مخارج توصيل لسهولة التوصيل للوحات البريدبورد
طريقة التوصيل
برنامج التشغيل
// Basic Bluetooth sketch HC-05_01 // Sends "Bluetooth Test" to the serial monitor and the software serial once every second. // // Connect the HC-05 module and data over Bluetooth // // The HC-05 defaults to commincation mode when first powered on. // The default baud rate for communication is 9600 #include <SoftwareSerial.h> SoftwareSerial BTserial(2, 3); // RX | TX // Connect the HC-05 TX to Arduino pin 2 RX. // Connect the HC-05 RX to Arduino pin 3 TX through a voltage divider. // char c = ' '; void setup() { Serial.begin(9600); Serial.println("Enter AT commands:"); // HC-06 default serial speed for communcation mode is 9600 BTserial.begin(9600); } void loop() { BTserial.println("Bluetooth Test"); Serial.println("Bluetooth Test"); delay(1000); }
التقييمات
لا يوجد تقييمات حالياً.