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

Committer:
jksoft
Date:
Thu Jul 10 14:21:52 2014 +0000
Revision:
0:8c643bfe55b7
??

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jksoft 0:8c643bfe55b7 1 /* Copyright (c) 2013 Nordic Semiconductor. All Rights Reserved.
jksoft 0:8c643bfe55b7 2 *
jksoft 0:8c643bfe55b7 3 * The information contained herein is property of Nordic Semiconductor ASA.
jksoft 0:8c643bfe55b7 4 * Terms and conditions of usage are described in detail in NORDIC
jksoft 0:8c643bfe55b7 5 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
jksoft 0:8c643bfe55b7 6 *
jksoft 0:8c643bfe55b7 7 * Licensees are granted free, non-transferable use of the information. NO
jksoft 0:8c643bfe55b7 8 * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
jksoft 0:8c643bfe55b7 9 * the file.
jksoft 0:8c643bfe55b7 10 *
jksoft 0:8c643bfe55b7 11 */
jksoft 0:8c643bfe55b7 12
jksoft 0:8c643bfe55b7 13 /** @file
jksoft 0:8c643bfe55b7 14 *
jksoft 0:8c643bfe55b7 15 * @defgroup ble_rpc_event_encoder_gatts GATTS Events Encoder
jksoft 0:8c643bfe55b7 16 * @{
jksoft 0:8c643bfe55b7 17 * @ingroup ble_sdk_lib_serialization
jksoft 0:8c643bfe55b7 18 *
jksoft 0:8c643bfe55b7 19 * @brief Event encoder for S110 SoftDevice serialization.
jksoft 0:8c643bfe55b7 20 *
jksoft 0:8c643bfe55b7 21 * @details This module provides functions for serializing S110 SoftDevice events.
jksoft 0:8c643bfe55b7 22 *
jksoft 0:8c643bfe55b7 23 */
jksoft 0:8c643bfe55b7 24 #ifndef BLE_RPC_EVENT_ENCODER_GATTS_H__
jksoft 0:8c643bfe55b7 25 #define BLE_RPC_EVENT_ENCODER_GATTS_H__
jksoft 0:8c643bfe55b7 26
jksoft 0:8c643bfe55b7 27 #include <stdint.h>
jksoft 0:8c643bfe55b7 28 #include <ble.h>
jksoft 0:8c643bfe55b7 29
jksoft 0:8c643bfe55b7 30 /**@brief Function for encoding a @ref ble_evt_t GATTS event.
jksoft 0:8c643bfe55b7 31 *
jksoft 0:8c643bfe55b7 32 * @param[in] p_ble_evt S110 SoftDevice event to serialize.
jksoft 0:8c643bfe55b7 33 * @param[out] p_buffer Pointer to a buffer for the encoded event.
jksoft 0:8c643bfe55b7 34 *
jksoft 0:8c643bfe55b7 35 * @return Number of bytes encoded.
jksoft 0:8c643bfe55b7 36 */
jksoft 0:8c643bfe55b7 37 uint32_t ble_rpc_evt_gatts_encode(ble_evt_t * p_ble_evt, uint8_t * p_buffer);
jksoft 0:8c643bfe55b7 38
jksoft 0:8c643bfe55b7 39 #endif // BLE_RPC_EVENT_ENCODER_GATTS_H__
jksoft 0:8c643bfe55b7 40
jksoft 0:8c643bfe55b7 41 /** @} */