Git Product home page Git Product logo

create3_ros2_intro's People

Contributors

paccionesawyer avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

create3_ros2_intro's Issues

How to call several message from python ?

Hello,

I plan to reuse your script to control my robot by python. I was thinking on createed small piece of function to rotate, drive, undock... the robot. Unfortunately, I have some issue and it seems that is due to several call to rclpy.init or shutdown. Is it possible to do this way ? Many thanks.

def undock(args=None):
    rclpy.init(args=args)

    undock_client = UndockingActionClient()
    future = undock_client.send_goal()

    # The future is completed when an action server accepts or rejects the goal.
    rclpy.spin_until_future_complete(undock_client, future)
    rclpy.shutdown()

def drive(args=None):
    rclpy.init(args=args)
    action_client = DriveDistanceActionClient()

    dist  = 0.5
    speed = 0.15

    action_client.send_goal(dist, speed)
    rclpy.spin(action_client)

def dock(args=None):
    rclpy.init(args=args)

    dock_client = DockServoActionClient()
    future = dock_client.send_goal()

    # # The future is completed when an action server accepts or rejects the goal.
    rclpy.spin_until_future_complete(dock_client, future)
    rclpy.shutdown()

def main(args=None):
    ### undock
    undock()
    # ### rotate
    rotate()
    # ### drive
    # drive()
     ### docking
    dock()

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.