Category: Project
Under this project category will include all the project I have done so far
-
Create a simple remote control system using dual Raspberry Pi 4B
This project involves activating a remote device using three buttons located in the office, leveraging the existing LAN infrastructure. I have developed a simple circuit to test the functionality of my code. Three buttons, designated as Button 1, Button 2, and Button 3, are connected to the GPIO pins of a Raspberry Pi 4B. This… Read more
-
Get Your Raspberry Pi to Start Automatically (with Service)
I am creating a web server application on a Raspberry Pi using Flask. The server application should automatically start when the Pi powers on. The most common approach is to implement a system service that runs the Python application within a virtual environment. Here’s how to do it. Part 1: Create shell script 1. Open… Read more
-
Create unique download links in Raspberry Pi using Flask
I try to implement an automatic link generation and file download process using Flask instead of Apache. Flask is a lightweight web framework for Python that allows you to set up a web server and handle file downloads efficiently. For all package download and installation, I will do that under virtual environment to manage dependencies… Read more