Merge branch 'dev' into Mock-Device/Action

This commit is contained in:
Xuwznln
2025-06-12 20:24:42 +08:00
committed by GitHub
186 changed files with 37536 additions and 2850 deletions

View File

@@ -4,17 +4,15 @@ import time
class VacuumPumpMock:
def __init__(self, port: str = "COM6"):
self._status = "OPEN"
@property
def status(self) -> str:
return self._status
def get_status(self) -> str:
return self._status
def set_status(self, string):
time.sleep(5)
self._status = string
time.sleep(5)