1. Got a question or need help troubleshooting? Post to the troubleshooting forum or Search the forums!

R1+ LCD controller config.

Discussion in 'General Questions' started by Wesley Knapp, Feb 18, 2019.

  1. Wesley Knapp

    Wesley Knapp Active Member

    Joined:
    Jan 19, 2019
    Messages:
    111
    Likes Received:
    42
    Questions
    #1: How can I remove the 2 extra extruders from the display?

    #2 how can I remove or correct the "endstop hit: Z". I assume this is showing Z due to ABL



    Sent from my Pixel XL using Tapatalk
     
  2. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,912
    Likes Received:
    7,338
    Any editing for the menus on the LCD or behavior of the LCD (like endstops hit) all require customizing the firmware.
    Marlin has the definitions for everything the LCD does.

    I haven't looked into the endstop message, but that seems to be done in
    stepper.cpp

    with:

    SERIAL_ECHOPGM(MSG_ENDSTOPS_HIT);

    but it is nothing more than an informational message so not sure why it matters (but your call)

    The extra extruders are likely done in one of the following:

    DOGMbitmaps.h
    dogm_lcd_implementation.h
    dogm_font_data_marlin.h
    ultralcd.cpp (or one of the ultralcd* header files -- there are I think 4)

    Good luck

    You might try pinging the Marlin folks they would be better able to answer some of that.
     
    Wesley Knapp likes this.
  3. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,912
    Likes Received:
    7,338
    This may help:

     
    Wesley Knapp likes this.
  4. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,912
    Likes Received:
    7,338
    Definitely stepper.cpp :

    00187: SERIAL_ECHOPAIR(" Z:",(float)endstops_trigsteps[Z_AXIS]/axis_steps_per_unit[Z_AXIS]);
    00188: LCD_MESSAGEPGM(MSG_ENDSTOPS_HIT "Z");

    So line 188 for that message
     
    Wesley Knapp likes this.
  5. Wesley Knapp

    Wesley Knapp Active Member

    Joined:
    Jan 19, 2019
    Messages:
    111
    Likes Received:
    42
    That video was perfect. I now have a totally new and relevent screen. Thanks!

    Sent via PixelXL3 using Tapatalk.
     
    mark tomlinson likes this.

Share This Page