Skip to content

Commit b9619fd

Browse files
Upgrade to version 0.5.4
Update present_speed and present_load for each joints at 100Hz.
1 parent ebcf927 commit b9619fd

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

reachy_sdk/reachy_sdk.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,11 @@ async def _sync_loop(self):
256256
joint_stub = joint_pb2_grpc.JointServiceStub(async_channel)
257257

258258
await asyncio.gather(
259-
self._get_stream_update_loop(joint_stub, fields=[joint_pb2.JointField.PRESENT_POSITION], freq=100),
259+
self._get_stream_update_loop(joint_stub, fields=[
260+
joint_pb2.JointField.PRESENT_POSITION,
261+
joint_pb2.JointField.PRESENT_SPEED,
262+
joint_pb2.JointField.PRESENT_LOAD,
263+
], freq=100),
260264
self._get_stream_update_loop(joint_stub, fields=[joint_pb2.JointField.TEMPERATURE], freq=0.1),
261265
self._get_stream_sensor_loop(async_channel, freq=10),
262266
self._stream_commands_loop(joint_stub, freq=100),

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setup(
1616
name='reachy-sdk',
17-
version='0.5.3',
17+
version='0.5.4',
1818
packages=find_packages(exclude=['tests']),
1919

2020
install_requires=[

0 commit comments

Comments
 (0)