Skip to content

Commit

Permalink
network imu 롤백
Browse files Browse the repository at this point in the history
  • Loading branch information
boobooboo2 committed Dec 19, 2024
1 parent 5e02e64 commit 6c20923
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions modi_plus/module/setup_module/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,10 @@ def time_up(self) -> bool:

@property
@check_connection
def imu_angle_x(self) -> int:
"""Returns the angle_x angle of the MODI Play imu
def imu_roll(self) -> int:
"""Returns the roll angle of the MODI Play imu
:return: Angle_x angle.
:return: Roll angle.
:rtype: int
"""

Expand All @@ -261,10 +261,10 @@ def imu_angle_x(self) -> int:

@property
@check_connection
def imu_angle_y(self) -> int:
"""Returns the angle_y angle of the MODI Play imu
def imu_pitch(self) -> int:
"""Returns the pitch angle of the MODI Play imu
:return: Angle_y angle.
:return: Pitch angle.
:rtype: int
"""

Expand All @@ -277,10 +277,10 @@ def imu_angle_y(self) -> int:

@property
@check_connection
def imu_angle_zle_z(self) -> int:
"""Returns the angle_z angle of the MODI Play imu
def imu_yaw(self) -> int:
"""Returns the yaw angle of the MODI Play imu
:return: Angle_z angle.
:return: Yaw angle.
:rtype: int
"""

Expand Down

0 comments on commit 6c20923

Please sign in to comment.