Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
Publish float instead of integer for trim tab angle
Browse files Browse the repository at this point in the history
  • Loading branch information
DFriend01 authored Jan 3, 2024
1 parent badf33d commit 9532f76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller/wingsail/wingsail_ctrl_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def __publish(self):
It also logs information about the publication to the logger."""

msg = SailCmd()
msg.trim_tab_angle_degrees = 0
msg.trim_tab_angle_degrees = 0.0
self.__trim_tab_angle_pub.publish(msg)
self.get_logger().info(f"Published to {self.__trim_tab_angle_pub.topic}")

Expand Down

0 comments on commit 9532f76

Please sign in to comment.