iOSのBLEコントローラアプリ「RCBController」とmbed HRM1017を接続し、RCサーボモータを操作するテストプログラムです。

Dependencies:   BLE_API Servo mbed nRF51822

Fork of BLE_RCBController2 by Junichi Katsu

• ライブラリ類はUpdateしないでください。コンパイルエラーになります。

うまく接続できない時は、iPhone/iPadのBluetoothをOFF->ONしてキャッシュをクリアしてみてください。

/media/uploads/robo8080/img_1560.jpg

Revision:
5:d6d898857b2a
Parent:
4:ebda47d22091
--- a/HRM1017/nordic/nrf-sdk/ble/ble_central_bondmngr.h	Wed Aug 20 13:41:01 2014 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,25 +0,0 @@
-#ifndef __BLE_CENTRAL_BONDMNGR_H_
-#define __BLE_CENTRAL_BONDMNGR_H_
-
-#include "ble.h"
-#include "ble_gap.h"
-
-#include <stdint.h>
-#include <stdbool.h>
-
-typedef struct 
-{
-    ble_gap_sec_params_t * p_sec_params;
-} ble_central_bondmngr_t;
-
-typedef struct
-{
-    ble_gap_sec_params_t * p_sec_params;
-    bool delete_bonds;
-} ble_central_bondmngr_init_t;
-
-uint32_t ble_central_bondmngr_init(ble_central_bondmngr_t * p_bm, ble_central_bondmngr_init_t * p_bm_init);
-void ble_central_bondmngr_on_ble_evt(ble_central_bondmngr_t * p_bm, ble_evt_t * p_ble_evt);
-uint32_t ble_central_bondmngr_store(ble_central_bondmngr_t * p_bm);
-
-#endif