hex-zmq-servers 0.3.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. hex_zmq_servers-0.3.8/LICENSE +201 -0
  2. hex_zmq_servers-0.3.8/MANIFEST.in +13 -0
  3. hex_zmq_servers-0.3.8/PKG-INFO +147 -0
  4. hex_zmq_servers-0.3.8/README.md +106 -0
  5. hex_zmq_servers-0.3.8/hex_zmq_servers/__init__.py +173 -0
  6. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/__init__.py +52 -0
  7. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/berxel/__init__.py +17 -0
  8. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/berxel/cam_berxel.py +281 -0
  9. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/berxel/cam_berxel_cli.py +31 -0
  10. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/berxel/cam_berxel_srv.py +76 -0
  11. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/cam_base.py +168 -0
  12. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/dummy/__init__.py +17 -0
  13. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/dummy/cam_dummy.py +69 -0
  14. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/dummy/cam_dummy_cli.py +27 -0
  15. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/dummy/cam_dummy_srv.py +65 -0
  16. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/realsense/__init__.py +17 -0
  17. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/realsense/cam_realsense.py +157 -0
  18. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/realsense/cam_realsense_cli.py +31 -0
  19. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/realsense/cam_realsense_srv.py +75 -0
  20. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/rgb/__init__.py +17 -0
  21. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/rgb/cam_rgb.py +133 -0
  22. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/rgb/cam_rgb_cli.py +41 -0
  23. hex_zmq_servers-0.3.8/hex_zmq_servers/cam/rgb/cam_rgb_srv.py +75 -0
  24. hex_zmq_servers-0.3.8/hex_zmq_servers/config/cam_berxel.json +16 -0
  25. hex_zmq_servers-0.3.8/hex_zmq_servers/config/cam_dummy.json +10 -0
  26. hex_zmq_servers-0.3.8/hex_zmq_servers/config/cam_realsense.json +15 -0
  27. hex_zmq_servers-0.3.8/hex_zmq_servers/config/cam_rgb.json +26 -0
  28. hex_zmq_servers-0.3.8/hex_zmq_servers/config/mujoco_archer_y6.json +35 -0
  29. hex_zmq_servers-0.3.8/hex_zmq_servers/config/mujoco_e3_desktop.json +39 -0
  30. hex_zmq_servers-0.3.8/hex_zmq_servers/config/robot_dummy.json +151 -0
  31. hex_zmq_servers-0.3.8/hex_zmq_servers/config/robot_gello.json +64 -0
  32. hex_zmq_servers-0.3.8/hex_zmq_servers/config/robot_hexarm.json +35 -0
  33. hex_zmq_servers-0.3.8/hex_zmq_servers/config/zmq_dummy.json +10 -0
  34. hex_zmq_servers-0.3.8/hex_zmq_servers/device_base.py +43 -0
  35. hex_zmq_servers-0.3.8/hex_zmq_servers/hex_launch.py +489 -0
  36. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/__init__.py +28 -0
  37. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/__init__.py +17 -0
  38. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/arm_base_link.STL +0 -0
  39. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_1.STL +0 -0
  40. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_2.STL +0 -0
  41. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_3.STL +0 -0
  42. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_4.STL +0 -0
  43. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_5.STL +0 -0
  44. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/assets.xml +17 -0
  45. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/camera_link.STL +0 -0
  46. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_base_link.STL +0 -0
  47. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_left_helper_link.STL +0 -0
  48. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_left_link_1.STL +0 -0
  49. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_left_link_2.STL +0 -0
  50. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_right_helper_link.STL +0 -0
  51. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_right_link_1.STL +0 -0
  52. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_right_link_2.STL +0 -0
  53. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/assets/table_link.STL +0 -0
  54. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/robot.xml +95 -0
  55. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/scene.xml +51 -0
  56. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/model/setting.xml +37 -0
  57. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/mujoco_archer_y6.py +322 -0
  58. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/mujoco_archer_y6_cli.py +68 -0
  59. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/archer_y6/mujoco_archer_y6_srv.py +144 -0
  60. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/__init__.py +17 -0
  61. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_base_link.STL +0 -0
  62. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_1.STL +0 -0
  63. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_2.STL +0 -0
  64. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_3.STL +0 -0
  65. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_4.STL +0 -0
  66. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_5.STL +0 -0
  67. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/assets.xml +18 -0
  68. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/camera_link.STL +0 -0
  69. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/e3_desktop_base_link.STL +0 -0
  70. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_base_link.STL +0 -0
  71. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_left_helper_link.STL +0 -0
  72. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_left_link_1.STL +0 -0
  73. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_left_link_2.STL +0 -0
  74. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_right_helper_link.STL +0 -0
  75. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_right_link_1.STL +0 -0
  76. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_right_link_2.STL +0 -0
  77. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/assets/table_link.STL +0 -0
  78. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/robot.xml +188 -0
  79. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/scene.xml +53 -0
  80. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/model/setting.xml +72 -0
  81. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/mujoco_e3_desktop.py +442 -0
  82. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/mujoco_e3_desktop_cli.py +233 -0
  83. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/e3_desktop/mujoco_e3_desktop_srv.py +239 -0
  84. hex_zmq_servers-0.3.8/hex_zmq_servers/mujoco/mujoco_base.py +373 -0
  85. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/__init__.py +37 -0
  86. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/dummy/__init__.py +17 -0
  87. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/dummy/robot_dummy.py +92 -0
  88. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/dummy/robot_dummy_cli.py +27 -0
  89. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/dummy/robot_dummy_srv.py +79 -0
  90. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/gello/__init__.py +17 -0
  91. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/gello/robot_gello.py +364 -0
  92. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/gello/robot_gello_cli.py +27 -0
  93. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/gello/robot_gello_srv.py +90 -0
  94. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/hexarm/__init__.py +47 -0
  95. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/hexarm/robot_hexarm.py +290 -0
  96. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/hexarm/robot_hexarm_cli.py +35 -0
  97. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/hexarm/robot_hexarm_srv.py +84 -0
  98. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/hexarm/urdf/archer_l6y/empty.urdf +206 -0
  99. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/hexarm/urdf/archer_l6y/gp100.urdf +206 -0
  100. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/hexarm/urdf/archer_l6y/gp100_handle.urdf +206 -0
  101. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/hexarm/urdf/archer_l6y/gp100_p050.urdf +206 -0
  102. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/hexarm/urdf/archer_l6y/gp100_p050_handle.urdf +206 -0
  103. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/hexarm/urdf/archer_y6/empty.urdf +207 -0
  104. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/hexarm/urdf/archer_y6/gp100.urdf +207 -0
  105. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/hexarm/urdf/archer_y6/gp100_handle.urdf +207 -0
  106. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/hexarm/urdf/archer_y6/gp100_p050.urdf +207 -0
  107. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/hexarm/urdf/archer_y6/gp100_p050_handle.urdf +207 -0
  108. hex_zmq_servers-0.3.8/hex_zmq_servers/robot/robot_base.py +264 -0
  109. hex_zmq_servers-0.3.8/hex_zmq_servers/zmq_base.py +534 -0
  110. hex_zmq_servers-0.3.8/hex_zmq_servers.egg-info/PKG-INFO +147 -0
  111. hex_zmq_servers-0.3.8/hex_zmq_servers.egg-info/SOURCES.txt +114 -0
  112. hex_zmq_servers-0.3.8/hex_zmq_servers.egg-info/dependency_links.txt +1 -0
  113. hex_zmq_servers-0.3.8/hex_zmq_servers.egg-info/requires.txt +19 -0
  114. hex_zmq_servers-0.3.8/hex_zmq_servers.egg-info/top_level.txt +1 -0
  115. hex_zmq_servers-0.3.8/pyproject.toml +51 -0
  116. hex_zmq_servers-0.3.8/setup.cfg +4 -0
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,13 @@
1
+ include LICENSE
2
+ include README.md
3
+ include requirements.txt
4
+
5
+ recursive-include package_name *
6
+ recursive-include hex_zmq_servers/mujoco/archer_y6/model * *
7
+ recursive-include hex_zmq_servers/mujoco/e3_desktop/model * *
8
+ recursive-include hex_zmq_servers/robot/hexarm/urdf * *
9
+ recursive-include hex_zmq_servers/config *
10
+
11
+ recursive-exclude * *.pyc
12
+ recursive-exclude * .DS_Store
13
+ recursive-exclude * __pycache__
@@ -0,0 +1,147 @@
1
+ Metadata-Version: 2.4
2
+ Name: hex_zmq_servers
3
+ Version: 0.3.8
4
+ Summary: HEXFELLOW ZMQ Servers
5
+ Author-email: Dong Zhaorui <joray.dong@hexfellow.com>
6
+ Maintainer-email: jecjune <zejun.chen@hexfellow.com>, Dong Zhaorui <joray.dong@hexfellow.com>
7
+ License-Expression: Apache-2.0
8
+ Project-URL: Homepage, https://github.com/hexfellow/hex_zmq_servers
9
+ Project-URL: Repository, https://github.com/hexfellow/hex_zmq_servers.git
10
+ Project-URL: Bug Tracker, https://github.com/hexfellow/hex_zmq_servers/issues
11
+ Project-URL: Documentation, https://github.com/hexfellow/hex_zmq_servers/wiki
12
+ Keywords: hex_zmq_servers
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Intended Audience :: Science/Research
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Operating System :: POSIX :: Linux
22
+ Requires-Python: >=3.10
23
+ Description-Content-Type: text/markdown
24
+ License-File: LICENSE
25
+ Requires-Dist: pyzmq>=27.0.1
26
+ Requires-Dist: hex_device<1.4.0,>=1.3.1
27
+ Requires-Dist: hex_robo_utils<0.3.0,>=0.2.0
28
+ Requires-Dist: dynamixel-sdk==3.8.4
29
+ Requires-Dist: opencv-python>=4.2
30
+ Provides-Extra: berxel
31
+ Requires-Dist: berxel_py_wrapper>=2.0.182; extra == "berxel"
32
+ Provides-Extra: realsense
33
+ Requires-Dist: pyrealsense2>=2.56.5.9235; extra == "realsense"
34
+ Provides-Extra: mujoco
35
+ Requires-Dist: mujoco>=3.3.3; extra == "mujoco"
36
+ Provides-Extra: all
37
+ Requires-Dist: berxel_py_wrapper>=2.0.182; extra == "all"
38
+ Requires-Dist: mujoco>=3.3.3; extra == "all"
39
+ Requires-Dist: pyrealsense2>=2.56.5.9235; extra == "all"
40
+ Dynamic: license-file
41
+
42
+ # hex_zmq_servers
43
+
44
+ ## Introduction
45
+
46
+ **`hex_zmq_servers`** is a comprehensive distributed device control framework based on ZeroMQ, providing efficient client-server communication for HEXFELLOW devices.
47
+
48
+ ## Project Structure
49
+
50
+ ```bash
51
+ hex_zmq_servers/
52
+ ├── hex_zmq_servers/ # Core library
53
+ │ ├── robot/ # Robot devices
54
+ │ ├── cam/ # Camera devices
55
+ │ ├── mujoco/ # Mujoco simulation devices
56
+ │ └── config/ # Default configuration files
57
+ ├── examples/ # Example code
58
+ │ ├── basic/ # Basic examples (single device)
59
+ │ └── adv/ # Advanced examples (multi-device coordination)
60
+ └── venv.sh # Virtual environment script
61
+ ```
62
+
63
+ ## Devices
64
+
65
+ ### Robot
66
+
67
+ - **dummy**: Dummy robot, for testing and development
68
+ - **gello**: GELLO robot, based on Dynamixel servo
69
+ - **hexarm**: HexArm robot of HEXFELLOW
70
+
71
+ ### Camera
72
+
73
+ - **dummy**: Dummy camera, for testing and development
74
+ - **berxel**: Berxel depth camera, providing RGB and depth images
75
+
76
+ ### Mujoco
77
+
78
+ - **archer_y6**: Physical simulation of Archer Y6 robot
79
+ - **e3_desktop**: Physical simulation of E3 Desktop robot
80
+
81
+ ## Installation
82
+
83
+ ### Install from PyPI
84
+
85
+ 1. For those who only want to use the library in their projects, it is recommended to install it from PyPI.
86
+
87
+ ```bash
88
+ pip install hex_zmq_servers[all]
89
+ ```
90
+
91
+ 2. If you don't want to install the extra dependencies for extra devices, you can run:
92
+
93
+ ```bash
94
+ pip install hex_zmq_servers
95
+ ```
96
+
97
+ ### Install from Source Code
98
+
99
+ 1. For those who want to test the examples or contribute to the project, you can install it from source code.
100
+
101
+ ```bash
102
+ git clone https://github.com/hexfellow/hex_zmq_servers.git
103
+ cd hex_zmq_servers
104
+ ./venv.sh
105
+ ```
106
+
107
+ 2. If you don't want to install the extra dependencies for extra devices, you can run:
108
+
109
+ ```bash
110
+ git clone https://github.com/hexfellow/hex_zmq_servers.git
111
+ cd hex_zmq_servers
112
+ ./venv.sh --min
113
+ ```
114
+
115
+ (**Important**) Some examples would not work without the extra dependencies.
116
+
117
+ 3. If you don't want to install the examples, you can run:
118
+
119
+ ```bash
120
+ git clone https://github.com/hexfellow/hex_zmq_servers.git
121
+ cd hex_zmq_servers
122
+ ./venv.sh --pkg-only
123
+ ```
124
+
125
+ ## Examples
126
+
127
+ There are two types of examples in the project:
128
+
129
+ - **basic/**: Basic examples, showing the usage of a single device
130
+ - **adv/**: Advanced examples, showing multi-device coordination
131
+
132
+ More details please refer to [examples/README.md](examples/README.md)
133
+
134
+ ## Contributions
135
+
136
+ Welcome to submit issues and pull requests!
137
+
138
+ ## License
139
+
140
+ Apache License 2.0
141
+
142
+ ## Contact
143
+
144
+ - Author: [Dong Zhaorui](https://github.com/IBNBlank)
145
+ - Maintainer: [jecjune](https://github.com/Jecjune)
146
+ - GitHub: [hex_zmq_servers](https://github.com/hexfellow/hex_zmq_servers)
147
+ - Issue Tracker: [hex_zmq_servers](https://github.com/hexfellow/hex_zmq_servers/issues)
@@ -0,0 +1,106 @@
1
+ # hex_zmq_servers
2
+
3
+ ## Introduction
4
+
5
+ **`hex_zmq_servers`** is a comprehensive distributed device control framework based on ZeroMQ, providing efficient client-server communication for HEXFELLOW devices.
6
+
7
+ ## Project Structure
8
+
9
+ ```bash
10
+ hex_zmq_servers/
11
+ ├── hex_zmq_servers/ # Core library
12
+ │ ├── robot/ # Robot devices
13
+ │ ├── cam/ # Camera devices
14
+ │ ├── mujoco/ # Mujoco simulation devices
15
+ │ └── config/ # Default configuration files
16
+ ├── examples/ # Example code
17
+ │ ├── basic/ # Basic examples (single device)
18
+ │ └── adv/ # Advanced examples (multi-device coordination)
19
+ └── venv.sh # Virtual environment script
20
+ ```
21
+
22
+ ## Devices
23
+
24
+ ### Robot
25
+
26
+ - **dummy**: Dummy robot, for testing and development
27
+ - **gello**: GELLO robot, based on Dynamixel servo
28
+ - **hexarm**: HexArm robot of HEXFELLOW
29
+
30
+ ### Camera
31
+
32
+ - **dummy**: Dummy camera, for testing and development
33
+ - **berxel**: Berxel depth camera, providing RGB and depth images
34
+
35
+ ### Mujoco
36
+
37
+ - **archer_y6**: Physical simulation of Archer Y6 robot
38
+ - **e3_desktop**: Physical simulation of E3 Desktop robot
39
+
40
+ ## Installation
41
+
42
+ ### Install from PyPI
43
+
44
+ 1. For those who only want to use the library in their projects, it is recommended to install it from PyPI.
45
+
46
+ ```bash
47
+ pip install hex_zmq_servers[all]
48
+ ```
49
+
50
+ 2. If you don't want to install the extra dependencies for extra devices, you can run:
51
+
52
+ ```bash
53
+ pip install hex_zmq_servers
54
+ ```
55
+
56
+ ### Install from Source Code
57
+
58
+ 1. For those who want to test the examples or contribute to the project, you can install it from source code.
59
+
60
+ ```bash
61
+ git clone https://github.com/hexfellow/hex_zmq_servers.git
62
+ cd hex_zmq_servers
63
+ ./venv.sh
64
+ ```
65
+
66
+ 2. If you don't want to install the extra dependencies for extra devices, you can run:
67
+
68
+ ```bash
69
+ git clone https://github.com/hexfellow/hex_zmq_servers.git
70
+ cd hex_zmq_servers
71
+ ./venv.sh --min
72
+ ```
73
+
74
+ (**Important**) Some examples would not work without the extra dependencies.
75
+
76
+ 3. If you don't want to install the examples, you can run:
77
+
78
+ ```bash
79
+ git clone https://github.com/hexfellow/hex_zmq_servers.git
80
+ cd hex_zmq_servers
81
+ ./venv.sh --pkg-only
82
+ ```
83
+
84
+ ## Examples
85
+
86
+ There are two types of examples in the project:
87
+
88
+ - **basic/**: Basic examples, showing the usage of a single device
89
+ - **adv/**: Advanced examples, showing multi-device coordination
90
+
91
+ More details please refer to [examples/README.md](examples/README.md)
92
+
93
+ ## Contributions
94
+
95
+ Welcome to submit issues and pull requests!
96
+
97
+ ## License
98
+
99
+ Apache License 2.0
100
+
101
+ ## Contact
102
+
103
+ - Author: [Dong Zhaorui](https://github.com/IBNBlank)
104
+ - Maintainer: [jecjune](https://github.com/Jecjune)
105
+ - GitHub: [hex_zmq_servers](https://github.com/hexfellow/hex_zmq_servers)
106
+ - Issue Tracker: [hex_zmq_servers](https://github.com/hexfellow/hex_zmq_servers/issues)
@@ -0,0 +1,173 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding:utf-8 -*-
3
+ ################################################################
4
+ # Copyright 2025 Dong Zhaorui. All rights reserved.
5
+ # Author: Dong Zhaorui 847235539@qq.com
6
+ # Date : 2025-09-15
7
+ ################################################################
8
+
9
+ from .hex_launch import HexLaunch, HexNodeConfig, HEX_LOG_LEVEL, hex_dict_str, hex_log, hex_err
10
+
11
+ from .device_base import HexDeviceBase
12
+ from .zmq_base import hex_zmq_ts_to_ns, ns_to_hex_zmq_ts, hex_ns_now, hex_zmq_ts_now, hex_zmq_ts_delta_ms
13
+ from .zmq_base import HexRate, HexZMQClientBase, HexZMQServerBase, hex_server_helper
14
+ from .zmq_base import HexZMQDummyClient, HexZMQDummyServer
15
+
16
+ from .robot import HexRobotBase, HexRobotClientBase, HexRobotServerBase
17
+ from .robot import HexRobotDummy, HexRobotDummyClient, HexRobotDummyServer
18
+ from .robot import HexRobotGello, HexRobotGelloClient, HexRobotGelloServer
19
+ from .robot import HexRobotHexarm, HexRobotHexarmClient, HexRobotHexarmServer, HEXARM_URDF_PATH_DICT
20
+
21
+ from .cam import HexCamBase, HexCamClientBase, HexCamServerBase
22
+ from .cam import HexCamDummy, HexCamDummyClient, HexCamDummyServer
23
+ from .cam import HexCamRGB, HexCamRGBClient, HexCamRGBServer
24
+
25
+ import os
26
+
27
+ file_dir = os.path.dirname(os.path.abspath(__file__))
28
+ HEX_ZMQ_SERVERS_PATH_DICT = {
29
+ "zmq_dummy": f"{file_dir}/zmq_base.py",
30
+ "robot_dummy": f"{file_dir}/robot/dummy/robot_dummy_srv.py",
31
+ "robot_gello": f"{file_dir}/robot/gello/robot_gello_srv.py",
32
+ "robot_hexarm": f"{file_dir}/robot/hexarm/robot_hexarm_srv.py",
33
+ "cam_dummy": f"{file_dir}/cam/dummy/cam_dummy_srv.py",
34
+ "cam_rgb": f"{file_dir}/cam/rgb/cam_rgb_srv.py",
35
+ }
36
+ HEX_ZMQ_CONFIGS_PATH_DICT = {
37
+ "zmq_dummy": f"{file_dir}/config/zmq_dummy.json",
38
+ "robot_dummy": f"{file_dir}/config/robot_dummy.json",
39
+ "robot_gello": f"{file_dir}/config/robot_gello.json",
40
+ "robot_hexarm": f"{file_dir}/config/robot_hexarm.json",
41
+ "cam_dummy": f"{file_dir}/config/cam_dummy.json",
42
+ "cam_rgb": f"{file_dir}/config/cam_rgb.json",
43
+ }
44
+
45
+ __all__ = [
46
+ # version
47
+ "__version__",
48
+
49
+ # path
50
+ "HEX_ZMQ_SERVERS_PATH_DICT",
51
+ "HEX_ZMQ_CONFIGS_PATH_DICT",
52
+ "HEXARM_URDF_PATH_DICT",
53
+
54
+ # launch
55
+ "HexLaunch",
56
+ "HexNodeConfig",
57
+ "HEX_LOG_LEVEL",
58
+ "hex_dict_str",
59
+ "hex_log",
60
+ "hex_err",
61
+
62
+ # base
63
+ "HexDeviceBase",
64
+ "HexRate",
65
+ "hex_zmq_ts_to_ns",
66
+ "ns_to_hex_zmq_ts",
67
+ "hex_ns_now",
68
+ "hex_zmq_ts_now",
69
+ "hex_zmq_ts_delta_ms",
70
+ "HexZMQClientBase",
71
+ "HexZMQServerBase",
72
+ "hex_server_helper",
73
+ "HexZMQDummyClient",
74
+ "HexZMQDummyServer",
75
+
76
+ # robot
77
+ "HexRobotBase",
78
+ "HexRobotClientBase",
79
+ "HexRobotServerBase",
80
+ "HexRobotDummy",
81
+ "HexRobotDummyClient",
82
+ "HexRobotDummyServer",
83
+ "HexRobotGello",
84
+ "HexRobotGelloClient",
85
+ "HexRobotGelloServer",
86
+ "HexRobotHexarm",
87
+ "HexRobotHexarmClient",
88
+ "HexRobotHexarmServer",
89
+
90
+ # camera
91
+ "HexCamBase",
92
+ "HexCamClientBase",
93
+ "HexCamServerBase",
94
+ "HexCamDummy",
95
+ "HexCamDummyClient",
96
+ "HexCamDummyServer",
97
+ "HexCamRGB",
98
+ "HexCamRGBClient",
99
+ "HexCamRGBServer",
100
+ ]
101
+
102
+ # Check optional dependencies availability
103
+ from importlib.util import find_spec
104
+
105
+ _HAS_BERXEL = find_spec("berxel_py_wrapper") is not None
106
+ _HAS_REALSENSE = find_spec("pyrealsense2") is not None
107
+ _HAS_MUJOCO = find_spec("mujoco") is not None
108
+
109
+ # Optional: berxel
110
+ if _HAS_BERXEL:
111
+ from .cam import HexCamBerxel, HexCamBerxelClient, HexCamBerxelServer
112
+ HEX_ZMQ_SERVERS_PATH_DICT.update({
113
+ "cam_berxel":
114
+ f"{file_dir}/cam/berxel/cam_berxel_srv.py",
115
+ })
116
+ HEX_ZMQ_CONFIGS_PATH_DICT.update({
117
+ "cam_berxel":
118
+ f"{file_dir}/config/cam_berxel.json",
119
+ })
120
+ __all__.extend([
121
+ "HexCamBerxel",
122
+ "HexCamBerxelClient",
123
+ "HexCamBerxelServer",
124
+ ])
125
+
126
+ # Optional: realsense
127
+ if _HAS_REALSENSE:
128
+ from .cam import HexCamRealsense, HexCamRealsenseClient, HexCamRealsenseServer
129
+ HEX_ZMQ_SERVERS_PATH_DICT.update({
130
+ "cam_realsense":
131
+ f"{file_dir}/cam/realsense/cam_realsense_srv.py",
132
+ })
133
+ HEX_ZMQ_CONFIGS_PATH_DICT.update({
134
+ "cam_realsense":
135
+ f"{file_dir}/config/cam_realsense.json",
136
+ })
137
+ __all__.extend([
138
+ "HexCamRealsense",
139
+ "HexCamRealsenseClient",
140
+ "HexCamRealsenseServer",
141
+ ])
142
+
143
+ # Optional: mujoco
144
+ if _HAS_MUJOCO:
145
+ from .mujoco import HexMujocoBase, HexMujocoClientBase, HexMujocoServerBase
146
+ from .mujoco import HexMujocoArcherY6, HexMujocoArcherY6Client, HexMujocoArcherY6Server
147
+ from .mujoco import HexMujocoE3Desktop, HexMujocoE3DesktopClient, HexMujocoE3DesktopServer
148
+ HEX_ZMQ_SERVERS_PATH_DICT.update({
149
+ "mujoco_archer_y6":
150
+ f"{file_dir}/mujoco/archer_y6/mujoco_archer_y6_srv.py",
151
+ "mujoco_e3_desktop":
152
+ f"{file_dir}/mujoco/e3_desktop/mujoco_e3_desktop_srv.py",
153
+ })
154
+ HEX_ZMQ_CONFIGS_PATH_DICT.update({
155
+ "mujoco_archer_y6":
156
+ f"{file_dir}/config/mujoco_archer_y6.json",
157
+ "mujoco_e3_desktop":
158
+ f"{file_dir}/config/mujoco_e3_desktop.json",
159
+ })
160
+ __all__.extend([
161
+ # mujoco
162
+ "HexMujocoBase",
163
+ "HexMujocoClientBase",
164
+ "HexMujocoServerBase",
165
+ "HexMujocoArcherY6",
166
+ "HexMujocoArcherY6Client",
167
+ "HexMujocoArcherY6Server",
168
+ "HexMujocoE3Desktop",
169
+ "HexMujocoE3DesktopClient",
170
+ "HexMujocoE3DesktopServer",
171
+ ])
172
+
173
+ # print("#### Thanks for using hex_zmq_servers :D ####")
@@ -0,0 +1,52 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding:utf-8 -*-
3
+ ################################################################
4
+ # Copyright 2025 Dong Zhaorui. All rights reserved.
5
+ # Author: Dong Zhaorui 847235539@qq.com
6
+ # Date : 2025-09-12
7
+ ################################################################
8
+
9
+ from .cam_base import HexCamBase, HexCamClientBase, HexCamServerBase
10
+ from .dummy import HexCamDummy, HexCamDummyClient, HexCamDummyServer
11
+ from .rgb import HexCamRGB, HexCamRGBClient, HexCamRGBServer
12
+
13
+ __all__ = [
14
+ # base
15
+ "HexCamBase",
16
+ "HexCamClientBase",
17
+ "HexCamServerBase",
18
+
19
+ # dummy
20
+ "HexCamDummy",
21
+ "HexCamDummyClient",
22
+ "HexCamDummyServer",
23
+
24
+ # rgb
25
+ "HexCamRGB",
26
+ "HexCamRGBClient",
27
+ "HexCamRGBServer",
28
+ ]
29
+
30
+ # Check optional dependencies availability
31
+ from importlib.util import find_spec
32
+
33
+ _HAS_BERXEL = find_spec("berxel_py_wrapper") is not None
34
+ _HAS_REALSENSE = find_spec("pyrealsense2") is not None
35
+
36
+ # Optional: berxel
37
+ if _HAS_BERXEL:
38
+ from .berxel import HexCamBerxel, HexCamBerxelClient, HexCamBerxelServer
39
+ __all__.extend([
40
+ "HexCamBerxel",
41
+ "HexCamBerxelClient",
42
+ "HexCamBerxelServer",
43
+ ])
44
+
45
+ # Optional: realsense
46
+ if _HAS_REALSENSE:
47
+ from .realsense import HexCamRealsense, HexCamRealsenseClient, HexCamRealsenseServer
48
+ __all__.extend([
49
+ "HexCamRealsense",
50
+ "HexCamRealsenseClient",
51
+ "HexCamRealsenseServer",
52
+ ])