Skip to content

Commit

Permalink
Remove config setting of tripod yaw, pitch, and roll because of side …
Browse files Browse the repository at this point in the history
…effects
  • Loading branch information
Raymond LeClair committed Mar 12, 2024
1 parent 5c8d71a commit 0ffab14
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions axis-ptz-controller/axis_ptz_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -487,9 +487,7 @@ def _config_callback(
) # [s]
self.capture_dir = config.get("capture_dir", self.capture_dir)
self.lead_time = config.get("lead_time", self.lead_time) # [s]
self.alpha = config.get("tripod_yaw", self.alpha) # [deg]
self.beta = config.get("tripod_pitch", self.beta) # [deg]
self.gamma = config.get("tripod_roll", self.gamma) # [deg]
# Cannot set tripod yaw, pitch, and roll because of side effects
self.pan_gain = config.get("pan_gain", self.pan_gain) # [1/s]
self.pan_rate_min = config.get("pan_rate_min", self.pan_rate_min)
self.pan_rate_max = config.get("pan_rate_max", self.pan_rate_max)
Expand Down

0 comments on commit 0ffab14

Please sign in to comment.