ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Problem solved! Pretty silly mistake. new_start_datetime_unix, new_end_datetime_unix = time_converter_to_unix(self.start_dt, self.start_dt)
I was putting as start and end time the same one. Obviously there was no time frame to write. Now it works fine. Thank you guys!
2 | No.2 Revision |
Problem solved! Pretty silly mistake.
new_start_datetime_unix, new_end_datetime_unix = time_converter_to_unix(self.start_dt,
self.start_dt)self.start_dt)
I was putting as start and end time the same one. Obviously there was no time frame to write. Now it works fine. Thank you guys!