/BluetoothATCommands

Software was made to use the AT commands for bluetooth modules.

Primary LanguageC++GNU General Public License v3.0GPL-3.0

Bluetooth AT Komutları - Türkçe

Bu doküman, Bluetooth üzerinden AT komutlarını kullanmak için yapılmıştır.

İlk olarak 'AT' komutunu seri haberleşme ekranı üzerinden yolluyoruz. Eğer ekranda 'OK' yazarsa, artık diğer komutları yollayabiliriz.


Bluetooth Haberleşme Hızı Ayarları

  • AT+BAUD1 // 1200 Baud
  • AT+BAUD2 // 2400 Baud
  • AT+BAUD3 // 4800 Baud
  • AT+BAUD4 // 9600 Baud (Tavsiye Edilen)
  • AT+BAUD5 // 19200 Baud
  • AT+BAUD6 // 38400 Baud
  • AT+BAUD7 // 57600 Baud
  • AT+BAUD8 // 115200 Baud

'AT+BAUD4' komutunu yollarsak, ekranda 'OK9600' ifadesi yazacaktır.


Bluetooth İsim Ayarları

  • AT+NAME
 
AT+NAMEresul, AT+NAMEtuzen, AT+NAMEResul01

'AT+NAMEResul_HC06' komutunu yollarsak, ekranda 'OKsetname' ifadesi yazacaktır.


Bluetooth Şifre Ayarları

  • AT+PIN
AT+PIN1234 (Doğru)
AT+PIN0123 (Doğru)
AT+PINR2D2 (Yanlış)
AT+PINXYZW (Yanlış)

'AT+PIN2017' komutunu yollarsak, ekranda 'OKsetPIN' ifadesi yazacaktır.


Bluetooth Versiyon Ayarları

  • AT+VERSION

'AT+VERSION' komutunu yollarsak, ekranda bluetooth versiyonu yazacaktır.





Bluetooth AT Commands - English

Software was made to use the AT commands for bluetooth modules.

First we run the 'AT' command. If the 'OK' returns, we can now run other commands.


Bluetooth Baudrate Settings

  • AT+BAUD1 // 1200 Baud
  • AT+BAUD2 // 2400 Baud
  • AT+BAUD3 // 4800 Baud
  • AT+BAUD4 // 9600 Baud (Suggested)
  • AT+BAUD5 // 19200 Baud
  • AT+BAUD6 // 38400 Baud
  • AT+BAUD7 // 57600 Baud
  • AT+BAUD8 // 115200 Baud

For example, if the 'AT+BAUD4' command is executed, the 'OK9600' command will return the value.


Bluetooth Name Settings

  • AT+NAME
 
AT+NAMEresul, AT+NAMEtuzen, AT+NAMEResul01

If the 'AT+NAME' command is executed, the 'OKsetname' command will return the value.


Bluetooth Password Settings

  • AT+PIN
AT+PIN1234 (True)
AT+PIN0123 (True)
AT+PINR2D2 (False)
AT+PINXYZW (False)

If the 'AT+PIN' command is executed, the 'OKsetPIN' command will return the value.


Bluetooth Version Settings

  • AT+VERSION

If the 'AT+VERSION' command is run, it will send back the bluetooth version.