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

Lead Screw Upgrade Kit

Discussion in 'Mods and Upgrades' started by Harry, Jul 14, 2015.

  1. Harry

    Harry Team ROBO 3D
    Staff Member

    Joined:
    Feb 13, 2013
    Messages:
    807
    Likes Received:
    180
    Hello All!
    Unfortunately we had an overwhelming amount of pre-order's for the Lead Screw Upgrade kit. We have now opened up the product page for "Pre-Orders". All kits will ship starting August 25th when our shipment of kits is expected to arrive. The price of the kit is $100 and that includes two stepper motors with lead screws built in, and the new Z axis end stop brackets. Here is a picture of what is included:
    Lead Screw-1.jpg

    Here is a URL to the PRE-ORDER page: http://www.robo3d.com/products/lead-screw-upgrade-kit
    Please remember, these WILL NOT START SHIPPING till August 25TH. Let me know if you have any questions or concerns.
    Regards,
    Harry
     
    #1 Harry, Jul 14, 2015
    Last edited: Aug 12, 2015
  2. Shigemal

    Shigemal Member

    Joined:
    Aug 19, 2013
    Messages:
    126
    Likes Received:
    13
    What is the delta from current or Kickstarter version ?
     
  3. robert sanchez

    robert sanchez Active Member

    Joined:
    Oct 9, 2014
    Messages:
    320
    Likes Received:
    160
    @Harry any possibility of getting installation pictures and do we need to change firmware?

    Thanks
     
    Phenom3030 likes this.
  4. robert sanchez

    robert sanchez Active Member

    Joined:
    Oct 9, 2014
    Messages:
    320
    Likes Received:
    160
    @Harry actualy what code needs to be changed is more important. The install looks straight forward. Thanks.
     
  5. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,912
    Likes Received:
    7,338
    For the beta printer it is a firmware upgrade (screw thread size is different).
    Might not need firmware changes for the R1. The real difference with the R1 is the lack of the couplers (which will help reduce ribbing). Unless they are changing the threads on the rods the firmware is probably OK for the current R1.
     
    Phenom3030 likes this.
  6. robert sanchez

    robert sanchez Active Member

    Joined:
    Oct 9, 2014
    Messages:
    320
    Likes Received:
    160
    Mmmm. I have an R1. The new kit looks pretty sweet. Just wish they were 1" longer to clamp a support to without limiting z travel.
     
  7. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,912
    Likes Received:
    7,338
    I have printed objects 10 inches tall without issues (albeit slowly at the top). I use a beta, no top supports.
    I am not saying they are NOT helpful, but they don't seem too bad without them.
     
  8. Phenom3030

    Phenom3030 Member

    Joined:
    Apr 4, 2015
    Messages:
    45
    Likes Received:
    5
    Ordered a kit myself. Hopefully the install is just remove and replace. :)
     
  9. Taylor

    Taylor Member

    Joined:
    Mar 10, 2014
    Messages:
    109
    Likes Received:
    13
    #9 Taylor, Jul 18, 2015
    Last edited by a moderator: Jul 28, 2015
    Harry likes this.
  10. WheresWaldo

    WheresWaldo Volunteer ( ͠° ͟ʖ ͡°)
    Staff Member

    Joined:
    Feb 18, 2015
    Messages:
    5,905
    Likes Received:
    3,593
    Just an FYI, it is different than the R1, the number of Z Steps is only 800 in the firmware as opposed to 2560 for the 8 mm threaded rods. As far as I could tell from a cursory examination that is the only change from the R1 firmware, which is still Marlin 1.0.0. I am not going to investigate this any further since I almost have 1.0.3 completely debugged for the Robo R1
     
  11. robert sanchez

    robert sanchez Active Member

    Joined:
    Oct 9, 2014
    Messages:
    320
    Likes Received:
    160
    @WheresWaldo
    Thanks for doing the checking. Which file had the change?
     
  12. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,912
    Likes Received:
    7,338
    800 sounds... not right, but hopefully it is.
    Since it is all new (stepper too) anything is likely/possible.
     
    #12 mark tomlinson, Jul 18, 2015
    Last edited: Jul 18, 2015
  13. WheresWaldo

    WheresWaldo Volunteer ( ͠° ͟ʖ ͡°)
    Staff Member

    Joined:
    Feb 18, 2015
    Messages:
    5,905
    Likes Received:
    3,593
    Configuration.h, as usual. Line 445. Also if you install this do an extruder calibration. They still have the 723.38 number for E-Steps, I think the real number is between 780-810 or so.
     
  14. WheresWaldo

    WheresWaldo Volunteer ( ͠° ͟ʖ ͡°)
    Staff Member

    Joined:
    Feb 18, 2015
    Messages:
    5,905
    Likes Received:
    3,593
    I lied, here is every line that is different between the leadscrew firmware and the latest R1 firmware:
    Code:
    LS - #define CUSTOM_MENDEL_NAME "ROBOR1PLUSV1"    //robo
    R1 - #define CUSTOM_MENDEL_NAME "ROBO3DR1V3"    //robo
    
    LS - #define RIGHT_PROBE_BED_POSITION 205
         #define BACK_PROBE_BED_POSITION 230
    R1 - #define RIGHT_PROBE_BED_POSITION 200
         #define BACK_PROBE_BED_POSITION 240
    
    LS - #define DEFAULT_AXIS_STEPS_PER_UNIT   {80,80,800,723.38}  // default steps per unit for RoBo 3D R1
    R1 - #define DEFAULT_AXIS_STEPS_PER_UNIT   {80,80,2560,723.38}  // default steps per unit for RoBo 3D R1
    
    LS - define EEPROM_SETTINGS
    R1 - //#define EEPROM_SETTINGS
    
    That is it! At least EEPROM writing is now enabled by default, still didn't change temp PIDS or ESteps. Only line not cosmetic is the DEFAULT_AXIS_STEPS_PER_UNIT.
     
  15. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,912
    Likes Received:
    7,338
  16. frank r

    frank r New Member

    Joined:
    May 23, 2015
    Messages:
    18
    Likes Received:
    4
    I received my upgrade kit today, but only received the steppers, no brackets.
     
  17. Harry

    Harry Team ROBO 3D
    Staff Member

    Joined:
    Feb 13, 2013
    Messages:
    807
    Likes Received:
    180
    Hey Frank, you didn't have those Z switch brackets in your kit?
    They should be in a little bag. If not message me and i"ll get you a pair mailed Monday.

    @mark tomlinson 800 is right actually.
    And yes the guide is linked above thanks to @Taylor

    - H
     
    Taylor likes this.
  18. Mike Kelly

    Mike Kelly Volunteer

    Joined:
    Mar 11, 2013
    Messages:
    6,967
    Likes Received:
    2,276
    Are they TR8*2 or TR8*4?
     
  19. Phenom3030

    Phenom3030 Member

    Joined:
    Apr 4, 2015
    Messages:
    45
    Likes Received:
    5
    I'm upgraded my hot end to a E3D v6, with volcano upgrade and calibrated extruder E-steps as it is now(firmware updates completed as described in the v6 upgrade thread). I also did a few of firmware "mods" as described in Novice Experts video on Youtube.
    I'm concerned if I flash this new Robo3D firmware i'll lose or it will throw off my previous firmware updates. Is there anything specific from this FW change that I could just update to my current FW set up?

    (I'm not a software guru and was only able to get so far with my printer with the help of all the great folks in this community!)
     
  20. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,912
    Likes Received:
    7,338
    diff configuration.h from the new one with what you modified and you are probably going to see all of the differences.

    Diff the whole folder and you certainly will. I don't know if they modified this from a newer marlin branch or from the last one they used. (good question though)
     

Share This Page