Skip to content

Commit 97f91f3

Browse files
committed
PJONLocal examples fixed strategy inclusion error
1 parent e107d76 commit 97f91f3

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

examples/ARDUINO/Local/SoftwareBitBang/PJONLocal/BlinkTest/Receiver/Receiver.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#define PJON_PACKET_MAX_LENGTH 10
44

55
#include <PJONLocal.h> // Include PJONLocal
6-
#include <SoftwareBitBang.h> // Include only SoftwareBitBang
6+
#include <strategies/SoftwareBitBang/SoftwareBitBang.h> // Include only SoftwareBitBang
77

88
PJONLocal<SoftwareBitBang> bus(44);
99

examples/ARDUINO/Local/SoftwareBitBang/PJONLocal/BlinkTest/Transmitter/Transmitter.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define PJON_PACKET_MAX_LENGTH 10 // Set maximum packet length
33

44
#include <PJONLocal.h> // Include PJONLocal
5-
#include <SoftwareBitBang.h> // Include only SoftwareBitBang
5+
#include <strategies/SoftwareBitBang/SoftwareBitBang.h> // Include only SoftwareBitBang
66

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

examples/ARDUINO/Local/SoftwareBitBang/PJONLocal/NetworkAnalysis/Receiver/Receiver.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// Include only SoftwareBitBang
99

1010
#include <PJONLocal.h> // Include PJONLocal
11-
#include <SoftwareBitBang.h> // Include SoftwareBitBang
11+
#include <strategies/SoftwareBitBang/SoftwareBitBang.h> // Include only SoftwareBitBang
1212

1313
PJONLocal<SoftwareBitBang> bus(44);
1414

examples/ARDUINO/Local/SoftwareBitBang/PJONLocal/NetworkAnalysis/Transmitter/Transmitter.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// #define SWBB_MODE 4 // 3.40kB/s - 27210Bd
77

88
#include <PJONLocal.h> // Include PJONLocal
9-
#include <SoftwareBitBang.h> // Include only SoftwareBitBang
9+
#include <strategies/SoftwareBitBang/SoftwareBitBang.h> // Include only SoftwareBitBang
1010

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

examples/ARDUINO/Local/SoftwareBitBang/PJONLocal/SendArbitraryDataType/Receiver/Receiver.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
is printed the record transmitted by the other device. */
44

55
#include <PJONLocal.h> // Include PJONLocal
6-
#include <SoftwareBitBang.h> // Include only SoftwareBitBang
6+
#include <strategies/SoftwareBitBang/SoftwareBitBang.h> // Include only SoftwareBitBang
77

88
PJONLocal<SoftwareBitBang> bus(44);
99

examples/ARDUINO/Local/SoftwareBitBang/PJONLocal/SendArbitraryDataType/Transmitter/Transmitter.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
This sketch contains the transmitter side. */
33

44
#include <PJONLocal.h> // Include PJONLocal
5-
#include <SoftwareBitBang.h> // Include only SoftwareBitBang
5+
#include <strategies/SoftwareBitBang/SoftwareBitBang.h> // Include only SoftwareBitBang
66

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

0 commit comments

Comments
 (0)