def thermistor(self): analogRead = self.hal.sensors.temp.value resistance = converters.tension2resistance(analogRead, 10000) temp = converters.resistance2celcius(resistance, **THERMISTANCE) return temp
def thermistor(analogRead): resistance = converters.tension2resistance(analogRead, 10000) temp = converters.resistance2celcius(resistance, **THERMISTANCE) return temp