Rename some functions, improve documentation

This commit is contained in:
2022-09-17 15:50:00 +02:00
parent 828964bf8f
commit dccd6f2773
3 changed files with 12 additions and 5 deletions

View File

@@ -9,8 +9,15 @@ interface Sensor {
{abstract} string name()
}
class HwmonFan {
class PwmControl {
+void pwm(int percent)
+int pwm()
+ void enableManualControl()
+ void reset()
- System Paths
- Initial Values
}
Fan <|-- HwmonFan