fbpixel
Setting up an Apache2 server on Raspberry Pi

Setting up an Apache2 server on Raspberry Pi

The Raspberry Pi can be easily connected to a Wifi network, so it’s a good idea to set up an Apache2 server to create a web interface for managing yorr Raspberry Pi. A web server lets yor send and receive web commands, develop a local or global website, or...
Setting up a fixed IP address for your Raspberry Pi

Setting up a fixed IP address for your Raspberry Pi

For some projects, it may be necessary to configure a fixed IP address for your Raspberry Pi. This is because a dynamic IP address can be changed each time the power is switched on. A fixed IP address can come in handy when you’re connecting remotely to your...
Configuring port forwarding

Configuring port forwarding

When you want to connect to a device outside your Wifi network, you need to set up port forwarding. Once your Raspberry Pi or ESP is connected to your Internet router, you can access it from anywhere by configuring port forwarding. N.B: For cybersecurity reasons, it...
Setting up a UDP server on Raspberry Pi

Setting up a UDP server on Raspberry Pi

, When the Raspberry Pi is connected to the Wifi network, it can communicate with other devices on the network using the UDP protocol. This makes it possible to control the Raspberry Pi from another device or to manage other microcontrollers using UDP requests. It can...
UDP communication between Raspberry Pi and ESP32

UDP communication between Raspberry Pi and ESP32

In this tutorial, we’ll look at how to communicate between a Raspberry Pi and an ESP32 using the UDP protocol. When devices are connected to the same Wifi network, they can communicate very simply by exchanging data packets using the UDP protocol. As both the...