mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-07-14 02:07:50 -06:00
🐛 Spellcheck comments (#22496)
codespell -q 3 --builtin=clear,rare,informal,code -S ./Marlin/src/lcd/language -L alo,amin,endcode,stdio,uint
This commit is contained in:
parent
6a25e4e56f
commit
afca6e7459
135 changed files with 186 additions and 186 deletions
|
@ -73,7 +73,7 @@ class Thermistor:
|
|||
return r
|
||||
|
||||
def temp(self, adc):
|
||||
"Convert ADC reading into a temperature in Celcius"
|
||||
"Convert ADC reading into a temperature in Celsius"
|
||||
l = log(self.resist(adc))
|
||||
Tinv = self.c1 + self.c2*l + self.c3* l**3 # inverse temperature
|
||||
return (1/Tinv) - ZERO # temperature
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue