Adding an EnGenius ECS1112FP Switch to SkyKey Controller

EnGenius Cloud ECS1112FP 8-Port Gigabit PoE+ Switch with 130W Budget, 2 GbE & 2 SFP Uplink Ports (Amazon Affiliate)
US: https://amzn.to/30UdvHm

EnGenius EWS357AP (Amazon Affiliate)
US: https://amzn.to/2Q1DvKG
UK: https://amzn.to/3AcLQl3
CA: https://amzn.to/3lt2AhP
ES: https://amzn.to/2XwcA1Q
FR: https://amzn.to/3CiwFr3
IT: https://amzn.to/3nTf2dJ
DE: https://amzn.to/3EnVmEi
NL: https://amzn.to/3ErVId0

Playlist: EnGenius Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZOBAQ4UdQghtgAgIF11bRYB

Cool New Hidden Feature in Raspberry Pi Imager 1.6

CanaKit Raspberry Pi 4 (4GB) Starter Kit (Amazon Affiliate)
US: https://amzn.to/3azJgrW
UK: https://amzn.to/2JdMq9o
CA: https://amzn.to/3bwiRvY
ES: https://amzn.to/2T06LnM (similar)
FR: https://amzn.to/3cvIZrs (similaire)
IT: https://amzn.to/2Ar74Sj (simile)
DE: https://amzn.to/2AqfWHQ (ähnlich)
IN: https://amzn.to/3ey6fWj
AU: https://amzn.to/2VTUt1C
NL: https://amzn.to/3f5NdsD (vergelijkbaar)

Raspberry Pi Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZPvIdR5BEqDgO7DsGAla_AZ

Accessing a Mapped Drive in Windows Subsystem for Linux

Windows 10 Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZOfzuoY8JrZFG5oUR9m43xf

Move to Mount Directory
cd /mnt
Create Directory for Mounting Mapped Drive
sudo mkdir /mnt/e
Mount Mapped Drive to Directory
sudo mount -t drvfs E: /mnt/e
Unmount Drive
sudo umount /mnt/e
Remove Mount Directory
sudo rmdir /mnt/e
Automatically Mount Drive
sudo nano /etc/fstab
E: /mnt/e drvfs defaults 0 0

Control-o to save, Control-x to exit.

Load fstab
sudo mount -a

FLSUN Q5: Locking Focus and Exposure on OctoPi Timelapse (Ep. 25)

FLSUN Q5 Delta 3D Printer Φ200x200 Printing Size Auto-Leveling Touch Screen Lattice Glass Platform (Amazon Affiliate)
US: https://amzn.to/3dDwHi5
CA: https://amzn.to/31uw2ea
ES: https://amzn.to/3m7jFwn
FR: https://amzn.to/37onzwR
IT: https://amzn.to/3rBC7QO
DE: https://amzn.to/3l6xb4i
AU: https://amzn.to/2TfTZkK

FLSUN Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZNaTP5phh5oML4EAb80gerF

Sea Turtle Model: https://www.thingiverse.com/thing:421809

Auto Focus Off (Lock Focus)
sudo v4l2-ctl -d 0 --set-ctrl=focus_auto=0
Auto Focus On
sudo v4l2-ctl -d 0 --set-ctrl=focus_auto=1
Read Current Focus Setting
sudo v4l2-ctl -d 0 --get-ctrl=focus_absolute
Set Current Focus to Specific Value
sudo v4l2-ctl -d 0 --set-ctrl=focus_absolute=40
Set Exposure to Manual Mode
v4l2-ctl -d 0 --set-ctrl=exposure_auto=1
Read Current Exposure Setting
v4l2-ctl -d 0 --get-ctrl=exposure_absolute
Set Exposure to a Specific Value
sudo v4l2-ctl -d 0 --set-ctrl=exposure_absolute=996

Source: https://community.octoprint.org/t/anyway-to-disable-the-autofocus-for-cameras/801/11