l1.5-safety-system/safety_user_plugin/scripts/user_info.py
2018-09-17 21:39:35 +02:00

21 lines
524 B
Python

#!/usr/bin/env python
from robot_info import RobotInfo
class UserInfo:
def __init__(self):
self.selected_robot = None
self.robots_id_list = []
self.user_stop_state = None
self.master_stop_state = None
self.clutch_state = None
def select_robot(self,robot_id):
self.selected_robot = RobotInfo(robot_id)
def deselect_robot(self):
self.selected_robot = None
def update_robots_id_list(self,robots_id_list):
self.robots_id_list = robots_id_list