rosros 0.2.5
Simple unified interface to ROS1 / ROS2 Python API
Loading...
Searching...
No Matches
time.py
Go to the documentation of this file.
1"""
2Stand-in for `rclpy.time`, provides `rospy.Duration`.
3
4------------------------------------------------------------------------------
5This file is part of rosros - simple unified interface to ROS1 / ROS2.
6Released under the BSD License.
7
8@author Erki Suurjaak
9@created 14.02.2022
10@modified 16.06.2022
11------------------------------------------------------------------------------
12"""
13## @namespace rosros.rclify.time
14from rospy import Time
15
16CONVERSION_CONSTANT = 10 ** 9
17
18
19__all__ = ["CONVERSION_CONSTANT", "Time"]