Add files via upload

This commit is contained in:
logon84 2021-12-06 13:53:42 +01:00 committed by GitHub
parent 90add2b4c2
commit a55cc22cd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ miel_hvac_deg2temp(uint8_t deg)
return (31 - deg);
}
else {
return 2*deg + 128;
return (2*deg + 128);
}
}