We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb7bf8e commit 25f0803Copy full SHA for 25f0803
examples/bluetooth_hc05/bluetooth_hc05/bluetooth_hc05.ino
@@ -7,7 +7,7 @@
7
8
#include <SPI.h>
9
10
-const int SPI_CS_PIN = 10; // 10 by default, 53 on mega
+const int SPI_CS_PIN = 53; // 10 by default, 53 on mega
11
const int INT_PIN = 2;
12
13
CanHackerLineReader *lineReader = NULL;
@@ -25,7 +25,7 @@ void setup() {
25
26
27
canHacker = new CanHacker(interfaceStream, debugStream, SPI_CS_PIN);
28
- canHacker->enableLoopback(); // uncomment this for loopback
+ //canHacker->enableLoopback(); // uncomment this for loopback
29
lineReader = new CanHackerLineReader(canHacker);
30
31
pinMode(INT_PIN, INPUT);
@@ -75,4 +75,4 @@ void handleError(const CanHacker::ERROR error) {
75
76
delay(2000);
77
} ;
78
-}
+}
0 commit comments