Files
JackBot/RobotState/RobotState.py
T
JackM323 c34449aac5 Project Initialization
First Upload to Gitea
2026-07-29 19:23:45 +02:00

20 lines
403 B
Python

import numpy as np
class RobotState:
def on_enter(self, ctx):
pass
def on_exit(self, ctx):
pass
def update(self, ctx, intent, dt):
pass
class RobotContext:
def __init__(self):
self.current_rad = None
self.current_pos = None
self.leg_state = None
self.robotCommunication = None
self.shared_sim = None