Skip to content

Commit 033b93d

Browse files
committed
fix bug
1 parent 45af788 commit 033b93d

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# ChangeLog for pymycobot
22

3+
## v3.3.2 (2023-12-5)
4+
5+
- release v3.3.2
6+
- fix bug
7+
38
## v3.3.1 (2023-12-4)
49

510
- release v3.3.1

pymycobot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
from pymycobot.mybuddyemoticon import MyBuddyEmoticon
5353
__all__.append("MyBuddyEmoticon")
5454

55-
__version__ = "3.3.1"
55+
__version__ = "3.3.2"
5656
__author__ = "Elephantrobotics"
5757
__email__ = "weiquan.xu@elephantrobotics.com"
5858
__git_url__ = "https://github.com/elephantrobotics/pymycobot"

pymycobot/mercury.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def _mesg(self, genre, *args, **kwargs):
4949
data = self._read(genre, _class=self.__class__.__name__)
5050
if genre == ProtocolCode.SET_SSID_PWD:
5151
return None
52-
res = self._process_received(data, genre)
52+
res = self._process_received(data, genre, 14)
5353
if genre in [
5454
ProtocolCode.ROBOT_VERSION,
5555
ProtocolCode.GET_ROBOT_ID,

0 commit comments

Comments
 (0)