2799ec3352
Now using SENSE line from HC-05 to detect a client is connected. Runs with either sort of HC-05 module, provided the 5 pin regulator style is set to 9600 data mode. Removed #ifdef BLUETOOTH from .ino file, Bluetooth functions report now anyway with/without client.
8 lines
196 B
C
8 lines
196 B
C
const int TxEnbPin = 22;
|
|
const int ListenOnlyPin = 21;
|
|
const int KeyPin = 15;
|
|
const int Tx1Pin = 18;
|
|
const int Rx1Pin = 19;
|
|
const int Tx2Pin = 16;
|
|
const int Rx2Pin = 17;
|
|
const int HC05_Sense = 4;
|