Fix: set digipot mcp4018 Vrefmax to 1.666V

This commit is contained in:
Paweł Stawicki
2017-06-15 16:45:44 +02:00
committed by Scott Lahteine
parent ebe6719e12
commit 1e47c17b46
3 changed files with 118 additions and 14 deletions

View File

@ -58,8 +58,8 @@
//===========================================================================
//============================= DELTA Printer ===============================
//===========================================================================
// For Delta printers start with one of the configuration files in the
// example_configurations/delta directory and customize for your machine.
// For a Delta printer replace the configuration files with the files in the
// example_configurations/delta directory.
//
//===========================================================================
@ -311,13 +311,13 @@
// is more than PID_FUNCTIONAL_RANGE then the PID will be shut off and the heater will be set to min/max.
#define K1 0.95 //smoothing factor within the PID
// If you are using a pre-configured hotend then you can use one of the value sets by uncommenting it
//WT150, based on: M303 E0 S220 C8
#define DEFAULT_Kp 22.10
#define DEFAULT_Ki 1.10
#define DEFAULT_Kd 110.78
// If you are using a pre-configured hotend then you can use one of the value sets by uncommenting it
// Ultimaker
//#define DEFAULT_Kp 22.2
//#define DEFAULT_Ki 1.08
@ -534,6 +534,7 @@
#define DEFAULT_ZJERK 0.4
#define DEFAULT_EJERK 5.0
//===========================================================================
//============================= Z Probe Options =============================
//===========================================================================
@ -575,7 +576,7 @@
* Probe Type
*
* Allen Key Probes, Servo Probes, Z-Sled Probes, FIX_MOUNTED_PROBE, etc.
* Activate one of these to use Auto Bed Leveling below.
* You must activate one of these to use Auto Bed Leveling below.
*/
/**
@ -1492,7 +1493,23 @@
//define PCA9632 PWM LED driver Support
//#define PCA9632
// Support for an RGB LED using 3 separate pins with optional PWM
/**
* RGB LED / LED Strip Control
*
* Enable support for an RGB LED connected to 5V digital pins, or
* an RGB Strip connected to MOSFETs controlled by digital pins.
*
* Adds the M150 command to set the LED (or LED strip) color.
* If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
* luminance values can be set from 0 to 255.
*
* *** CAUTION ***
* LED Strips require a MOFSET Chip between PWM lines and LEDs,
* as the Arduino cannot handle the current the LEDs will require.
* Failure to follow this precaution can destroy your Arduino!
* *** CAUTION ***
*
*/
//#define RGB_LED
//#define RGBW_LED
#if ENABLED(RGB_LED) || ENABLED(RGBW_LED)