Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
241 B

  1. /*
  2. Fan MODULE
  3. Copyright (C) 2021 by Maxim Prokhorov <prokhorov dot max at outlook dot com>
  4. */
  5. #pragma once
  6. enum class FanSpeed {
  7. Off,
  8. Low,
  9. Medium,
  10. High
  11. };
  12. void fanSpeed(FanSpeed);
  13. FanSpeed fanSpeed();
  14. void fanSetup();