Git Product home page Git Product logo

Comments (6)

facontidavide avatar facontidavide commented on September 21, 2024 2

image

from behaviortree.cpp.

facontidavide avatar facontidavide commented on September 21, 2024 1

Are you sure that publisher and tree_ don't go out of scope?
I am 90% positive that you are calling this inside a method and that publisher is destroyed immediately.

If that is the case, you may want to define an attribute in your class like

std::unique_ptr<BT::Groot2Publisher> publisher_;

and change your code to:

tree_ = factory_.createTreeFromFile(tree_file_path);
const unsigned port = 1667;
publisher_ = std::make_unique<BT::Groot2Publisher>(tree_, port);

from behaviortree.cpp.

facontidavide avatar facontidavide commented on September 21, 2024

It should work.can you tell me more about your error?

from behaviortree.cpp.

sgarciav avatar sgarciav commented on September 21, 2024

Certainly. So I fixed my code and it now compiles without error. I added these lines to my BT executor node:

tree_ = factory_.createTreeFromFile(tree_file_path);
const unsigned port = 1667;
BT::Groot2Publisher publisher(tree_, port);

I then run my BT executor, open Groot2, and select the "Monitor Mode" with Host: localhost and Port: 1667.

I then click on the "Connect" button, Groot thinks for some time, and then I get the message "Disconnected: Reply timeout".

Am I missing a step for connecting Groot to my running executor?

Thanks!

from behaviortree.cpp.

facontidavide avatar facontidavide commented on September 21, 2024

I don't understand, everything looks ok.

If you use the same code from tutorial 12, does it work?

from behaviortree.cpp.

sgarciav avatar sgarciav commented on September 21, 2024

This was exactly the problem. I tested it out and everything is working as expected. Thanks for the reply!

from behaviortree.cpp.

Related Issues (20)

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.