Pi Zero W: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
Brian Wilson (talk | contribs)
Line 103: Line 103:
All this just to allow building from source...
All this just to allow building from source...


  sudo -s
  sudo apt -y install git cmake pkg-config
apt install git cmake pkg-config
  sudo apt -y install libjpeg-dev libtiff5-dev libpng-dev
  apt install libjpeg-dev libtiff5-dev libjasper-dev libpng-dev
  sudo apt -y install libavcodec-dev libavformat-dev libswscale-dev libv4l-dev
  apt install libavcodec-dev libavformat-dev libswscale-dev libv4l-dev
  sudo apt -y install libxvidcore-dev libx264-dev
  apt install libxvidcore-dev libx264-dev
  sudo apt -y install libgtk2.0-dev
  apt install libgtk2.0-dev
  sudo apt -y install libatlas-base-dev gfortran
  apt install libatlas-base-dev gfortran
  sudo apt -y install python2.7-dev python3-dev
  apt install python2.7-dev python3-dev


This part is for either source build or pip install
This part is for either source build or pip install
  sudo -s
  sudo apt -y install libhdf5-dev libhdf5-serial-dev libwebp-dev
apt install libhdf5-dev libhdf5-serial-dev libwebp-dev
  sudo apt -y install libqtwebkit4 libqt4-test
  apt install libqtwebkit4 libqt4-test
  sudo apt -y install python-pip
  apt install python-pip
  pip install virtualenv virtualenvwrapper
  pip install virtualenv virtualenvwrapper
  exit
  exit
Line 163: Line 161:


'''While I was waiting''' for the build on the Pi, I installed OpenCV from source on Bellman and plugged in a spare webcam. :-)
'''While I was waiting''' for the build on the Pi, I installed OpenCV from source on Bellman and plugged in a spare webcam. :-)
The build took on Bellman. And Bellman is pretty small!
 
* Murre:
* Bellman: 48 minutes
* Zebra: not done


==== or BUILD on a REAL computer ====
==== or BUILD on a REAL computer ====

Revision as of 04:41, 23 November 2018

I have a PI 2 Model B (without the wireless features) and wanted to play with a camera so it made sense to invest $10 in a Pi Zero W. I can't imagine using a webcam that's wired up (I have no wired network in this rental house.)

Since it's the first Pi Zero for me I got the cute C4Labs Zebra Zero+ protoboard setup from Adafruit at the same time.

If it all works out and I will get another Pi Zero to use with the camera without the protoboard.

