When I tried to import a XML file to Calc, it seems to me less obvious than on Excel. Generally, I just drag and drop and it does the job. In "Data" menu, there is "XML Source" option that should allow you to import. Nonetheless, it is gray by default. You need to activate experimental … Continue reading Open a XML file with LibreOffice Calc
Month: March 2020
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
Add aliases in Linux
Sometimes, when you are using command-line a lot, it can be boring to always type the full command to perform the action. But you can create shortcuts, which are also called "alias". For example, you have a Python virtual environment and you are using it a lot. To activate it, you generally have to be … Continue reading Add aliases in Linux
Setup the Raspberry Pi Zero with SSH remote access
When you buy your Raspberry Pi, directly out-of-the-box, the software part is not already installed. To be able to use it, you need to install an Operating System (OS) which will allow you to interact with it. In this article, we will see how to install the official Raspberry OS "Raspbian" Lite version with the … Continue reading Setup the Raspberry Pi Zero with SSH remote access