This commit is contained in:
Your Name 2024-11-18 10:43:43 +01:00
parent 64727f5c6e
commit a16aa28513
2 changed files with 6 additions and 2 deletions

View File

@ -1089,7 +1089,8 @@ class RelayControl(QtWidgets.QMainWindow):
# self.yolo_stream = YOLOv8CameraStream(model_path="models/yolov8m_seg_e300.pt", logging_level="high")
# # self.yolo_stream.start() # Start the YOLOv8 stream
# self.timer.start(30) # Start the timer to update the frame every 30ms (about 33 FPS)
r.turn_on(1)
print("Turn on light clicked")
self.r.turn_on(1)
def spot_off(self):
# # Stop the camera stream and processing
@ -1099,7 +1100,8 @@ class RelayControl(QtWidgets.QMainWindow):
# self.yolo_stream = None # Reset the YOLOv8 stream object
# self.scene.clear() # Clear the displayed frame from the graphicsView
# print("Camera stream stopped and resources released.")
r.turn_off(1)
print("Turn off light clicked")
self.r.turn_off(1)
if __name__ == "__main__":
import sys
@ -1110,6 +1112,8 @@ if __name__ == "__main__":
# Initialize the CameraStreamApp with the UI
camera_app = CameraStreamApp(ui)
# initialize relay app
relay_app = RelayControl(ui)
MainWindow.show()
sys.exit(app.exec_())