platformio / platformio-atom-ide

PlatformIO IDE for Atom: The next generation integrated development environment for IoT
https://atom.io/packages/platformio-ide
Apache License 2.0
476 stars 71 forks source link

Compilation failed after changing from Wemos to ESP32 #2450

Open YigalB1 opened 4 years ago

YigalB1 commented 4 years ago

I needed more GPIOs, so I change the controller from Wemos D1 to EsP32. The compilations failed with: Error: Unknown board ID 'esp32doit-devkit-v1'

The changes I did in Platform.ini: from: [env:d1] platform = espressif8266 board = esp12e framework = arduino lib_deps = sparkfun/SparkFun TB6612FNG Motor Driver Library@^1.0.0

to: [env:esp32doit-devkit-v1] platform = espressif8266 board = esp32doit-devkit-v1 framework = arduino lib_deps = sparkfun/SparkFun TB6612FNG Motor Driver Library@^1.0.0

What did I miss?