Hello
When compiling this project you get the following error:
Archiving .pio\build\esp32dev\libFrameworkArduino.a
*** [.pio\build\esp32dev\firmware.elf] Implicit dependency C:\Users\Antony Slack\.platformio\platforms\espressif32\builder\2' not found, needed by target .pio\build\esp32dev\firmware.elf'.
============================================================================== [FAILED] Took 453.85 seconds ==============================================================================
This is due to the following typo in platformio.ini
build_flags =
-D LED_BUILTIN = 2
the correct text should be
build_flags =
-D LED_BUILTIN=2
Hello
When compiling this project you get the following error:
Archiving .pio\build\esp32dev\libFrameworkArduino.a
*** [.pio\build\esp32dev\firmware.elf] Implicit dependency
C:\Users\Antony Slack\.platformio\platforms\espressif32\builder\2' not found, needed by target.pio\build\esp32dev\firmware.elf'.============================================================================== [FAILED] Took 453.85 seconds ==============================================================================
This is due to the following typo in platformio.ini
build_flags =
-D LED_BUILTIN = 2
the correct text should be
build_flags =
-D LED_BUILTIN=2