1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Nordic Nrf528xxを使ってみよう  Bluetoothを使おう nrf52832 Segger Embedded Studio編

Last updated at Posted at 2019-08-03

Nrf528xxを使ってみよう LチカをしようSegger mbedded Studio編 の続きです。

まずは、ExampleからBLEのプロジェクトを開き
Build⇒Build and Debugをクリックします。
パス:
nRF5SDK153059ac345\nRF5_SDK_15.3.0_59ac345\examples\ble_peripheral\ble_app_blinky\pca10040\s132\ses\ble_app_blinky_pca10040_s132.emProject

*nrf52840の場合は、s132がs140になります。

SES-71.jpg

▶を押しましょう
image.png

これでBluetoothが飛んでいるはずです。
ここからは、スマートフォンやタブレットで通信を見てみましょう。

ボタンの検知と、LEDの点灯を指示することができます。

image.png

# define ADVERTISING_LED                 BSP_BOARD_LED_0                         /**< Is on when device is advertising. */
# define CONNECTED_LED                   BSP_BOARD_LED_1                         /**< Is on when device has connected. */
# define LEDBUTTON_LED                   BSP_BOARD_LED_2                         /**< LED to be toggled with the help of the LED Button Service. */
# define LEDBUTTON_BUTTON                BSP_BUTTON_0                            /**< Button that will trigger the notification event with the LED Button Service */

これで検知しているLEDとボタンを知ることができます。

今回の場合、接続前はLED_0が、接続するとLED_1が、操作するのはLED_2になります。
ボタンを検知するのは、BUTTON_0ですね。

それでは、スマートフォンなどの端末で操作してみましょう。

今回はnRF Connect for Mobileを使用しました
Android
https://play.google.com/store/apps/details?id=no.nordicsemi.android.mcp&hl=ja
iOS
https://apps.apple.com/jp/app/nrf-connect/id1054362403

Nordic_Blinkyとあるのがデバイスになります。
CONNECTを押しましょう。
IMG_0236.JPG

LED Button Serviceをクリック
IMG_0258.JPG

Nordic BlinkyButtonはボタンの検出を行えます。
右上の↑のボタンを押して画像のアイコンに変更します
その状態でButton1を押すとValueが0x00から0x01に変化すると思います。

次は、NordicBlinky LEDの↑を押します。
IMG_0237.JPG

ここで、0xの後ろに01と入れてSendを押します。
これでLED3が点灯すると思います。
00と入れると消灯します。

IMG_0261.JPG

次に、検知するボタンとLEDを変えてみましょう

# define ADVERTISING_LED                 BSP_BOARD_LED_0                         /**< Is on when device is advertising. */
# define CONNECTED_LED                   BSP_BOARD_LED_1                         /**< Is on when device has connected. */
# define LEDBUTTON_LED                   BSP_BOARD_LED_3                         /**< LED to be toggled with the help of the LED Button Service. */
# define LEDBUTTON_BUTTON                BSP_BUTTON_1                            /**< Button that will trigger the notification event with the LED Button Service */

# define DEVICE_NAME                     "Nordic_Blinky_Test"                         /**< Name of device. Will be included in the advertising data. */

書き換えが完了するとDevice がNordic_Blinky_Testに変わっていますね。
(上のスクリーンショットがこの後撮ったのがばれますね・・・)
IMG_0259.JPG

これで、LチカとBluetoothによるサンプルファイルの実行が行えましたね。

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?