# LEGO® Pybricks Collection A collection of Pybricks scripts I made, mainly for vehicles. My first introduction to Pybricks was by an article on [RacingBrick](https://racingbrick.com/2021/08/remote-control-for-control-sets-without-an-app-or-smartphone-pybricks/). Most, if not all, of my vehicle related scripts find its roots from the scripts over there. ## Create Python virtual environment in VSCode This is mainly needed to get no code errors and make use of IntelliSense. [Based on the information on this support topic on GitHub.](https://github.com/pybricks/support/issues/10) * Open the Command Pallette (from the menu bar: open Help → Show All Commands or just press Ctrl + Shift + P) and search for **Python: Create Environment...**. * Select **Venv** to create a .venv environment. * Select the python version. * A .venv folder should now be created. * Open the Command Pallette (from the menu bar: open Help → Show All Commands or just press Ctrl + Shift + P) again and search for **Python: Create Terminal**. * Execute the following in the Terminal: ```sh python -m pip install --upgrade pip pip install git+https://github.com/pybricks/pybricks-api@master ``` ## Disclaimer LEGO® is a trademark of the LEGO Group of companies which does not sponsor, authorize or endorse this project.