Security Camera
Security Camera
There are companies such as SimpliSafe, Ring, Blink, Arlo etc. The problem for me is that one does not know where the videos & images are captured, stored and potentially sold and analyzed. The consumer places these units throughout their home and the amount of data collected could be immense. Because of this I wanted to see what solutions existed that could provide me the security I wanted + the privacy I needed.
I have started working with Raspberry Pi in the past but I wanted to set up a project that was live and my own. I stumbled on two resources: 1 & 2. I hit a snag on both because they relied on CV which appears to be a virtual environment from within the pi. I could not get my mkvirtualenvw
up and could not debug.
I did further research and found how to install the MotionEyeOS.
Steps Taken
You will need the following: - Raspberry Pi Z W - Camera (I used this) - Power Cable (Like this) - MicroSD
I pulled the MotioneyeOS image, the latest. Unzip and I placed that file on my desktop.
I then opened Balena Etcher from here here,plugged in my microsd. Balena is easy in the sense that it will automatically detect the correct SD. I selected the image, the SD and then hit Flash.
I needed to get wifi into the OS, I did that via wpa_supplicant.conf
. Opening a normal text editor I pasted the following into the document and renamed it wpa_supplicant.conf
country=us
update_config=1
ctrl_interface=/var/run/wpa_supplicant
network={
scan_ssid=1
ssid="MyNetworkSSID"
psk="Pa55w0rd1234"
}
Once that was done, I plugged the SD into the Pi, provided power and saw the MotionEye OS loading. My wifi settings loaded and I was able to access the admin console. To do that, be sure to know the IP address of the raspberry Pi. It showed me the IP address in the loading screen, I typed that in and was taken to the login screen.
By default the credentials are username admin
with no password. I logged in, set a password, changed my IP address and I was able to create my personal preferences on my camera.
Note: this can only be accessed from within the local network, I do not need an advanced set up as of yet.
I was able to set up alerts to go to my personal email address. So that I would not need to always be logged in within my local network while away.
(This post would benefit from photos, I am working in- WIP)