crickets (d1_mini_pro)
This commit is contained in:
parent
ca8605fd1f
commit
65c4570eef
3 changed files with 13 additions and 1 deletions
|
|
@ -21,6 +21,16 @@ lib_deps =
|
|||
ESP8266WiFi
|
||||
Servo(esp8266)
|
||||
|
||||
[env:d1_mini_pro]
|
||||
platform = espressif8266
|
||||
board = d1_mini_pro
|
||||
lib_deps =
|
||||
${env.lib_deps}
|
||||
ESP8266WiFi
|
||||
Servo(esp8266)
|
||||
upload_speed = 460800
|
||||
; 9600, 19200, 38400, 57600, 115200, 230400, 460800, 921600
|
||||
|
||||
[env:huzzah]
|
||||
platform = espressif8266
|
||||
board = huzzah
|
||||
|
|
|
|||
|
|
@ -65,6 +65,8 @@
|
|||
//
|
||||
#if defined(ARDUINO_ESP8266_NODEMCU) // nodemcuv2
|
||||
#define LED_PIN 2
|
||||
#elif defined(ARDUINO_ESP8266_WEMOS_D1MINIPRO) // d1_mini_pro
|
||||
#define LED_PIN 2
|
||||
#elif defined(ARDUINO_ESP8266_ESP12) // huzzah
|
||||
#define LED_PIN 2
|
||||
#elif defined(ARDUINO_FEATHER_ESP32) // featheresp32
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@
|
|||
//
|
||||
#if defined(ARDUINO_ESP8266_NODEMCU) // nodemcuv2
|
||||
#define LED_PIN 2
|
||||
#elif defined(ARDUINO_ESP8266_WEMOS_D1MINIPRO) // d1_mini
|
||||
#elif defined(ARDUINO_ESP8266_WEMOS_D1MINIPRO) // d1_mini_pro
|
||||
#define LED_PIN 2
|
||||
#elif defined(ARDUINO_ESP8266_ESP12) // huzzah
|
||||
#define LED_PIN 2
|
||||
|
|
|
|||
Loading…
Reference in a new issue