Fix power calculations

As suggested by @max-pau in #3073 - #3074
This commit is contained in:
Scott Lahteine
2016-03-06 02:01:29 -08:00
parent e2b022cce2
commit 13ef12ad3f
19 changed files with 38 additions and 38 deletions

View File

@ -204,8 +204,8 @@ Here are some standard links for getting your machine calibrated:
#define BED_MAXTEMP 150
// If you want the M105 heater power reported in watts, define the BED_WATTS, and (shared for all extruders) EXTRUDER_WATTS
#define EXTRUDER_WATTS (2*2/5.9) // P=I^2/R
#define BED_WATTS (5.45*5.45/2.2) // P=I^2/R
#define EXTRUDER_WATTS (2*2/5.9) // P=U^2/R
#define BED_WATTS (5.45*5.45/2.2) // P=U^2/R
//===========================================================================
//============================= PID Settings ================================