Handle read single fan speed

This commit is contained in:
Sebastian H. Gabrielli 2024-04-23 15:45:25 +02:00
parent bf3753a012
commit d964ebea37

View File

@ -142,9 +142,15 @@ uint8_t route_command(int pos) {
case READ_TERMPERATURE:
return READ_TERMPERATURE;
case READ_FAN_SPEED:
return READ_FAN_SPEED;
if (context.fan == FAN1) {
return fan1_history[0];
} else if (context.fan == FAN2) {
return fan2_history[0];
} else {
return 0;
}
break;
case READ_BULK_FAN_SPEED:
{
if (context.fan == FAN1) {
return fan1_history[pos];
} else if (context.fan == FAN2) {
@ -152,7 +158,7 @@ uint8_t route_command(int pos) {
} else {
return 0;
}
}
break;
case UNKNOWN_COMMAND:
default:
return 0xFF;