Confused on results


I am confused on what drone did not move enough means

Hello @mccannm,

That specific message (the one in red) indicates that in Task 2, section b), the expected string result from the Service, which should contain something like: β€œThe drone has moved X meters”, was not received. I will modify that feedback since I can see it’s very confusing.

Thanks,

1 Like

Below is a section of my code for the problem I am confused on what incorrect

new_dist = 5

rospy.loginfo("The drone has moved "+str(new_dist)+ "meters.")

tran = servicemessage()

tran.dist= "The drone hass moved "+str(new_dist)+ " meters."

return tran



rospy.loginfo("Finished service ")

response = servicemessageResponse()

response.success = True

return response