Skip to content

Commit

Permalink
fix(hepa): fix a linter bug that makes CI complain
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanthecoder committed Apr 8, 2024
1 parent 95eed5e commit 3ac39a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/hepa-uv/firmware/hepa_control_hardware.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ class HepaControlHardware : public hepa_control::HepaControlInterface {
~HepaControlHardware() final = default;

void set_hepa_fan_speed(uint32_t duty_cycle) final;
uint16_t get_hepa_fan_rpm() final;
auto get_hepa_fan_rpm() -> uint16_t final;
void reset_hepa_fan_rpm() final;
void hepa_fan_rpm_irq(uint16_t rpm) final;
bool enable_tachometer(bool enable) final;
auto enable_tachometer(bool enable) -> bool final;

private:
uint16_t hepa_fan_rpm = 0;
};

} // namespace hepa_control_hardware
} // namespace hepa_control_hardware

0 comments on commit 3ac39a7

Please sign in to comment.