Improve fan curve

- Implement fan cooldown and heatup periods
- Add fan get/set commands
- Fix compilation with logging level lower than debug
This commit is contained in:
Jeremy Soller
2020-04-03 19:25:25 -06:00
parent 4fdb9ecbdc
commit 62a909ee81
13 changed files with 350 additions and 46 deletions

View File

@@ -16,6 +16,10 @@ enum Command {
CMD_SPI = 5,
// Reset EC
CMD_RESET = 6,
// Get fan speeds
CMD_FAN_GET = 7,
// Set fan speeds
CMD_FAN_SET = 8,
//TODO
};