The first step is to install the extension needed. The official extension is edited by Microsoft. By typing 'Python' in 'Search' field, it will be the first one. Once installed, it should be able to use 'pylint' and 'pep8' to show errors and autoformat the code on save. Be sure that 'pylint' and 'pep8' extensions … Continue reading Configure Visual Studio Code for Python
Category: Python
Send GCode to GRBL with Python
Currently using a machine, I was able to send GRBL code to Arduino through the classical USB cord. I found more interesting to put it with a wireless connection. To perform this wireless connection, I added between the Arduino and my computer ... a Raspberry Zero WH ! I know it exists others alternatives definitely … Continue reading Send GCode to GRBL with Python
Setup a virtual environment for Python
The advantage of a virtual environment is when you install packages, it is separated from the system installation. Then, it allows you to keep your system Python installation clean. For each project, you can also have separate dependencies. Linux For Linux, you should check first if python3-virtualenv package is installed. If not: sudo apt-get install … Continue reading Setup a virtual environment for Python