by Xukyo | 15 Mar 2024 | Tutorials
It is possible to access a folder on a remote machine by installing a Samba server under Linux. This server lets you access a certain file folder from any machine connected to the same network. Installing Samba To install Samba, sudo apt-get update && sudo...
by Xukyo | 14 Mar 2024 | Tutorials
A very practical feature in the IoT field is the ability to program a connected microcontroller, such as an ESP32, via WiFi. This technique is called Over-The-Air (OTA) Programming. Hardware NodeMCU ESP32 Computer WiFi network Operating principle In...
by Xukyo | 4 Mar 2024 | Tutorials
In this tutorial we’ll look at how to achieve synchronized video streams with Python and OpenCV. One of the problems of video streaming is to transmit and acquire high-quality video signals with as little delay as possible. The ability to synchronize video...
by Xukyo | 4 Mar 2024 | Tutorials
To improve performance on the Raspberry Pi, you can use the C++ language and optimized libraries to accelerate the computation speed of object detection models. This is what TensorFlow Lite offers. A good place to start is QEngineering. Hardware Raspberry Pi 4...
by Xukyo | 3 Mar 2024 | Tutorials
It’s possible to embed object recognition models like Yolo on a Raspberry Pi. Of course, because of its low performance compared with computers, performance is lower in terms of real-time recognition. However, it is perfectly possible to develop algorithms using...
by Xukyo | 1 Mar 2024 | Tutorials
In this tutorial, we’ll learn how to activate, manage and test Bluetooth on an ESP32 using the Arduino programming language. Bluetooth is a wireless technology widely used for communication between electronic devices. It enables you to quickly transform your...
by Xukyo | 1 Mar 2024 | Tutorials
In this tutorial, we’ll train a MobileNetV2 TensorFlow model with Keras so that it can be applied to our problem. We’ll then be able to use it in real time to classify new images. For this tutorial, we assume that you have followed the previous tutorials:...