Skip to content

MishaProductions/SecuritySystem

Repository files navigation

MHS - Mikhail Home Security

This is the source code that I use for my DIY Security system in my home.

Background

My home had an ADT BHS-4000 system originally.

(Sorry for horrible camera quality)

This system still had its original sensors and everything, it was just simply unplugged. Around 2022, I replaced the main board with an Orange PI PC+, and that's when this project began. The window sensors simply pass through power when they are closed, and vice versa.

I bought a simple GPIO breakout board, and connected all of the sensors to there.

PXL_20240704_134330183

Nextion Display PXL_20240704_141844541

Web interface / Client

image

Installation

Build solution in Visual Studio 2022, publish secsys project for your SOC architecture, and create /usr/lib/systemd/system/secsys.service:

[Unit]
Description=Starts security system
After=multi-user.target
[Service]
ExecStart=/bin/bash /secsys/run.sh
[Install]
WantedBy=multi-user.target

Copy the published files to /secsys/ and create /secsys/run.sh:

#!/bin/bash
export DOTNET_ROOT=/root/.dotnet
export PATH=$PATH:$DOTNET_ROOT:$DOTNET_ROOT/tools

# Start systemwide Audio server. This is done on boot to prevent noises from speaker
systemctl start pulseaudio

# Start controller
/secsys/SecuritySystem

# Cleanup
systemctl stop pulseaudio

After that, create /musics/ and /musics/annc/ directories and install mpv. Enable and start the secsys service. I recommend to set pulseaudio dameon to run globally.

My armbian config (where PA21 is a 1 wire temperture sensor (optional)):

root@securitysystem:~# cat /boot/armbianEnv.txt
verbosity=1
bootlogo=false
console=vga
disp_mode=1920x1080p60
overlay_prefix=sun8i-h3
rootdev=UUID=d51a7664-a74c-4b3b-90d2-62c80db532cc
rootfstype=ext4
overlays=uart1 uart2 uart3 w1-gpio
param_spidev_spi_bus=0
param_w1_pin=PA21
param_w1_pin_int_pullup=1
usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u

About

Source code for my DIY security system which my home uses

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages