diff --git a/README.md b/README.md
index 7ded13e..d052f12 100644
--- a/README.md
+++ b/README.md
@@ -18,9 +18,9 @@ Using this project can potentially expose your device to the open internet depen
* Block remote or app initiated firmware updates
* DNS Spoofing or Telnet mod are *not* required prior to installation
* RTSP Streaming Support:
- * v4l2rtspserver
* go2rtc
-* RTMP Streaming - Stream live video from the camera to your favorite service, youtube, twitch, or facebook live.
+ * v4l2rtspserver (deprecated)
+* RTMP Streaming - via go2rtc: Stream live video from the camera to your favorite service, youtube, twitch, or facebook live.
* Networking:
* Wireguard, IPv6, CIFS/Samba and iptables support enabled
* Tether your camera directly to android phones using USB via RNDIS support
@@ -32,13 +32,9 @@ Using this project can potentially expose your device to the open internet depen
* CDC-Ether Based Adapters
* USB Mass storage enabled, mount USB SSD/HDD/flash drives
* Play audio to the camera speaker from files or streaming audio!
-* WebCam Mode - Use your camera as a spare UVC USB Web Camera on your PC or AndroidTV!
+* Webcam Mode - Use your camera as a spare UVC USB Web Camera on your PC, Mac, or AndroidTV!
* Custom boot script support included
-## How you can help!
-
-* Vertical Tilt on the PANv2 doesn't work properly. Only does this on the modified kernel. Need investigation why this happens.
-
## Why?
* Most things in life relate to cats somehow. I started this project to track the local feral cat population in my neighborhood using cameras.
@@ -55,13 +51,6 @@ Using this project can potentially expose your device to the open internet depen
#### Visit the [Installation & Setup](https://github.com/gtxaspec/wz_mini_hacks/wiki/Setup-&-Installation) section of the [Wiki](https://github.com/gtxaspec/wz_mini_hacks/wiki) for details!
-## What Works / What Doesn't Work
-
-* Everything works except:
-
- 1. PAN v2:
- - Tilt (Vertical) only works at motor speed 9
-
## HELP! SOMETHING DOESN'T DOESN'T WORK
* If you need assistance, or have general questions, feel free to visit the [Discussions](https://github.com/gtxaspec/wz_mini_hacks/discussions) area! There are folks always willing to help out.
@@ -99,7 +88,9 @@ Inspired by HclX, bakueikozo, and mnakada!
Thank you to everyone who is passionate about Wyze products for making the devices popular, and thank you to Wyze for producing them. Sign up for CamPlus, show some love and support to the company.
-Thanks for HclX for WyzeHacks! [https://github.com/HclX/WyzeHacks/](https://github.com/HclX/WyzeHacks/)
+Thank you AlexxIT for the amazing go2rtc project! [https://github.com/AlexxIT/go2rtc](https://github.com/AlexxIT/go2rtc)
+
+Thanks for HclX for WyzeHacks! [https://github.com/HclX/WyzeHacks](https://github.com/HclX/WyzeHacks/)
Thank you mnakada for his atomcam_tools fork! [https://github.com/mnakada/atomcam_tools](https://github.com/mnakada/atomcam_tools)
diff --git a/SD_ROOT/wz_mini/etc/network.d/S10httpd b/SD_ROOT/wz_mini/etc/network.d/S10httpd
index e10805f..d745a7b 100644
--- a/SD_ROOT/wz_mini/etc/network.d/S10httpd
+++ b/SD_ROOT/wz_mini/etc/network.d/S10httpd
@@ -23,11 +23,17 @@ compose_home()
config) echo 'Wz Mini Configuration' >> $target ;;
car) echo 'Car Tool' >> $target ;;
current) echo 'Current Screen' >> $target ;;
+ multicam) echo 'Multi-Cam Viewer' >> $target ;;
diag) echo 'Diagnostics' >> $target ;;
+ status) echo 'Check Recording' >> $target ;;
esac
done
echo 'Multi-Cam' >> $target
+ else
+ echo 'wz_mini.conf is missing the line WEB_SERVER_OPTIONS
';
+ echo 'to populate it with full capabilities:
WEB_SERVER_OPTIONS="cam config car jpeg multicam diag status"'; + fi if [[ "$GO2RTC_SERVER_ENABLED" == "true" ]]; then diff --git a/SD_ROOT/wz_mini/etc/network.d/s10httpd b/SD_ROOT/wz_mini/etc/network.d/s10httpd deleted file mode 100644 index d745a7b..0000000 --- a/SD_ROOT/wz_mini/etc/network.d/s10httpd +++ /dev/null @@ -1,117 +0,0 @@ -#!/bin/sh -### BEGIN INIT INFO -# Provides: -# Short-Description: Basic Web Server -# Description: If enabled, start the httpd web server -### END INIT INFO - -. /opt/wz_mini/wz_mini.conf - - -compose_home() -{ - target=/opt/wz_mini/www/index.html - rm $target - cp /opt/wz_mini/www/index.top.html $target - - - if [[ "$WEB_SERVER_OPTIONS" ]]; then - for part in $WEB_SERVER_OPTIONS - do - case "$part" in - cam) echo 'Wyze Camera Core Config' >> $target ;; - config) echo 'Wz Mini Configuration' >> $target ;; - car) echo 'Car Tool' >> $target ;; - current) echo 'Current Screen' >> $target ;; - multicam) echo 'Multi-Cam Viewer' >> $target ;; - diag) echo 'Diagnostics' >> $target ;; - status) echo 'Check Recording' >> $target ;; - esac - done - - echo 'Multi-Cam' >> $target - else - echo 'wz_mini.conf is missing the line WEB_SERVER_OPTIONS
WEB_SERVER_OPTIONS="cam config car jpeg multicam diag status"'; - - fi - - if [[ "$GO2RTC_SERVER_ENABLED" == "true" ]]; then - echo 'Go2RTC Server' >> $target - - fi - - echo '' >> $target - echo '