Browse Source

Merge pull request #1113 from ruimarinho/board/wemos-d1mini

Add support for wemos-d1mini dev board
ech1560
Xose Pérez 6 years ago
committed by GitHub
parent
commit
97617d83f3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 0 deletions
  1. +1
    -0
      code/espurna/config/arduino.h
  2. +20
    -0
      code/espurna/config/hardware.h
  3. +12
    -0
      code/platformio.ini

+ 1
- 0
code/espurna/config/arduino.h View File

@ -8,6 +8,7 @@
//--------------------------------------------------------------------------------
//#define NODEMCU_LOLIN
//#define WEMOS_D1_MINI
//#define WEMOS_D1_MINI_RELAYSHIELD
//#define TINKERMAN_ESPURNA_H06
//#define TINKERMAN_ESPURNA_H08


+ 20
- 0
code/espurna/config/hardware.h View File

@ -86,6 +86,26 @@
#define MANUFACTURER "NODEMCU"
#define DEVICE "BASIC"
#elif defined(WEMOS_D1_MINI)
// Info
#define MANUFACTURER "WEMOS"
#define DEVICE "D1_MINI"
// Buttons
// No buttons on the D1 MINI alone, but defining it without adding a button doen't create problems
#define BUTTON1_PIN 0 // Connect a pushbutton between D3 and GND,
// it's the same as using a Wemos one button shield
#define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
#define BUTTON1_RELAY 1
// LEDs
#define LED1_PIN 2
#define LED1_PIN_INVERSE 1
#define I2C_SDA_PIN 4 // D2
#define I2C_SCL_PIN 5 // D1
#elif defined(WEMOS_D1_MINI_RELAYSHIELD)
// Info


+ 12
- 0
code/platformio.ini View File

@ -188,6 +188,18 @@ extra_scripts = ${common.extra_scripts}
# DEVELOPMENT BOARDS
# ------------------------------------------------------------------------------
[env:wemos-d1mini]
platform = ${common.platform}
framework = ${common.framework}
board = d1_mini
board_build.flash_mode = ${common.flash_mode}
lib_deps = ${common.lib_deps}
lib_ignore = ${common.lib_ignore}
build_flags = ${common.build_flags} -DWEMOS_D1_MINI -DDEBUG_FAUXMO=Serial -DNOWSAUTH
upload_speed = ${common.upload_speed_fast}
monitor_speed = ${common.monitor_speed}
extra_scripts = ${common.extra_scripts}
[env:wemos-d1mini-relayshield]
platform = ${common.platform}
framework = ${common.framework}


Loading…
Cancel
Save