Raspberry Pi Zero Camera Case, Ethernet and GoPro Mount 24v power

This is a tool less enclosure. May have to file off elephant foot for case to fit together correctly. Just place boards inside and close case. Printed on a CR-10. 200deg head and 60 deg bed. PLA., Edited in Solidworks 3d Experience Design-X.

24vdc power option is here: https://www.amazon.com/MP1584EN-DC-DC-Converter-Adjustable-Module/dp/B01MQGMOKI

And Here: https://www.amazon.com/OIIKI-Terminal-Straight-Connector-Pluggable/dp/B08GP4BMD3/ref=sr_1_1?keywords=oiiki+terminal&qid=1640201121&sr=8-1

Adjust Converter to 5 volts

Ethernet for Pi Zero:
https://www.amazon.com/gp/product/B09NFJD38S/ref=ppx_yo_dt_b_search_asin_title?ie=UTF8&psc=1

The instructions for wiring and installing drivers
https://tutorials-raspberrypi.com/raspberry-pi-zero-establishing-an-ethernet-connection-enc28j60/

Pi Zero OS can be found here:
https://www.raspberrypi.com/software/operating-systems/ -Use the lite version with no desktop.

Picamera installation instructions can be found here: https://opensourcelibs.com/lib/pistreaming

Use - sudo apt-get - install ffmpeg git python3-picamera

Problem with installing python3-ws4py refer here: https://github.com/waveform80/pistreaming/issues/45

Information on creating a service is here:
https://domoticproject.com/creating-raspberry-pi-service/

camera.service

[Unit]
Description=Python Camera
After=network.target

[Service]
ExecStart=/usr/bin/python3 /home/pi/pistreaming/server.py
WorkingDirectory=/home/pi/pistreaming
Restart=always

[Install]
WantedBy=multi-user.target