From 4987f189329258f8a9de44ec27e5900221bdce61 Mon Sep 17 00:00:00 2001 From: Cheong Date: Wed, 23 Apr 2014 16:01:45 +0800 Subject: [PATCH] Added HelloWorld sketch, renamed Chat to SimpleChat sketch. --- .../examples/HelloWorld/HelloWorld.ino | 85 +++++++++++++++++++ .../Chat.ino => SimpleChat/SimpleChat.ino} | 0 2 files changed, 85 insertions(+) create mode 100644 Arduino/libraries/RBL_nRF8001/examples/HelloWorld/HelloWorld.ino rename Arduino/libraries/RBL_nRF8001/examples/{Chat/Chat.ino => SimpleChat/SimpleChat.ino} (100%) diff --git a/Arduino/libraries/RBL_nRF8001/examples/HelloWorld/HelloWorld.ino b/Arduino/libraries/RBL_nRF8001/examples/HelloWorld/HelloWorld.ino new file mode 100644 index 0000000..4ac40c0 --- /dev/null +++ b/Arduino/libraries/RBL_nRF8001/examples/HelloWorld/HelloWorld.ino @@ -0,0 +1,85 @@ +/* + +Copyright (c) 2012-2014 RedBearLab + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +*/ + +/* + * HelloWorld + * + * HelloWorld sketch, work with the Chat iOS/Android App. + * It will send "Hello World" string to the App every 1 sec. + * + */ + +//"services.h/spi.h/boards.h" is needed in every new project +#include +#include +#include +#include + +void setup() +{ + // + // For BLE Shield: + // Default pins set to 9 and 8 for REQN and RDYN + // Set your REQN and RDYN here before ble_begin() if you need + // + // For Blend Micro: + // Default pins set to 6 and 7 for REQN and RDYN + // So, no need to set for Blend Micro. + // + //ble_set_pins(3, 2); + + // Set your BLE Shield name here, max. length 10 + ble_set_name("BlendMicro"); + + // Init. and start BLE library. + ble_begin(); + + // Enable serial debug + Serial.begin(57600); +} + +unsigned char buf[16] = {0}; +unsigned char len = 0; + +void loop() +{ + if ( ble_connected() ) + { + ble_write('H'); + ble_write('e'); + ble_write('l'); + ble_write('l'); + ble_write('o'); + ble_write(' '); + ble_write('W'); + ble_write('o'); + ble_write('r'); + ble_write('l'); + ble_write('d'); + ble_write('!'); + } + + ble_do_events(); + + if ( ble_available() ) + { + while ( ble_available() ) + { + Serial.write(ble_read()); + } + + Serial.println(); + } + + delay(1000); +} + diff --git a/Arduino/libraries/RBL_nRF8001/examples/Chat/Chat.ino b/Arduino/libraries/RBL_nRF8001/examples/SimpleChat/SimpleChat.ino similarity index 100% rename from Arduino/libraries/RBL_nRF8001/examples/Chat/Chat.ino rename to Arduino/libraries/RBL_nRF8001/examples/SimpleChat/SimpleChat.ino