Browse Source

Add safety limit for hot bed power in example configuration

Cameron Lai 10 years ago
parent
commit
ad5c8cbba9
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      Marlin/example_configurations/makibox/Configuration.h

+ 4
- 1
Marlin/example_configurations/makibox/Configuration.h View File

@@ -220,7 +220,10 @@
220 220
 // all forms of bed control obey this (PID, bang-bang, bang-bang with hysteresis)
221 221
 // setting this to anything other than 255 enables a form of PWM to the bed just like HEATER_BED_DUTY_CYCLE_DIVIDER did,
222 222
 // so you shouldn't use it unless you are OK with PWM on your bed.  (see the comment on enabling PIDTEMPBED)
223
-#define MAX_BED_POWER 255 // limits duty cycle to bed; 255=full current
223
+#define MAX_BED_POWER 175 // limits duty cycle to bed; 255=full current
224
+// This limit is set to 175 by default in the Makibox configuration and it can adjusted
225
+// to increase the heat up rate. However, if changed, user must be aware of the safety concerns
226
+// of drawing too much current from the power supply.
224 227
 
225 228
 #ifdef PIDTEMPBED
226 229
 //120v 250W silicone heater into 4mm borosilicate (MendelMax 1.5+)

Loading…
Cancel
Save