add controller

This commit is contained in:
Jing Hua
2023-10-24 02:26:24 +08:00
parent 14a4f5c008
commit a7144824d2
6 changed files with 61 additions and 13 deletions

9
main.py Normal file
View File

@@ -0,0 +1,9 @@
from controller import Controller
controller = Controller(vm_name="KUbuntu-23.10", username="username", password="password", host="192.168.56.101")
input("enter to continue")
img = controller.get_state()
print(img)
input("enter to continue")
controller.step()