Skip to content
Snippets Groups Projects
Configuration.h 50.9 KiB
Newer Older
  • Learn to ignore specific revisions
  • /**
     * Encoder Direction Options
     *
     * Test your encoder's behavior first with both options disabled.
     *
     *  Reversed Value Edit and Menu Nav? Enable REVERSE_ENCODER_DIRECTION.
     *  Reversed Menu Navigation only?    Enable REVERSE_MENU_DIRECTION.
     *  Reversed Value Editing only?      Enable BOTH options.
     */
    
    
    //
    // This option reverses the encoder direction everywhere
    //
    //  Set this option if CLOCKWISE causes values to DECREASE
    //
    //#define REVERSE_ENCODER_DIRECTION
    
    
    João Brázio's avatar
    João Brázio committed
    // This option reverses the encoder direction for navigating LCD menus.
    
    //
    //  If CLOCKWISE normally moves DOWN this makes it go UP.
    //  If CLOCKWISE normally moves UP this makes it go DOWN.
    
    //
    //#define REVERSE_MENU_DIRECTION
    
    //
    // Individual Axis Homing
    //
    // Add individual axis homing items (Home X, Home Y, and Home Z) to the LCD menu.
    //
    //#define INDIVIDUAL_AXIS_HOMING_MENU
    
    
    João Brázio's avatar
    João Brázio committed
    // SPEAKER/BUZZER
    
    João Brázio's avatar
    João Brázio committed
    // If you have a speaker that can produce tones, enable it here.
    // By default Marlin assumes you have a buzzer with a fixed frequency.
    
    João Brázio's avatar
    João Brázio committed
    // The duration and frequency for the UI feedback sound.
    // Set these to 0 to disable audio feedback in the LCD menus.
    
    João Brázio's avatar
    João Brázio committed
    // Note: Test audio output with the G-Code:
    
    //  M300 S<frequency Hz> P<duration ms>
    //
    //#define LCD_FEEDBACK_FREQUENCY_DURATION_MS 100
    //#define LCD_FEEDBACK_FREQUENCY_HZ 1000
    
    //
    // CONTROLLER TYPE: Standard
    //
    
    João Brázio's avatar
    João Brázio committed
    // Marlin supports a wide variety of controllers.
    // Enable one of the following options to specify your controller.
    
    João Brázio's avatar
    João Brázio committed
    // ULTIMAKER Controller.
    
    //
    //#define ULTIMAKERCONTROLLER
    
    João Brázio's avatar
    João Brázio committed
    // ULTIPANEL as seen on Thingiverse.
    
    // Cartesio UI
    // http://mauk.cc/webshop/cartesio-shop/electronics/user-interface
    
    //#define CARTESIO_UI
    
    
    João Brázio's avatar
    João Brázio committed
    // PanelOne from T3P3 (via RAMPS 1.4 AUX2/AUX3)
    // http://reprap.org/wiki/PanelOne
    
    João Brázio's avatar
    João Brázio committed
    // MaKr3d Makr-Panel with graphic controller and SD support.
    // http://reprap.org/wiki/MaKr3d_MaKrPanel
    
    João Brázio's avatar
    João Brázio committed
    // Activate one of these if you have a Panucatt Devices
    // Viki 2.0 or mini Viki with Graphic LCD
    // http://panucatt.com
    
    Natealus's avatar
    Natealus committed
    //#define VIKI2
    //#define miniVIKI
    
    
    João Brázio's avatar
    João Brázio committed
    // Adafruit ST7565 Full Graphic Controller.
    
    // https://github.com/eboston/Adafruit-ST7565-Full-Graphic-Controller/
    //
    
    Ed Boston's avatar
    Ed Boston committed
    //#define ELB_FULL_GRAPHIC_CONTROLLER
    
    João Brázio's avatar
    João Brázio committed
    // RepRapDiscount Smart Controller.
    
    // http://reprap.org/wiki/RepRapDiscount_Smart_Controller
    
    João Brázio's avatar
    João Brázio committed
    // Note: Usually sold with a white PCB.
    
    //#define REPRAP_DISCOUNT_SMART_CONTROLLER
    
    João Brázio's avatar
    João Brázio committed
    // GADGETS3D G3D LCD/SD Controller
    
    Nicolas Rossi's avatar
    Nicolas Rossi committed
    // http://reprap.org/wiki/RAMPS_1.3/1.4_GADGETS3D_Shield_with_Panel
    
    João Brázio's avatar
    João Brázio committed
    // Note: Usually sold with a blue PCB.
    
    daid303's avatar
    daid303 committed
    //#define G3D_PANEL
    
    João Brázio's avatar
    João Brázio committed
    // RepRapDiscount FULL GRAPHIC Smart Controller
    
    // http://reprap.org/wiki/RepRapDiscount_Full_Graphic_Smart_Controller
    //
    
    //#define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
    
    João Brázio's avatar
    João Brázio committed
    // MakerLab Mini Panel with graphic
    
    // controller and SD support - http://reprap.org/wiki/Mini_panel
    
    João Brázio's avatar
    João Brázio committed
    // RepRapWorld REPRAPWORLD_KEYPAD v1.1
    
    // http://reprapworld.com/?products_details&products_id=202&cPath=1591_1626
    
    //
    // 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 bed 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
    
    // Delay (in microseconds) before the next move will start, to give the servo time to reach its target angle.
    // 300ms is a good value but you can try less delay.
    // If the servo can't reach the requested position, increase it.
    #define SERVO_DELAY 300
    
    
    // Servo deactivation
    //
    // With this option servos are powered only during movement, then turned off to prevent jitter.
    //#define DEACTIVATE_SERVOS_AFTER_MOVE
    
    
    /**********************************************************************\
     * 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