+ LED blue on exit

This commit is contained in:
elias 2025-04-03 10:33:49 +02:00
parent b39d697eed
commit 5b53bdb499

View File

@ -230,7 +230,9 @@ def main():
root.mainloop() root.mainloop()
except Exception as e: except Exception as e:
print(f"Error connecting to Robomaster: {e}") print(f"Error connecting to Robomaster: {e}")
print("Make sure the Robomaster is powered on and connected.") finally:
if cmd:
cmd.led_control(comp="all", effect="solid", r=0, g=0, b=255)
if __name__ == "__main__": if __name__ == "__main__":
main() main()