Skip to content

Commit

Permalink
release v3.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
anla-xu committed Sep 13, 2024
1 parent 8ebbf38 commit 7669631
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# ChangeLog for pymycobot

## v3.5.0 (2024-9-13)

- release v3.6.0
- add mycobot class init delay 1.5S

## v3.5.1 (2024-9-12)

- release v3.5.1
Expand Down
2 changes: 1 addition & 1 deletion pymycobot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
from pymycobot.mybuddyemoticon import MyBuddyEmoticon
__all__.append("MyBuddyEmoticon")

__version__ = "3.5.1"
__version__ = "3.5.2"
__author__ = "Elephantrobotics"
__email__ = "[email protected]"
__git_url__ = "https://github.com/elephantrobotics/pymycobot"
Expand Down
1 change: 1 addition & 0 deletions pymycobot/mycobot.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def __init__(self, port, baudrate="115200", timeout=0.1, debug=False, thread_loc
self._serial_port.timeout = timeout
self._serial_port.rts = False
self._serial_port.open()
time.sleep(1.5)


_write = write
Expand Down

0 comments on commit 7669631

Please sign in to comment.