only:named parameters

This commit is contained in:
rusefillc 2023-06-12 19:32:49 -04:00
parent 1a8cacf7c1
commit fcebccd2c4
1 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,8 @@ void setCommonNTCSensor(ThermistorConf *thermistorConf, float pullup) {
* 294 Ohm @ 80C
* http://www.rexbo.eu/hella/coolant-temperature-sensor-6pt009107121?c=100334&at=3130
*/
thermistorConf->config = {-20, 23.8889, 120, 18000, 2100, 100, pullup};
thermistorConf->config = {/*temp*/-20, /*temp*/23.8889, /*temp*/120,
/*resistance*/18000, /*resistance*/2100, /*resistance*/100, pullup};
}
void set10K_4050K(ThermistorConf *thermistorConf, float pullup) {