Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions test_rfm12b/test_rx/test_rx.pde
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,18 @@
* Ian Chilton <ian@chilton.me.uk>
* December 2011
*
* Requires Arduino version 0022. v1.0 was just released a few days ago so
* i'll need to update this to work with 1.0.
*
* Requires the Ports and RF12 libraries from Jeelabs in your libraries directory:
*
* http://jeelabs.org/pub/snapshots/Ports.zip
* http://jeelabs.org/pub/snapshots/RF12.zip
*
* Updated to Arduino v1.0 using Jeelibs by César García <cesargarciasaez@gmail.com>
*
* Requires the Jeelibs, that combine Ports and RF12 libraries, from Jeelabs in your libraries directory:
* https://github.com/jcw/jeelib
*
* For additional info: http://jeelabs.org/jeelib
*
* Information on the RF12 library - http://jeelabs.net/projects/11/wiki/RF12
*
***************************************************************************/

#include <Ports.h>
#include <RF12.h>
#include <Jeelib.h>

static unsigned long payload;

Expand Down
16 changes: 7 additions & 9 deletions test_rfm12b/test_tx/test_tx.pde
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,18 @@
* Ian Chilton <ian@chilton.me.uk>
* December 2011
*
* Requires Arduino version 0022. v1.0 was just released a few days ago so
* i'll need to update this to work with 1.0.
*
* Requires the Ports and RF12 libraries from Jeelabs in your libraries directory:
*
* http://jeelabs.org/pub/snapshots/Ports.zip
* http://jeelabs.org/pub/snapshots/RF12.zip
* Updated to Arduino v1.0 using Jeelibs by César García <cesargarciasaez@gmail.com>
*
* Requires the Jeelibs, that combine Ports and RF12 libraries, from Jeelabs in your libraries directory:
* https://github.com/jcw/jeelib
*
* For additional info: http://jeelabs.org/jeelib
*
* Information on the RF12 library - http://jeelabs.net/projects/11/wiki/RF12
*
***************************************************************************/

#include <Ports.h>
#include <RF12.h>
#include <Jeelib.h>

// Use the watchdog to wake the processor from sleep:
ISR(WDT_vect) { Sleepy::watchdogEvent(); }
Expand Down