-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added HelloWorld sketch, renamed Chat to SimpleChat sketch.
- Loading branch information
Showing
2 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
85 changes: 85 additions & 0 deletions
85
Arduino/libraries/RBL_nRF8001/examples/HelloWorld/HelloWorld.ino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <SPI.h> | ||
#include <boards.h> | ||
#include <RBL_nRF8001.h> | ||
#include <services.h> | ||
|
||
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); | ||
} | ||
|
File renamed without changes.