@@ -26,22 +26,22 @@ internal class ArcticFanController : Hardware
2626 private readonly System . Collections . Generic . List < Sensor > _rpmSensors = new ( ) ;
2727 private readonly System . Collections . Generic . List < Sensor > _controlSensors = new ( ) ;
2828
29- public ArcticFanController ( HidDevice dev , ISettings settings ) : base ( "Arctic Fan Controller" , new Identifier ( dev ) , settings )
29+ public ArcticFanController ( HidDevice dev , ISettings settings ) : base ( "ARCTIC Fan Controller" , new Identifier ( dev ) , settings )
3030 {
3131 if ( dev . TryOpen ( out HidStream hidStream ) )
3232 {
3333 // Create fan sensors (RPM monitoring) - all 10 fans have RPM feedback
3434 for ( int i = 1 ; i <= CHANNEL_COUNT ; i ++ )
3535 {
36- var fanSensor = new Sensor ( $ "Arctic Controller Fan { i } ", i , SensorType . Fan , this , settings ) ;
36+ var fanSensor = new Sensor ( $ "Fan # { i } ", i , SensorType . Fan , this , settings ) ;
3737 ActivateSensor ( fanSensor ) ;
3838 _rpmSensors . Add ( fanSensor ) ;
3939 }
4040
4141 // Create control sensors - all 10 fans can be controlled
4242 for ( int i = 1 ; i <= CHANNEL_COUNT ; i ++ )
4343 {
44- var controlSensor = new Sensor ( $ "Arctic Controller Fan Control { i } ", i , SensorType . Control , this , settings ) ;
44+ var controlSensor = new Sensor ( $ "Control # { i } ", i , SensorType . Control , this , settings ) ;
4545 Control control = new ( controlSensor , settings , CONTROL_VALUE_MIN , CONTROL_VALUE_MAX ) ;
4646 control . ControlModeChanged += Control_ControlModeChanged ;
4747 control . SoftwareControlValueChanged += Control_SoftwareControlValueChanged ;
0 commit comments