Low Cost Interactive Home Automation Prototype
Required
- Raspberry Pi
- Raspberry Pi Camera
- Microphone [USB]
Optional
- Raspberry Pi Pico W (As many as you want)
- Speaker [USB] or [MiniJack 3,5 mm]
Open a terminal in the directory where you want to download the project and paste the following fragment:
sudo apt-get update && sudo apt-get upgrade -y && sudo apt autoremove -y
sudo apt install git -y && git clone https://github.com/Osorbe10/EcoTronix.git
cd EcoTronix && sudo chmod +x install.sh
sudo ./ins
6390
tall.sh
Once the installation is finished, it is mandatory to enter the settings to configure the system.
To enter the settings just type the following command in the terminal:
./config.py
It's important never to modify configuration files directly. To do this, it's essential to use the above configuration program.
Once configured, to start the application type the following command in the terminal:
./start.py
Tested on Raspbian GNU/Linux 11 (bullseye) for Raspberry Pi 3 Model B V1.2 with a Raspberry Pi NoIR Camera V2.1 and on Raspberry Pi Pico W 2022.
To verify your Raspberry Pi model and OS, enter the following command in a terminal:
echo "Model:" $(cat /sys/firmware/devicetree/base/model | tr -d '\0')
echo "OS:" $(cat /etc/os-release | grep "PRETTY_NAME" | awk -F '=' '{print $2}' | tr -d '"')