Skip to content

Commit

Permalink
Action client goals from the blakboard (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
stonier committed Feb 5, 2020
1 parent 4520024 commit 3faa4be
Show file tree
Hide file tree
Showing 10 changed files with 465 additions and 283 deletions.
1 change: 1 addition & 0 deletions .settings/org.eclipse.core.resources.prefs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
eclipse.preferences.version=1
encoding//doc/conf.py=utf-8
encoding//py_trees_ros/action_clients.py=utf-8
encoding//py_trees_ros/actions.py=utf-8
encoding//py_trees_ros/battery.py=utf-8
encoding//py_trees_ros/blackboard.py=utf-8
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Changelog

Forthcoming
-----------
* [behaviours] action client goals from blackboard behaviour, `#148 <https://github.com/splintered-reality/py_trees_ros/pull/148>`_
* [behaviours] publish from blackboard behaviour, `#146 <https://github.com/splintered-reality/py_trees_ros/pull/146>`_
* ...

2.0.5 (2020-01-24)
Expand Down
3 changes: 2 additions & 1 deletion doc/features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ Behaviours

.. autosummary::

py_trees_ros.actions.ActionClient
py_trees_ros.action_clients.FromBlackboard
py_trees_ros.action_clients.FromConstant
py_trees_ros.battery.ToBlackboard
py_trees_ros.publishers.FromBlackboard
py_trees_ros.subscribers.CheckData
Expand Down
8 changes: 4 additions & 4 deletions doc/modules.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ py_trees_ros
.. automodule:: py_trees_ros
:synopsis: is your robot misbehaving?

py_trees_ros.actions
--------------------
py_trees_ros.action_clients
---------------------------

.. automodule:: py_trees_ros.actions
.. automodule:: py_trees_ros.action_clients
:members:
:show-inheritance:
:synopsis: behaviours that work with action servers/clients
:synopsis: behaviours that work with action clients

py_trees_ros.battery
--------------------
Expand Down
3 changes: 2 additions & 1 deletion py_trees_ros/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
# Imports
##############################################################################

from . import actions
from . import action_clients
from . import actions # to be deprecated in 2.1.x or later
from . import battery
from . import blackboard
from . import conversions
Expand Down

0 comments on commit 3faa4be

Please sign in to comment.