feat(connector): add pre-run command before tests

This commit is contained in:
Anthony Berg
2024-05-09 07:16:29 +01:00
parent d551c1b5c5
commit 3e31294b27
4 changed files with 172 additions and 1 deletions

View File

@@ -73,4 +73,12 @@ class XPC {
return result
}
fun getPOSI(): DoubleArray {
return xpc.getPOSI(0)
}
fun setPOSI(posi: DoubleArray) {
xpc.sendPOSI(posi, 0)
}
}