Add Virtual Device, Action, YAML, Protocol for Organic Syn

This commit is contained in:
KCFeng425
2025-06-12 12:43:50 +08:00
parent fe492bbca9
commit f2b3e0743e
46 changed files with 6839 additions and 109 deletions

View File

@@ -12,10 +12,10 @@ class VacuumPumpMock:
def get_status(self) -> str:
return self._status
def set_status(self, position):
def set_status(self, string):
time.sleep(5)
self._status = position
self._status = string
time.sleep(5)
def open(self):