File tree Expand file tree Collapse file tree 3 files changed +23
-1
lines changed Expand file tree Collapse file tree 3 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 99
99
"MyBuddyEmoticon"
100
100
]
101
101
102
- __version__ = "3.9.9"
102
+ __version__ = "3.9.9b0"
103
103
__author__ = "Elephantrobotics"
104
104
105
105
__git_url__ = "https://github.com/elephantrobotics/pymycobot"
Original file line number Diff line number Diff line change @@ -766,6 +766,17 @@ def get_coords_plan(self):
766
766
"""
767
767
return self ._mesg (ProtocolCode .GET_COORDS_PLAN , has_reply = True )
768
768
769
+ def get_modify_version (self ):
770
+ """get modify version
771
+
772
+ Return: int
773
+ """
774
+ return self ._mesg (ProtocolCode .MODIFY_VERSION , has_reply = True )
775
+
776
+ def clear_queue (self ):
777
+ """Clear Queue Data"""
778
+ return self ._mesg (ProtocolCode .CLEAR_COMMAND_QUEUE , has_reply = True )
779
+
769
780
# Other
770
781
def wait (self , t ):
771
782
time .sleep (t )
Original file line number Diff line number Diff line change @@ -781,6 +781,17 @@ def get_coords_plan(self):
781
781
"""
782
782
return self ._mesg (ProtocolCode .GET_COORDS_PLAN , has_reply = True )
783
783
784
+ def get_modify_version (self ):
785
+ """get modify version
786
+
787
+ Return: int
788
+ """
789
+ return self ._mesg (ProtocolCode .MODIFY_VERSION , has_reply = True )
790
+
791
+ def clear_queue (self ):
792
+ """Clear Queue Data"""
793
+ return self ._mesg (ProtocolCode .CLEAR_COMMAND_QUEUE , has_reply = True )
794
+
784
795
# Other
785
796
def wait (self , t ):
786
797
time .sleep (t )
You can’t perform that action at this time.
0 commit comments