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

Dependencies:   BLE_API_Native_IRC Servo mbed

Fork of BLE_RCBController by Junichi Katsu

  • 古いBLEライブラリを使っているのでプラットフォームは”Nordic nRF51822”を選択してください。
  • ライブラリ類はUpdateしないでください。コンパイルエラーになります。

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

/media/uploads/robo8080/img_1560.jpg

BLE_API_Native_IRC/hw/nRF51822n/nordic/nrf-sdk/ble/ble_central_bondmngr.h

Committer:
jksoft
Date:
2014-07-10
Revision:
0:8c643bfe55b7

File content as of revision 0:8c643bfe55b7:

#ifndef __BLE_CENTRAL_BONDMNGR_H_
#define __BLE_CENTRAL_BONDMNGR_H_

#include "nordic_global.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