Replies: 1 comment 3 replies
-
Does this really need to be in printer.cfg or can it not also just be defined in einsy.cfg prior to the extruder section |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Since I found out that the built in thermistor type "PT100 INA826" is really inaccruate, I handcrafted one out of Marlin's thermistor type 247 as define in Prusa's firmware.
#if defined(E3D_PT100_EXTRUDER_WITH_AMP)
#define TEMP_SENSOR_0 247
Here's the codes you need to copy into your printer.cfg
[adc_temperature E3D_PT100_EXTRUDER_WITH_AMP] temperature1: 0 voltage1: 0 temperature2: 1 voltage2: 1.178 temperature3: 10 voltage3: 1.217 temperature4: 20 voltage4: 1.266 temperature5: 30 voltage5: 1.305 temperature6: 40 voltage6: 1.344 temperature7: 50 voltage7: 1.383 temperature8: 60 voltage8: 1.422 temperature9: 70 voltage9: 1.461 temperature10: 80 voltage10: 1.500 temperature11: 90 voltage11: 1.540 temperature12: 100 voltage12: 1.579 temperature13: 110 voltage13: 1.618 temperature14: 120 voltage14: 1.662 temperature15: 130 voltage15: 1.701 temperature16: 140 voltage16: 1.730 temperature17: 150 voltage17: 1.760 temperature18: 160 voltage18: 1.808 temperature19: 170 voltage19: 1.848 temperature20: 180 voltage20: 1.887 temperature21: 190 voltage21: 1.926 temperature22: 200 voltage22: 1.965 temperature23: 210 voltage23: 2.004 temperature24: 220 voltage24: 2.043 temperature25: 230 voltage25: 2.082 temperature26: 240 voltage26: 2.111 temperature27: 250 voltage27: 2.151 temperature28: 260 voltage28: 2.190 temperature29: 270 voltage29: 2.219 temperature30: 280 voltage30: 2.258 temperature31: 290 voltage31: 2.292 temperature32: 300 voltage32: 2.322 temperature33: 310 voltage33: 2.361 temperature34: 320 voltage34: 2.400 temperature35: 330 voltage35: 2.439 temperature36: 340 voltage36: 2.468 temperature37: 350 voltage37: 2.507
and here's how you define your extruder in einsy-rambo.cfg
[extruder] nozzle_diameter: 0.400 filament_diameter: 1.750 heater_pin: PE5 sensor_type: E3D_PT100_EXTRUDER_WITH_AMP sensor_pin: PF0 min_temp: 0 max_temp: 350
just for reference, here's Marlin's thermistor table
For anyone wants to read this, the first number is the analogRead value, the last number is the corresponding temperature, I have no idea what OVERSAMPLENR does but it seems to be not affecting anything here.
The way I make that table is to work out what voltage it is at that analogRead value.
Beta Was this translation helpful? Give feedback.
All reactions