12 lines
226 B
Python
Executable File
12 lines
226 B
Python
Executable File
#! /usr/bin/env python
|
|
import rospy
|
|
|
|
from controller import inform_controller_factory
|
|
|
|
|
|
_inform_controller = inform_controller_factory('calibrator')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
rospy.init_node('teleoperation/calibrator')
|