First boot

  1. Plug in a cable to the Windows machine and see if it recognizes the Pi Zero as a smoke test.
  2. Download Raspian ZIP image from https://www.raspberrypi.org/downloads/raspian
  3. Download Etcher from https://www.balena.io/etcher/
  4. Run Etcher to copy image to 32GB card (32GB is overkill but it's the first one I grabbed.)
  5. While waiting, dig up the HDMI cable and USB keyboard.
    1. Discover there are many connectors in the world and they used an HDMI I don't have.
    2. Order a Type A (std HDMI) to Type C (Mini) cable. Note the BeagleBoneBlack uses Type D (Micro).
    3. Wait a few days. (Still waiting... :-)
    4. OR use headless mode https://learn.adafruit.com/raspberry-pi-zero-creation/text-file-editing
    5. Configure the WiFI by editing wpa_supplicant.conf (see next section)
  6. Transfer card to Pi
  7. Connect HDMI monitor and USB keyboard if you go that route.
  8. Power on via a cellphone charger and a generic micro USB cable, everyone has those!
  9. Log in as "pi" with password "raspberry"
  10. Change the password!

Headless mode

  1. Enable WiFI so card comes up on network.
  2. Enable ssh so I can log in.

Put the SD card in the Mac. Create these files.

cd /Volumes/boot
touch ssh
vi wpa_supplicant.conf

wpa_supplicant.conf should contain

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=US

network={
   ssid="YOURSSID"
   psk="YOURPASSWORD"
   scan_ssid=1
}

The wpa_supplicant.conf file gets moved on boot so don't freak if it "disappears".

Remember to update the dnsmasq settings on Bellman to issue it a proper IP address.

ssh pi@zebra
pi@zebra's password:
Linux raspberrypi 4.14.79+ #1159 Sun Nov 4 17:28:08 GMT 2018 armv6l

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.

SSH is enabled and the default password for the 'pi' user has not been changed.
This is a security risk - please login as the 'pi' user and type 'passwd' to set a new password.

pi@raspberrypi:~$

and there was much rejoicing... seconds later, I realized that I cannot show it off because there are no LEDs to blink, no beeper, just this cold dead looking thing... anticlimax hits.

Serial console: I did not add enable_uart=1 to config.txt because I don't need it right now.

Set up a new Zero

sudo -s
apt-get update 
apt-get upgrade
rpi-update
reboot

Camera notes

Enable camera and reboot:

raspi-config
reboot

Test camera: raspistill -o foo.jpg


Getting OpenCV

After 20 hours compiling opencv, Pi ran out of memory. I had to bump up swap space from 100MB to 1024.

Cribbed from https://www.pyimagesearch.com/2016/04/18/install-guide-raspberry-pi-3-raspbian-jessie-opencv-3/

All this just to allow building from source...

sudo apt -y install git cmake pkg-config
sudo apt -y install libjpeg-dev libtiff5-dev libpng-dev
sudo apt -y install libavcodec-dev libavformat-dev libswscale-dev libv4l-dev
sudo apt -y install libxvidcore-dev libx264-dev
sudo apt -y install libgtk2.0-dev
sudo apt -y install libatlas-base-dev gfortran
sudo apt -y install python2.7-dev python3-dev

This part is for either source build or pip install

sudo apt -y install libhdf5-dev libhdf5-serial-dev libwebp-dev
sudo apt -y install libqtwebkit4 libqt4-test
sudo apt -y install python-pip
pip install virtualenv virtualenvwrapper
exit

cat >> .profile <EOF
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
EOF
source .profile

mkvirtualenv cv -p python3
pip install numpy

This leaves you in the cv venv, on subsequent logins

workon cv

In one line, install the entire OpenCV package and skip 20 hours of compilation.

pip install opencv-contrib-python-headless

This fails, because there is a library missing.

ImportError: libImath-2_2.so.12: cannot open shared object file: No such file or directory

Build commands

Get the source

cd ~
wget -O opencv.zip https://github.com/opencv/opencv/archive/4.0.0.zip
unzip opencv.zip
wget -O opencv-contrib.zip https://github.com/opencv/opencv_contrib/archive/4.0.0.zip

Set up the makefile

cd opencv-4.0.0
mkdir build
cd build
cmake -D CMAKE_BUILD_TYPE=RELEASE \
   -D CMAKE_INSTALL_PREFIX=/usr/local \
   -D INSTALL_PYTHON_EXAMPLES=OFF \
   -D OPENCV_EXTRA_MODULES_PATH=~/opencv_contrib-4.0.0/modules \
   -D BUILD_EXAMPLES=ON ..

Do the actual build, it will take about 27 hours on a Pi Zero. Do more than just drink coffee. :-)

make

While I was waiting for the build on the Pi, I installed OpenCV from source on Bellman and plugged in a spare webcam. :-)

  • Murre:
  • Bellman: 48 minutes
  • Zebra: not done

or BUILD on a REAL computer

https://raspberrypi.stackexchange.com/questions/69169/how-to-install-opencv-on-raspberry-pi-3-in-raspbian-jessie

Now for the app software

https://github.com/HackerShackOfficial/Smart-Security-Camera

Camera related links

MotionEyeOS https://www.raspberrypi-spy.co.uk/2017/04/raspberry-pi-zero-w-cctv-camera-with-motioneyeos/

MotionEye on Raspian https://www.techcoil.com/blog/how-i-setup-a-raspberry-pi-zero-w-cctv-camera-with-motioneye-and-raspbian-stretch-lite/

Built into a dummy camera case: https://www.instructables.com/id/Zero-Security-Camera/ Pi Zero (not wireless) + USB - LAN adapter

Cool 3D-printed case: https://www.thingiverse.com/thing:2544275