Merge branch 'master' of github.com:maniacbug/RF24

This commit is contained in:
maniacbug
2011-11-21 11:07:50 -08:00
14 changed files with 501 additions and 18 deletions

13
RF24.h
View File

@@ -618,6 +618,19 @@ public:
/**@}*/
};
/**
* @example GettingStarted.pde
*
* This is an example which corresponds to my "Getting Started" blog post
* for Getting Started with nRF24L01+ radios.
*
* It is an example of how to use the RF24 class. Write this sketch to two
* different nodes. Put one of the nodes into 'transmit' mode by connecting
* with the serial monitor and sending a 'T'. The ping node sends the current
* time to the pong node, which responds by sending the value back. The ping
* node can then see how long the whole cycle took.
*/
/**
* @example led_remote.pde
*