Micomlan 66ft/20M Led Strip Lights with Music Sync and App

Micomlan 66ft/20M Led Strip Lights with Music Sync and App
Micomlan 66ft LED Strip Lights, Music Sync Color Changing RGB LED Lights“Smile Face”Controller & Remote Built-in Mic, Bluetooth APP Light Strip Rope Lights, LED Light Strip for Bedroom (Amazon Affiliate)
US: https://amzn.to/335ZN5v

20% off promo code (thru 5/20/2021): 20UZQA4A

Testing Ultimaker Cura 4.9 on M1 Mac running Big Sur

New Apple Mac Mini with Apple M1 Chip (8GB RAM, 512GB SSD Storage) (Amazon Affiliate)
US: https://amzn.to/3oQQnDu
UK: https://amzn.to/3cujOIz
ES: https://amzn.to/2MIzfC6
FR: https://amzn.to/3czo6yJ
IT: https://amzn.to/3aibyZO
IN: https://amzn.to/3cpkvDf

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

Mac Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZPxkWT9rjYcF–ZSivANTkb
FLSUN Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZNaTP5phh5oML4EAb80gerF

Monitoring an IP Camera using a Raspberry Pi (no internet)

Disable Screen Blanking
sudo raspi-config

Display Options > Screen Blanking

Update System
sudo apt update && sudo apt dist-upgrade -y
Install omxplayer and dnsmasq
sudo apt install omxplayer dnsmasq

DISCONNECT FROM NETWORK

Setup Static IP Address on eth0
sudo nano /etc/dhcpcd.conf
interface eth0
static ip_address=192.168.0.10/24
Restart dhcpcd Service
sudo systemctl restart dhcpcd
View Current IP Address
ip a
Move Current dnsmasq Settings
sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig
Configure dnsmasq
sudo nano /etc/dnsmasq.conf
interface=eth0
dhcp-range=192.168.0.11,192.168.0.254,255.255.255.0,24h
address=/#/192.168.0.10
dhcp-leasefile=/var/lib/misc/dnsmasq.leases
Enable and Start dnsmasq Service
sudo systemctl daemon-reload
sudo systemctl enable dnsmasq
sudo systemctl start dnsmasq

CONNECT IP CAMERA

Monitor DHCP Leases
tail -f /var/lib/misc/dnsmasq.leases
Add Host Entry to dnsmasq
sudo nano /etc/dnsmasq.conf
dhcp-host=00:00:00:00:00:00,192.168.0.229
Restart dnsmasq Service
sudo systemctl daemon-reload
sudo systemctl restart dnsmasq
View IP Camera
omxplayer "rtsp://username:password@ip_of_camera:554/cam/realmonitor?channel=1&subtype=0"
Create Camera Service
sudo nano /etc/systemd/system/camera.service
[Unit]
Description=Camera
After=network.target
[Service]
Type=simple
User=root
Group=root
ExecStart=/usr/bin/omxplayer "rtsp://username:password@ip_of_camera:554/cam/realmonitor?channel=1&subtype=0"
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.target
Enable and Start camera service
sudo systemctl enable camera
sudo systemctl start camera
Enable Read-only File System
sudo raspi-config

Performance Options > Overlay FS