Hi, I only want the direction buttons in MonsterWeb and delete the camera. How to proceed? Thanks
piborg
Thu, 03/19/2020 - 11:21
Permalink
Just removing the camera image from the view is fairly simple, find all of these lines:
httpText += '<iframe src="/stream" width="100%" height="500" frameborder="0"></iframe>\n'
and remove them.
The only problem is that the watchdog uses the regular camera image request to detect you are still connected. The easiest thing to do is remove the lines which start and stop the watchdog running:
print 'Setup the watchdog' watchdog = Watchdog()
and
watchdog.terminated = True
watchdog.join()
Stony48
Fri, 03/20/2020 - 06:35
Great, thank you!!
piborg
Thu, 03/19/2020 - 11:21
Permalink
Removing the camera
Just removing the camera image from the view is fairly simple, find all of these lines:
and remove them.
The only problem is that the watchdog uses the regular camera image request to detect you are still connected. The easiest thing to do is remove the lines which start and stop the watchdog running:
and
and
Stony48
Fri, 03/20/2020 - 06:35
Permalink
Great, thank you!!
Great, thank you!!