更新camera的显示继承

This commit is contained in:
dahanzimin
2025-05-29 21:27:10 +08:00
parent fdfdfc3002
commit f674c2eba9

View File

@@ -25,4 +25,10 @@ class GC032A(Camera):
def deinit(self): def deinit(self):
super().deinit() super().deinit()
onboard_bot.cam_en(0,100) onboard_bot.cam_en(0, 100)
def display(self, show=True)
if show:
super().display()
else:
super().display_stop()