@@ -30,20 +30,20 @@ Install is not necessary, you can run examples without installation.Only Python3
30
30
31
31
## Update Summary
32
32
33
+ - > ### 1.5.0
34
+ - The new parameter of ` set_servo_cartisian ` interface is used to support servo cartisian movement of tool coordinate system
35
+ - Support delayed trigger digital IO
36
+ - Support position detection trigger digital IO
37
+ - Support configure the stop state to automatically reset IO signal
38
+ - Support motion commands based on axis angle
39
+ - Support to calculate the offset between two points
40
+ - Support for blocky code conversion and operation of xArmStudio1.5.0
41
+
33
42
- > ### 1.4.0
43
+
34
44
- Support servo cartesian interface
35
45
- Support for blocky code conversion and operation of xArmStudio1.4.0
36
46
37
- - > ### 1.3.0
38
-
39
- - Added several attributes
40
- - Support tool coordinate system movement
41
- - Support joint range limitation, collision rebound setting
42
- - Support user coordinate system setting
43
- - Support the status of the air pump
44
- - Added counter interface
45
- - Support for blocky code conversion and operation of xArmStudio1.3.0
46
-
47
47
- > ### [ More] ( ReleaseNotes.md )
48
48
49
49
@@ -137,9 +137,12 @@ __Note: Before running the example, please modify the ip value in the [robot.con
137
137
arm.set_position(... )
138
138
arm.set_servo_angle(... )
139
139
arm.set_servo_angle_j(... )
140
+ arm.set_servo_cartesian(... )
140
141
arm.move_gohome(... )
141
142
arm.move_circle(... )
142
143
arm.emergency_stop()
144
+ arm.set_position_aa(... )
145
+ arm.set_servo_cartesian_aa(... )
143
146
```
144
147
145
148
- #### Set
@@ -161,6 +164,8 @@ __Note: Before running the example, please modify the ip value in the [robot.con
161
164
arm.get_err_warn_code()
162
165
arm.get_position(... )
163
166
arm.get_servo_angle(... )
167
+ arm.get_position_aa(... )
168
+ arm.get_pose_offset(... )
164
169
```
165
170
166
171
- #### Setting
@@ -174,6 +179,8 @@ __Note: Before running the example, please modify the ip value in the [robot.con
174
179
arm.set_collision_sensitivity(... )
175
180
arm.set_teach_sensitivity(... )
176
181
arm.set_gravity_direction(... )
182
+ arm.config_tgpio_reset_when_stop(... )
183
+ arm.config_cgpio_reset_when_stop(... )
177
184
arm.clean_conf()
178
185
arm.save_conf()
179
186
```
@@ -195,6 +202,7 @@ __Note: Before running the example, please modify the ip value in the [robot.con
195
202
arm.get_tgpio_digital(... )
196
203
arm.set_tgpio_digital(... )
197
204
arm.get_tgpio_analog(... )
205
+ arm.set_tgpio_digital_with_xyz(... )
198
206
# Controller GPIO
199
207
arm.get_cgpio_digital(... )
200
208
arm.get_cgpio_analog(... )
@@ -203,6 +211,7 @@ __Note: Before running the example, please modify the ip value in the [robot.con
203
211
arm.set_cgpio_digital_input_function(... )
204
212
arm.set_cgpio_digital_output_function(... )
205
213
arm.get_cgpio_state()
214
+ arm.set_cgpio_digital_with_xyz(... )
206
215
```
207
216
208
217
- #### Other
@@ -211,6 +220,8 @@ __Note: Before running the example, please modify the ip value in the [robot.con
211
220
arm.shutdown_system(... )
212
221
arm.clean_error()
213
222
arm.clean_warn()
223
+ arm.set_counter_reset()
224
+ arm.set_counter_increase(... )
214
225
```
215
226
216
227
- #### Register/Release
@@ -223,6 +234,8 @@ __Note: Before running the example, please modify the ip value in the [robot.con
223
234
arm.register_mtable_mtbrake_changed_callback(callback)
224
235
arm.register_error_warn_changed_callback(callback)
225
236
arm.register_cmdnum_changed_callback(callback)
237
+ arm.register_temperature_changed_callback(callback)
238
+ arm.register_count_changed_callback(callback)
226
239
arm.release_report_callback(callback)
227
240
arm.release_report_location_callback(callback)
228
241
arm.release_connect_changed_callback(callback)
@@ -231,6 +244,8 @@ __Note: Before running the example, please modify the ip value in the [robot.con
231
244
arm.release_mtable_mtbrake_changed_callback(callback)
232
245
arm.release_error_warn_changed_callback(callback)
233
246
arm.release_cmdnum_changed_callback(callback)
247
+ arm.release_temperature_changed_callback(callback)
248
+ arm.release_count_changed_callback(callback)
234
249
```
235
250
236
251
- #### Property
@@ -268,5 +283,6 @@ __Note: Before running the example, please modify the ip value in the [robot.con
268
283
arm.device_type
269
284
arm.axis
270
285
arm.gravity_direction
286
+ arm.gpio_reset_config
271
287
```
272
288
0 commit comments