Ks0055 keyestudio Bluetooth Module: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
No edit summary
 
(13 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Bluetooth Module==
<br>[[File:ks0055-1.png|500px|frameless|thumb]]<br>


<br>
==Bluetooth HC-06 Module==
<br>[[File:KS0055 (7).png|500px|frameless|thumb]]<br>
<br>
==Introduction==
==Introduction==
This Bluetooth module can easily achieve serial wireless data transmission. Its operating frequency is among the most popular 2.4GHz ISM frequency band (i.e. Industrial, scientific and medical). It adopts Bluetooth 2.1+EDR standard. In Bluetooth 2.1, signal transmit time of different devices stands at a 0.5 seconds interval so that the workload of bluetooth chip can be reduced substantially and more sleeping time can be saved for bluetooth. This module is set with serial interface, which is easy-to-use and simplifying overall design/development cycle.<br>
This Bluetooth module can easily achieve serial wireless data transmission. Its operating frequency is among the most popular 2.4GHz ISM frequency band (i.e. Industrial, scientific and medical). <br>
 
It adopts Bluetooth 2.1+EDR standard. In Bluetooth 2.1, signal transmit time of different devices stands at a 0.5 seconds interval, so that the workload of Bluetooth chip can be reduced substantially and more sleeping time can be saved for Bluetooth. <br>
This module is set with serial interface, which is easy-to-use and simplifying overall design/development cycle.


<br>
==Specification==
==Specification==
*Bluetooth protocol: Bluetooth 2.1+ EDR standard
* Bluetooth protocol: Bluetooth 2.1+ EDR standard
*USB protocol: USB v1.1/2.0
* USB protocol: USB v1.1/2.0
*Operating frequency: 2.4GHz ISM frequency band
* Operating frequency: 2.4GHz ISM frequency band
*Modulation mode: Gauss frequency Shift Keying
* Modulation mode: Gauss frequency Shift Keying
*Transmit power: ≤ 4dBm, second stage
* Transmit power: ≤ 4dBm, second stage
*Sensitivity: ≤-84dBm at 0.1% Bit Error Rate
* Sensitivity: ≤-84dBm at 0.1% Bit Error Rate
*Transmission speed: 2.1Mbps(Max)/160 kbps(Asynchronous); 1Mbps/1Mbps(Synchronous)
* Transmission speed: 2.1Mbps(Max)/160 kbps (Asynchronous); 1Mbps/1Mbps (Synchronous)
*Safety feature: Authentication and encryption
* Safety feature: Authentication and encryption
*Supported configuration: Bluetooth serial port (major and minor)
* Supported configuration: Bluetooth serial port (major and minor)
*Supply Voltage: +3.3 VDC 50mA
* Supply Voltage: 5 V DC 50mA
*Operating temperature: -20 to 55℃
* Operating temperature: -20 to 55℃
*Size: 36.5*16mm
*Weight: 4g




<br>
==Connection Diagram ==
==Connection Diagram ==
<br>[[File:ks0068 31-2.png|500px|frameless|thumb]]<br>
<br>[[File:KS0055-1.png|700px|frameless|thumb]]<br>


<br>
==Sample Code==
==Sample Code==
<pre>
<pre>
Line 46: Line 51:
</pre>
</pre>


<br>
==Resources ==
==Resources ==


'''Video'''
* '''Video'''<br>
http://video.keyestudio.com/ks0055/


http://www.keyestudio.com/wp/2016/05/ks0055-keyestudio-bluetooth-module/
* '''PDF and Code'''<br>
https://fs.keyestudio.com/KS0055


'''Datasheet'''


http://www.keyestudio.com/files/index/download/id/1463714223/
<br>


==Buy from ==
==Buy from ==


http://www.keyestudio.com/keyestudio-bluetooth-module-for-arduino.html
*[https://www.keyestudio.com/keyestudio-hc-06-wireless-bluetooth-module-for-arduino-p0192.html   '''Official Website''']
 
*[https://www.aliexpress.com/store/product/Free-shipping-bluetooth-wireless-serial-pass-through-module-with-enable-and-status-output-from-the-machine/1452162_2046099293.html?spm=2114.12010615.8148356.13.354e3145sPykO8    '''Aliexpress store''']
 
*[https://www.amazon.com/dp/B0177W7Z9M  '''Shop on amazon''']


https://www.amazon.com/Keyestudio-Bluetooth-Module-Arduino-raspberry/dp/B0177W7Z9M/ref=sr_1_cc_2?s=aps&ie=UTF8&qid=1487054061&sr=1-2-catcorr&keywords=keyestudio+Bluetooth+Module


[[category:Module]]
[[category:Module]]

Latest revision as of 10:41, 8 January 2021


Bluetooth HC-06 Module


thumb


Introduction

This Bluetooth module can easily achieve serial wireless data transmission. Its operating frequency is among the most popular 2.4GHz ISM frequency band (i.e. Industrial, scientific and medical).
It adopts Bluetooth 2.1+EDR standard. In Bluetooth 2.1, signal transmit time of different devices stands at a 0.5 seconds interval, so that the workload of Bluetooth chip can be reduced substantially and more sleeping time can be saved for Bluetooth.
This module is set with serial interface, which is easy-to-use and simplifying overall design/development cycle.


Specification

  • Bluetooth protocol: Bluetooth 2.1+ EDR standard
  • USB protocol: USB v1.1/2.0
  • Operating frequency: 2.4GHz ISM frequency band
  • Modulation mode: Gauss frequency Shift Keying
  • Transmit power: ≤ 4dBm, second stage
  • Sensitivity: ≤-84dBm at 0.1% Bit Error Rate
  • Transmission speed: 2.1Mbps(Max)/160 kbps (Asynchronous); 1Mbps/1Mbps (Synchronous)
  • Safety feature: Authentication and encryption
  • Supported configuration: Bluetooth serial port (major and minor)
  • Supply Voltage: 5 V DC 50mA
  • Operating temperature: -20 to 55℃



Connection Diagram


thumb


Sample Code

int val; 
int ledpin=13; 
void setup() 
{ 
Serial.begin(9600);
 pinMode(ledpin,OUTPUT); 
} void loop()
{ val=Serial.read(); 
if(val=='a')
 { 
digitalWrite(ledpin,HIGH); 
delay(250); 
digitalWrite(ledpin,LOW); 
delay(250);
 Serial.println("keyestudio");
}
}


Resources

  • Video

http://video.keyestudio.com/ks0055/

  • PDF and Code

https://fs.keyestudio.com/KS0055



Buy from