Skip to content

Commit

Permalink
Fixed normal commend and updated battery range.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybaltovski committed Jan 29, 2025
1 parent 89ab82c commit 65dc252
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ constexpr float FAN_CMD_LOW_ERROR = 0.0f;
constexpr float FAN_CMD_LOW_WARNING = 0.25f;

/// Fan command for normal state, percent of maximum speed
constexpr float FAN_CMD_NORMAL = 0.25f;
constexpr float FAN_CMD_NORMAL = 0.5f;

/// Initial temperature reading when no data is available, degrees Celsius
constexpr float INITIAL_READING = 30.0f;
Expand Down
2 changes: 1 addition & 1 deletion clearpath_hardware_interfaces/src/a300/fan_control.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ a300_cooling::ThermalSensors::ThermalSensors()
{"main_gnd_lug", ThermalSensor{-20, 0, 60, 80}},
{"dcdc_24v", ThermalSensor{-20, 0, 60, 80}},
{"dcdc_12v", ThermalSensor{-20, 0, 60, 80}},
{"battery", ThermalSensor{-20, 0, 60, 80}},
{"battery", ThermalSensor{-20, 0, 55, 60}},
{"pcb_motor1", ThermalSensor{-20, 0, 60, 80}},
{"mcu_motor1", ThermalSensor{-20, 0, 60, 80}},
{"pcb_motor2", ThermalSensor{-20, 0, 60, 80}},
Expand Down

0 comments on commit 65dc252

Please sign in to comment.