Marlin is an optimized firmware for RepRap 3D printers based on the Arduino platform. Many commercial 3D printers come with Marlin installed. Check with your vendor if you need source code for your specific machine. https://marlinfw.org
Find a file
2012-09-17 14:17:24 -05:00
Marlin cleanup for pull 2012-09-17 14:17:24 -05:00
.gitignore .gitignore: Add *~, *.orig, *.rej, move to root directory 2012-08-10 19:36:29 +01:00
README.md readme 2012-09-12 21:52:16 -05:00

WARNING:

This is an experimental modification to allow PID on your bed heater.

This will run at the same frequency as the main PID loop. Make sure you heater FET or SSR can do this. I use a fotek SSR-10DA and it's fine

add something like this to you configuration (pulling this branch will get you this

#define PIDTEMPBED

//from FOPDT model - kp=.39 Tp=405 Tdead=66, Tc set to 79.2, argressive factor of .15 (vs .1, 1, 10)
    #define  DEFAULT_bedKp 10.00
    #define  DEFAULT_bedKi .023
    #define  DEFAULT_bedKd 305.4

Autotune works for the bed. Give it an "M303 E-1 C8 S90" to run autotune on the bed at 90 degrees for 8 cycles.