importrclpy# core ROS2 client python libraryfromrclpy.nodeimportNode# To manipulate ROS Nodesdefmain():rclpy.init()# Initialize ROS2 clientmyNode=Node('blanc_node')# Create a Node, with a name # Start the ros infinite loop with myNode.rclpy.spin(myNode)# At the end, destroy the node explicitly.myNode.destroy_node()# and shut the light down.rclpy.shutdown()print("tuto_move :: STOP.")# If the file is executed as a script (ie. not imported).if__name__=='__main__':# call main() functionmain()