AndroidのBLEラジコンプロポアプリ「BLEPropo」と接続し、RCサーボとDCモータを制御するプログラムです。 BLE Nanoで動作を確認しています。 BLEPropo → https://github.com/lipoyang/BLEPropo

Dependencies:   BLE_API mbed

BLEを使ったAndroid用ラジコンプロポアプリ「BLEPropo」に対応するBLE Nano用ファームウェアです。
BLEPropoは、GitHubにて公開中。
https://github.com/lipoyang/BLEPropo
/media/uploads/lipoyang/blepropo_ui.png
ラジコンは、mbed HRM1017とRCサーボやDCモータを組み合わせて作ります。
/media/uploads/lipoyang/ministeer3.jpg
回路図
/media/uploads/lipoyang/ministeer3.pdf

Committer:
lipoyang
Date:
Sat Mar 14 12:02:48 2015 +0000
Revision:
5:7f89fca19a9e
-convert nRF51822 library to a folder

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lipoyang 5:7f89fca19a9e 1 /* Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved.
lipoyang 5:7f89fca19a9e 2 *
lipoyang 5:7f89fca19a9e 3 * The information contained herein is property of Nordic Semiconductor ASA.
lipoyang 5:7f89fca19a9e 4 * Terms and conditions of usage are described in detail in NORDIC
lipoyang 5:7f89fca19a9e 5 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
lipoyang 5:7f89fca19a9e 6 *
lipoyang 5:7f89fca19a9e 7 * Licensees are granted free, non-transferable use of the information. NO
lipoyang 5:7f89fca19a9e 8 * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
lipoyang 5:7f89fca19a9e 9 * the file.
lipoyang 5:7f89fca19a9e 10 *
lipoyang 5:7f89fca19a9e 11 */
lipoyang 5:7f89fca19a9e 12
lipoyang 5:7f89fca19a9e 13 /** @cond To make doxygen skip this file */
lipoyang 5:7f89fca19a9e 14
lipoyang 5:7f89fca19a9e 15 /** @file
lipoyang 5:7f89fca19a9e 16 *
lipoyang 5:7f89fca19a9e 17 * @defgroup ble_sdk_app_gls_bondmngr_cfg GLS Bond Manager Configuration
lipoyang 5:7f89fca19a9e 18 * @{
lipoyang 5:7f89fca19a9e 19 * @ingroup ble_sdk_app_gls
lipoyang 5:7f89fca19a9e 20 * @brief Definition of bond manager configurable parameters
lipoyang 5:7f89fca19a9e 21 */
lipoyang 5:7f89fca19a9e 22
lipoyang 5:7f89fca19a9e 23 #ifndef BLE_BONDMNGR_CFG_H__
lipoyang 5:7f89fca19a9e 24 #define BLE_BONDMNGR_CFG_H__
lipoyang 5:7f89fca19a9e 25
lipoyang 5:7f89fca19a9e 26 /**@brief Number of CCCDs used in the GLS application. */
lipoyang 5:7f89fca19a9e 27 #define BLE_BONDMNGR_CCCD_COUNT 2
lipoyang 5:7f89fca19a9e 28
lipoyang 5:7f89fca19a9e 29 /**@brief Maximum number of bonded centrals. */
lipoyang 5:7f89fca19a9e 30 #define BLE_BONDMNGR_MAX_BONDED_CENTRALS 7
lipoyang 5:7f89fca19a9e 31
lipoyang 5:7f89fca19a9e 32 #endif // BLE_BONDMNGR_CFG_H__
lipoyang 5:7f89fca19a9e 33
lipoyang 5:7f89fca19a9e 34 /** @} */
lipoyang 5:7f89fca19a9e 35 /** @endcond */