Skip to content
Snippets Groups Projects
Configuration.h 46.9 KiB
Newer Older
  • Learn to ignore specific revisions
  • //
    // REPRAPWORLD_KEYPAD_MOVE_STEP sets how much should the robot move when a key
    // is pressed, a value of 10.0 means 10mm per click.
    //
    
    //#define REPRAPWORLD_KEYPAD
    
    //#define REPRAPWORLD_KEYPAD_MOVE_STEP 10.0
    
    //
    // RigidBot Panel V1.0
    // http://www.inventapart.com/
    //
    //#define RIGIDBOT_PANEL
    
    //
    // BQ LCD Smart Controller shipped by
    // default with the BQ Hephestos 2 and Witbox 2.
    //
    //#define BQ_LCD_SMART_CONTROLLER
    
    
    //
    // CONTROLLER TYPE: I2C
    //
    // Note: These controllers require the installation of Arduino's LiquidCrystal_I2C
    // library. For more info: https://github.com/kiyoshigawa/LiquidCrystal_I2C
    //
    
    João Brázio's avatar
    João Brázio committed
    // Elefu RA Board Control Panel
    
    // http://www.elefu.com/index.php?route=product/product&product_id=53
    
    
    //
    // Sainsmart YW Robot (LCM1602) LCD Display
    //
    
    //#define LCD_I2C_SAINSMART_YWROBOT
    
    // Generic LCM1602 LCD adapter
    
    João Brázio's avatar
    João Brázio committed
    // PANELOLU2 LCD with status LEDs,
    
    // separate encoder and click inputs.
    //
    // Note: This controller requires Arduino's LiquidTWI2 library v1.2.3 or later.
    // For more info: https://github.com/lincomatic/LiquidTWI2
    //
    // Note: The PANELOLU2 encoder click input can either be directly connected to
    // a pin (if BTN_ENC defined to != -1) or read through I2C (when BTN_ENC == -1).
    //
    
    //#define LCD_I2C_PANELOLU2
    
    João Brázio's avatar
    João Brázio committed
    // Panucatt VIKI LCD with status LEDs,
    
    // integrated click & L/R/U/D buttons, separate encoder inputs.
    //
    
    //#define LCD_I2C_VIKI
    
    João Brázio's avatar
    João Brázio committed
    // SSD1306 OLED full graphics generic display
    
    //#define U8GLIB_SSD1306
    
    // SAV OLEd LCD module support using either SSD1306 or SH1106 based LCD modules
    //#define SAV_3DGLCD
    #if ENABLED(SAV_3DGLCD)
      //#define U8GLIB_SSD1306
      #define U8GLIB_SH1106
    #endif
    
    
    //
    // CONTROLLER TYPE: Shift register panels
    //
    // 2 wire Non-latching LCD SR from https://goo.gl/aJJ4sH
    
    // LCD configuration: http://reprap.org/wiki/SAV_3D_LCD
    
    //#define SAV_3DLCD
    
    //=============================================================================
    //=============================== Extra Features ==============================
    //=============================================================================
    
    
    // Increase the FAN PWM frequency. Removes the PWM noise but increases heating in the FET/Arduino
    
    // Use software PWM to drive the fan, as for the heaters. This uses a very low frequency
    
    // which is not as annoying as with the hardware PWM. On the other hand, if this frequency
    
    // is too low, you should also increment SOFT_PWM_SCALE.
    //#define FAN_SOFT_PWM
    
    // Incrementing this by 1 will double the software PWM frequency,
    // affecting heaters, and the fan if FAN_SOFT_PWM is enabled.
    // However, control resolution will be halved for each increment;
    // at zero value, there are 128 effective control positions.
    #define SOFT_PWM_SCALE 0
    
    
    // Temperature status LEDs that display the hotend and bet temperature.
    // If all hotends and bed temperature and temperature setpoint are < 54C then the BLUE led is on.
    // Otherwise the RED led is on. There is 1C hysteresis.
    //#define TEMP_STAT_LEDS
    
    
    // M240  Triggers a camera by emulating a Canon RC-1 Remote
    // Data from: http://www.doc-diy.net/photo/rc-1_hacked/
    
    Richard Wackerbarth's avatar
    Richard Wackerbarth committed
    //#define PHOTOGRAPH_PIN     23
    
    // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
    
    //#define SF_ARC_FIX
    
    
    // Support for the BariCUDA Paste Extruder.
    //#define BARICUDA
    
    
    //define BlinkM/CyzRgb Support
    
    /*********************************************************************\
    * R/C SERVO support
    * Sponsored by TrinityLabs, Reworked by codexmas
    **********************************************************************/
    
    // Number of servos
    //
    // If you select a configuration below, this will receive a default value and does not need to be set manually
    // set it manually if you have more servos than extruders and wish to manually control some
    // leaving it undefined or defining as 0 will disable the servo subsystem
    // If unsure, leave commented / disabled
    //
    
    //#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command
    
    // This allows for servo actuated endstops, primary usage is for the Z Axis to eliminate calibration or bed height changes.
    
    // Use M851 to set the Z probe vertical offset from the nozzle. Store that setting with M500.
    
    AnHardt's avatar
    AnHardt committed
    //#define X_ENDSTOP_SERVO_NR 1
    //#define Y_ENDSTOP_SERVO_NR 2
    //#define Z_ENDSTOP_SERVO_NR 0
    
    //#define SERVO_ENDSTOP_ANGLES {{0,0}, {0,0}, {70,0}} // X,Y,Z Axis Extend and Retract angles
    
    // Servo deactivation
    //
    // With this option servos are powered only during movement, then turned off to prevent jitter.
    //#define DEACTIVATE_SERVOS_AFTER_MOVE
    
    
    #if ENABLED(DEACTIVATE_SERVOS_AFTER_MOVE)
    
      // Delay (in microseconds) before turning the servo off. This depends on the servo speed.
      // 300ms is a good value but you can try less delay.
      // If the servo can't reach the requested position, increase it.
      #define SERVO_DEACTIVATION_DELAY 300
    #endif
    
    
    /**********************************************************************\
     * Support for a filament diameter sensor
     * Also allows adjustment of diameter at print time (vs  at slicing)
     * Single extruder only at this point (extruder 0)
    
     * 34 - RAMPS1.4 - uses Analog input 5 on the AUX2 connector
    
     * 81 - Printrboard - Uses Analog input 2 on the Exp1 connector (version B,C,D,E)
    
     * 301 - Rambo  - uses Analog input 3
     * Note may require analog pins to be defined for different motherboards
     **********************************************************************/
    
    // Uncomment below to enable
    
    //#define FILAMENT_WIDTH_SENSOR
    
    #define DEFAULT_NOMINAL_FILAMENT_DIA 3.00  //Enter the diameter (in mm) of the filament generally used (3.0 mm or 1.75 mm) - this is then used in the slicer software.  Used for sensor reading validation
    
    #if ENABLED(FILAMENT_WIDTH_SENSOR)
    
      #define FILAMENT_SENSOR_EXTRUDER_NUM 0   //The number of the extruder that has the filament sensor (0,1,2)
      #define MEASUREMENT_DELAY_CM        14   //measurement delay in cm.  This is the distance from filament sensor to middle of barrel
    
      #define MEASURED_UPPER_LIMIT         3.30  //upper limit factor used for sensor reading validation in mm
      #define MEASURED_LOWER_LIMIT         1.90  //lower limit factor for sensor reading validation in mm
      #define MAX_MEASUREMENT_DELAY       20     //delay buffer size in bytes (1 byte = 1cm)- limits maximum measurement delay allowable (must be larger than MEASUREMENT_DELAY_CM  and lower number saves RAM)
    
      #define DEFAULT_MEASURED_FILAMENT_DIA  DEFAULT_NOMINAL_FILAMENT_DIA  //set measured to nominal initially
    
      //When using an LCD, uncomment the line below to display the Filament sensor data on the last line instead of status.  Status will appear for 5 sec.
      //#define FILAMENT_LCD_DISPLAY
    #endif
    
    #include "Configuration_adv.h"
    
    daid's avatar
    daid committed
    #include "thermistortables.h"
    
    #endif //CONFIGURATION_H