Skip to content

Commit

Permalink
PJONLocal examples fixed strategy inclusion error
Browse files Browse the repository at this point in the history
  • Loading branch information
gioblu committed Jan 31, 2021
1 parent e107d76 commit 97f91f3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Expand Up @@ -3,7 +3,7 @@
#define PJON_PACKET_MAX_LENGTH 10

#include <PJONLocal.h> // Include PJONLocal
#include <SoftwareBitBang.h> // Include only SoftwareBitBang
#include <strategies/SoftwareBitBang/SoftwareBitBang.h> // Include only SoftwareBitBang

PJONLocal<SoftwareBitBang> bus(44);

Expand Down
Expand Up @@ -2,7 +2,7 @@
#define PJON_PACKET_MAX_LENGTH 10 // Set maximum packet length

#include <PJONLocal.h> // Include PJONLocal
#include <SoftwareBitBang.h> // Include only SoftwareBitBang
#include <strategies/SoftwareBitBang/SoftwareBitBang.h> // Include only SoftwareBitBang

/* Create PJONLocal object:
Class name <Strategy name> instance name ( device id ) */
Expand Down
Expand Up @@ -8,7 +8,7 @@
// Include only SoftwareBitBang

#include <PJONLocal.h> // Include PJONLocal
#include <SoftwareBitBang.h> // Include SoftwareBitBang
#include <strategies/SoftwareBitBang/SoftwareBitBang.h> // Include only SoftwareBitBang

PJONLocal<SoftwareBitBang> bus(44);

Expand Down
Expand Up @@ -6,7 +6,7 @@
// #define SWBB_MODE 4 // 3.40kB/s - 27210Bd

#include <PJONLocal.h> // Include PJONLocal
#include <SoftwareBitBang.h> // Include only SoftwareBitBang
#include <strategies/SoftwareBitBang/SoftwareBitBang.h> // Include only SoftwareBitBang

/* Create PJONLocal object:
Class name <Strategy name> instance name ( device id ) */
Expand Down
Expand Up @@ -3,7 +3,7 @@
is printed the record transmitted by the other device. */

#include <PJONLocal.h> // Include PJONLocal
#include <SoftwareBitBang.h> // Include only SoftwareBitBang
#include <strategies/SoftwareBitBang/SoftwareBitBang.h> // Include only SoftwareBitBang

PJONLocal<SoftwareBitBang> bus(44);

Expand Down
Expand Up @@ -2,7 +2,7 @@
This sketch contains the transmitter side. */

#include <PJONLocal.h> // Include PJONLocal
#include <SoftwareBitBang.h> // Include only SoftwareBitBang
#include <strategies/SoftwareBitBang/SoftwareBitBang.h> // Include only SoftwareBitBang

/* Create PJONLocal object:
Class name <Strategy name> instance name ( device id ) */
Expand Down

0 comments on commit 97f91f3

Please sign in to comment.