Run ui start in thread
This commit is contained in:
parent
df5df4b497
commit
f37841d7bb
|
@ -141,7 +141,7 @@ class Robot:
|
|||
with self.robot_ui:
|
||||
ui.label(f"{self.robot_type} {self.sysid}").classes("text-2xl")
|
||||
ui.label(f"""Sysid: {self.sysid}""")
|
||||
ui.button("Start", on_click=self.start).classes("m-2")
|
||||
ui.button("Start", on_click=self.async_start).classes("m-2")
|
||||
ui.button("Stop", on_click=self.async_stop).classes("m-2")
|
||||
self.video_button = EnableStreamingButton(sysid=self.sysid).classes(
|
||||
"m-2"
|
||||
|
@ -187,6 +187,9 @@ class Robot:
|
|||
all=True, filters={"name": f"robot-sim-{self.robot_type}-{self.sysid}"}
|
||||
)
|
||||
|
||||
async def async_start(self):
|
||||
return await run.io_bound(self.start)
|
||||
|
||||
def start(self):
|
||||
"""Starts the simulated drone with a given sysid,
|
||||
each drone must have it's own unique ID.
|
||||
|
|
Loading…
Reference in New Issue