Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions OpenRTM_aist/examples/SimpleIO/ConsoleIn.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ def __call__(self, info):
print("Listener: ", self._name)
print("Profile::name: ", info.name)
print("Profile::id: ", info.id)
print("Profile::properties: ")
print(info.properties)
print("------------------------------")
return OpenRTM_aist.ConnectorListenerStatus.NO_CHANGE

Expand Down
2 changes: 2 additions & 0 deletions OpenRTM_aist/examples/SimpleIO/ConsoleOut.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ def __call__(self, info):
print("Listener: ", self._name)
print("Profile::name: ", info.name)
print("Profile::id: ", info.id)
print("Profile::properties: ")
print(info.properties)
print("------------------------------")
return OpenRTM_aist.ConnectorListenerStatus.NO_CHANGE

Expand Down
Loading