2022-09-14 15:25:16 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
from fragments import garage, s3lat, shared
|
|
|
|
|
|
|
|
if shared.id() == 1:
|
|
|
|
garage.deploy_coord()
|
|
|
|
s3lat.on_garage()
|
|
|
|
garage.delete_key()
|
|
|
|
garage.destroy()
|
|
|
|
else:
|
|
|
|
garage.deploy_follow()
|
|
|
|
garage.sync_on_key_down()
|
|
|
|
garage.destroy()
|
2022-09-14 16:01:44 +00:00
|
|
|
shared.log("bye")
|