13 lines
201 B
C
13 lines
201 B
C
#pragma once
|
|
|
|
#if defined(ESP8266)
|
|
#define SEND_PIN 14
|
|
#define RECEIVE_PIN 12
|
|
#define RED_LED LED_BUILTIN
|
|
#define BLUE_LED 2
|
|
#else
|
|
#define RESET_PIN 10
|
|
#define SEND_PIN 11
|
|
#define RECEIVE_PIN 2
|
|
#endif
|