by Xukyo | 15 Feb 2024 | Tutorials
We’ll look at how to develop a graphic object that displays a scrollable and selectable list of objects. This object can be used to create modular graphical interfaces. Creating a QScrollArea object To create a scrolling list of objects, we’ll use the...
by Xukyo | 14 Feb 2024 | Tutorials
In this tutorial, we’ll look at how to observe a time signal in graphical form with PyQt using PyQtGraph. If you’re creating graphical interfaces, it might be a good idea to display them in the form of curves like on an oscilloscope, rather than scrolling...
by Xukyo | 13 Feb 2024 | Tutorials
The SSH (Secure Socket Shell) protocol is widely used to connect to a remote server, or machine, connected to a network. It lets you exchange files, create, modify or run scripts on remote machines. SSH is usually installed as standard in Linux or Windows...
by Xukyo | 13 Feb 2024 | Tutorials
For certain applications, you may find it useful to embed OpenCV in a PyQt interface. In this tutorial, we’ll look at how to correctly integrate and manage a video captured by OpenCV in a PyQt application. N.B.: We use Pyside, but conversion to PyQt is quite...
by Xukyo | 12 Feb 2024 | Tutorials
You can convert a Python script into an executable (EXE) file using the PyInstaller library. Once your Python code has been tested and validated, you can share it as an executable desktop application from any computer. This is especially useful for graphical user...
by Xukyo | 11 Feb 2024 | Tutorials
The Orange Pi Zero LTS board from Orange Pi can run Debian, Armbian, Ubuntu or Android 4.4. In this tutorial, we’ll show you how to configure your computer with Armbian. Hardware Orange Pi Zero LTS Micro SD card Micro USB cable Computer Install OS...
by Xukyo | 10 Feb 2024 | Tutorials
Radxa’s Rock Pi 4 board can run Debian, Ubuntu or Android. In this tutorial, we’ll show how to configure the computer for Debian. Hardware Rock Pi 4 SE Micro SD card USB cable screen+keyboard+mouse Computer Install OS First of all, we need to...
by Xukyo | 10 Feb 2024 | Tutorials
The Rock Pi S card from Radxa can run Debian, Armbian, Ubuntu or Android. In this tutorial, we’ll look at how to configure your computer with Debian. Hardware Rock Pi S Micro SD card USB cable Computer Install OS First of all, we need to install an application...
by Xukyo | 10 Feb 2024 | Tutorials
In this tutorial, we’ll look at how to create and launch a Profile file at startup on a Linux machine, such as your Raspberry Pi, in order to configure and personalize your user account. When you regularly use your Linux computer, it can be useful to load a...
by Xukyo | 9 Feb 2024 | Tutorials
In this tutorial, we’ll look at the best practices for arranging a Python project so that it can be shared and deployed. Whether it’s software, a library, a web app or a mobile app, if you want to share your work, you need to organize and document it...