allow detection of all cameras

This commit is contained in:
2025-05-31 23:44:15 +02:00
parent ffd6542745
commit 4a5e7f291f
2 changed files with 6 additions and 1 deletions

View File

@@ -25,6 +25,11 @@ namespace robospot_camera_finder
cam_ip = ip;
this.Text = name;
if (!cam_ip.StartsWith("10."))
{
MessageBox.Show("Camera is not on the 10.0.0.0/8 network, the RoboSpot might not find it.", "Wrong IP", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
string rtsp_link = "rtsp://" + ip + "/profile2/media.smp";
updateZoomSlider();