stasberkov/espruino-ts-quickstart

No compatible USB Bluetooth 4.0 device found

Opened this issue · 2 comments

When trying to build any project I got:

image

How was this resolved?

This is for people who aren't using Bluetooth as it simply disables Bluetooth for the connection search

I managed to solve it by adding --no-ble to the espruino call like this.
On line 79 change from

["--board", envConfig.board, "-b", envConfig.port_speed, "--port", envConfig.port, "-w", espConsoleBeingWatchedFileName],

To

["--board", envConfig.board, "-b", envConfig.port_speed, "--port", envConfig.port, "-w", espConsoleBeingWatchedFileName, "--no-ble"],