-
Notifications
You must be signed in to change notification settings - Fork 3
HIRo Path Planning & Control
Minh-Khang Vu edited this page Oct 11, 2019
·
11 revisions
The HIRO Generic Robot Class (hiro_core/GenericRobot.py) ...
Under construction
Please look at the (hiro_core/GenericRobot.py) class to examine its implementation. You can also extend the class as you wish:
from hiro_core.GenericRobot import GenericRobot
class MyRobot(GenericRobot):
def __init__(self, *args, **kwargs):
super(MyRobot, self).__init__(*args, **kwargs)
def myCustomFunction(self):
# Do Something!
pass
# Use your custom class
robot = MyRobot("", "", "")
robot# .run()
If you need help, come find Merwan Yeditha [email protected] or Audrey Lee [email protected]!