Advertisement
sinned6915

git diff

Mar 18th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. pi@octopi:~/klipper/klippy $ cd ~/klipper ; git diff
  2. diff --git a/klippy/heater.py b/klippy/heater.py
  3. index d802133..c5cfd24 100644
  4. --- a/klippy/heater.py
  5. +++ b/klippy/heater.py
  6. @@ -84,7 +84,15 @@ Sensors = {
  7. 't2': 150., 'r2': 1360., 't3': 300., 'r3': 80.65 },
  8. "NTC 100K beta 3950": {
  9. 'class': ThermistorBeta, 't1': 25., 'r1': 100000., 'beta': 3950. },
  10. - "AD595": { 'class': Linear, 't1': 25., 'v1': .25, 't2': 300., 'v2': 3.022 },
  11. + "AD595":
  12. + { 'class': Linear, 't1': 25., 'v1': .25, 't2': 300., 'v2': 3.022 },
  13. +######################################################################
  14. +# Added DJP for built-in unknown AliRubber bed heater thermistors
  15. +# values are actual, as measured
  16. +######################################################################
  17. + "AliRubber": {
  18. + 'class': Thermistor, 't1': 21., 'r1': 102300.,
  19. + 't2': 45., 'r2': 21100., 't3': 71., 'r3': 9450. },
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement