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になります。
これでBluetoothが飛んでいるはずです。
ここからは、スマートフォンやタブレットで通信を見てみましょう。
ボタンの検知と、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_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を押しましょう。
Nordic BlinkyButtonはボタンの検出を行えます。
右上の↑のボタンを押して画像のアイコンに変更します
その状態でButton1を押すとValueが0x00から0x01に変化すると思います。
ここで、0xの後ろに01と入れてSendを押します。
これでLED3が点灯すると思います。
00と入れると消灯します。

次に、検知するボタンと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に変わっていますね。
(上のスクリーンショットがこの後撮ったのがばれますね・・・)
これで、LチカとBluetoothによるサンプルファイルの実行が行えましたね。