Home > Mobile >  How can I use Intellisense in VSC with pybricks (micropython)?
How can I use Intellisense in VSC with pybricks (micropython)?

Time:11-05

I want to use it to code my EV3 brick. I read all the answers on stackoverflow for similar questions, but none of them helped.

CodePudding user response:

Have you installed the LEGO EV3 Extension?

And you can install the pybricks like this pip install git https://github.com/pybricks/pybricks-api@master

Then you need to import it like this:

from pybricks.hubs import EV3Brick

You can refer to this link for more details, some people others had to submit a feature request of this early.

CodePudding user response:

To solve the problem I had to comment out the last two settings in settings.json

  • Related