|
1 | 1 | # antplus-arduino |
2 | | -An Implementation of the Ant+ Network on top of ant-arduino |
| 2 | +An Implementation of the Ant+ Network on top of [ant-arduino](https://github.com/cujomalainey/ant-arduino) |
3 | 3 |
|
4 | 4 | ## Status |
5 | 5 |
|
6 | 6 | [](https://travis-ci.org/cujomalainey/antplus-arduino) |
7 | 7 |
|
8 | 8 | ## News |
9 | 9 |
|
10 | | -* 9/4/2017 Project Started |
| 10 | +* 10/1/2017 v0.1.0 Version released, library added to managers |
11 | 11 | * 9/24/2017 Proof of concept complete (for system design) |
| 12 | +* 9/4/2017 Project Started |
12 | 13 |
|
13 | 14 | ## Roadmap |
14 | 15 |
|
15 | | -* v0.1.0 Build Initial Framework with HR profile slave |
16 | 16 | * v0.2.0 Build Framework for Channel Master with HR master |
17 | 17 | * v0.3.0 Build support for non-ANT+ channel interfacing |
18 | 18 | * v1.0.0 Finalize and verify system |
@@ -48,9 +48,7 @@ void setup() { |
48 | 48 | hr.onHeartRatePreviousHeartBeat(previousHeartBeatDataPageHandler, NULL); |
49 | 49 | hr.begin(); |
50 | 50 | // wait for pair to complete |
51 | | - while(hr.getChannelStatus() == CHANNEL_STATUS_SEARCHING) {router.loop();}; |
52 | | - // print channel status |
53 | | - // get sensor serial number |
| 51 | + hr.waitForPair(); |
54 | 52 | } |
55 | 53 |
|
56 | 54 | void loop() { |
@@ -83,7 +81,7 @@ Prior to Arduino 1.5 installation is a manual |
83 | 81 | Download a .zip or .tar.gz release from github. Determine the location of your sketchbook by selecting "preferences" on the Arduino menu. Create a "libraries" folder in your sketchbook and unzip the release file in that location. |
84 | 82 |
|
85 | 83 | If you are using platformio you can install the library by running |
86 | | -``` platformio lib install ### ``` |
| 84 | +``` platformio lib install 1879 ``` |
87 | 85 |
|
88 | 86 | ## Uploading Sketches |
89 | 87 |
|
|
0 commit comments