Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. Blacksheep99
    3. Posts
    • Profile
    • Following 0
    • Followers 1
    • Topics 26
    • Posts 297
    • Best 23
    • Controversial 0
    • Groups 0

    Posts made by Blacksheep99

    • RE: Duet overhaul of Builder Extreme 2000 3D Printer

      @900turbo Interested if you completed this? We have a Extreme 2000 Pro and a Duet conversion would be something I'm considering. I'd like to replace the extruder and add some modern quality of life functions. Thanks.

      posted in General Discussion
      Blacksheep99undefined
      Blacksheep99
    • RE: Hello

      @droftarts @ddtunder

      Here is the original slicing software https://drive.google.com/file/d/1f1yuOidiOxlcGvqfJhKm9rftpKGLOB2k/view?usp=drive_link

      It's old and clunky. You can use a slicer like Cura or Prusasclier with the printer with a little bit of work. If you want to update the printer then as @droftarts says look at one of the current duet boards.

      If I can help let me know, I'll try asisst.

      posted in General Discussion
      Blacksheep99undefined
      Blacksheep99
    • RE: ST3Di Modelsmart 280 - Duet Maestro repair/upgrade

      @robinzulu I have the old slicer on my google drive.

      https://drive.google.com/file/d/1f1yuOidiOxlcGvqfJhKm9rftpKGLOB2k/view?usp=share_link

      You can create a profile in something like Prusaslicer and use this with the ST3Di as well. Just takes a bit of work.

      posted in My Duet controlled machine
      Blacksheep99undefined
      Blacksheep99
    • RE: ST3Di Modelsmart 280 - Duet Maestro repair/upgrade

      @Hpnonthuis I swapped out the control board for a Duet so it runs RRF. The original board was locked so it wasn't possible to upgrade the FW.

      posted in My Duet controlled machine
      Blacksheep99undefined
      Blacksheep99
    • RE: Flashing firmware on Mac OS X

      @droftarts No, I found that setting. Now I think about it though I had already downloaded the file so changing it afterwards makes no sense. I needed to download the file again..... Sometimes looking at things with fresh eyes help! thanks

      posted in Firmware installation
      Blacksheep99undefined
      Blacksheep99
    • RE: Flashing firmware on Mac OS X

      @jay_s_uk Sorry, I kinda did a thread hijack. I was trying to update via DWC. I was on a 3.4.1rc and wanted to update to 3.4.2

      It was just incredibly frustrating yesterday trying to get it to work.

      posted in Firmware installation
      Blacksheep99undefined
      Blacksheep99
    • RE: Flashing firmware on Mac OS X

      I tried updating my Duet yesterday using my Mac but couldn't simply because when I tried to upload the firmware instead of uploading the zip it automatically extracts it and shows the file contents. I couldn't figure out how to resolve it.

      In the end I had to use my work laptop (Windows). Would love to know how to use the Mac for this.

      posted in Firmware installation
      Blacksheep99undefined
      Blacksheep99
    • RE: First ever recording of Duet3d 'magic smoke'.

      @zapta Is he buying the boards himself or are they provided FOC. The pain isn't the same when someone gives you these things.

      posted in General Discussion
      Blacksheep99undefined
      Blacksheep99
    • RE: Bambu Lab Printer (for discussion, not promotion)

      @martin7404 said in Bambu Lab Printer (for discussion, not promotion):

      I Got one .
      It is fast.
      Also very close to experince like geting HP laser jet and runing it. Espesialy with PLA.
      This thing will take away the good sleep of Prusa, ultimaker, Raise 3d etc

      I got mine last week, Have to agree. Only going to get better as well.

      posted in 3D Printing General Chat
      Blacksheep99undefined
      Blacksheep99
    • RE: ST3Di Modelsmart 280 - Duet Maestro repair/upgrade

      @asdfasdf426

      These are my old 280 files. Maybe a better starting point.

      https://drive.google.com/file/d/1K6EtdznTIZRGNCmrj5GTYIlvQVWrrL8o/view?usp=sharing

      These were my notes to myself.

      60b8c470-aaba-4933-b793-7477dd894dcd-image.png ST3Di Modelsmart 280

      Printer Profile

      Explains how to setup a new printer profile, also where to save/edit the files.
      https://github.com/Ultimaker/Cura/wiki/Definition-Files-Explained

      Created by GH (15/5/19)

      Updated version (20/05/2019) NOTE: May need to switch the left and right extruders in the definitions to match Cura. Currently Material 1 prints on the right extruder, I think logically you'd want it on the left and Material 2 on the right?

      If you want a representation of the build plate (helps with positioning). Then save this to the meshes folder

      Material I created (PLA)

      In addition I wanted to find a way to have Cura save out the gcode files with the ebp extension. Using this link I was able to find a way….

      https://github.com/Ultimaker/Cura/issues/1059

      Save the file below to this location.
      C:\Program Files\Ultimaker Cura 4.0\plugins\GCodeWriter

      Copyright (c) 2015 Ultimaker B.V.

      Cura is released under the terms of the LGPLv3 or higher.

      from . import GCodeWriter

      from UM.i18n import i18nCatalog
      catalog = i18nCatalog("cura")

      def getMetaData():
      return {

          "mesh_writer": {
              "output": [{
                  "extension": "ebp",
                  "description": catalog.i18nc("@item:inlistbox", "G-code File"),
                  "mime_type": "text/x-gcode",
                  "mode": GCodeWriter.GCodeWriter.OutputMode.TextMode
              }]
          }
      }
      

      def register(app):
      return { "mesh_writer": GCodeWriter.GCodeWriter() }

      The next thing I'd like to figure out is how to edit or stop Cura adding text to the start of the output file. This needed to be deleted before you can print.

      Example: Yellow text need deleting or a way of having the ebp@280 line first (I think the printer FW looks for this to authenticate the file is suitable for the printer).
      ;FLAVOR:Marlin
      ;TIME:5405
      ;Filament used: 5.85157m, 0m
      ;Layer height: 0.2
      ;Generated with Cura_SteamEngine 4.0.0
      T0
      M82 ;absolute extrusion mode
      ebp@280
      pla@1
      pla@1
      null@0
      version@1_2_36@null@null
      T0
      M190 S40.0
      M104 TO S210.0
      G21
      G90
      M107
      T0
      G28
      G29
      M109 TO S210.0
      M107
      T0

      themaninthesuitcase created this issue in Ultimaker/Cura

      closed Add .g to allowed gcode file extensions #1059

      posted in My Duet controlled machine
      Blacksheep99undefined
      Blacksheep99
    • RE: ST3Di Modelsmart 280 - Duet Maestro repair/upgrade

      @asdfasdf426 said in ST3Di Modelsmart 280 - Duet Maestro repair/upgrade:

      @blacksheep99 Hi I think I may be having a small problem when I load gcode (from cura) onto a Micro SD card and put it in the printer the printer says no models found. To set up cura I just copied and pasted the start and gcode from your ST3Di_Modelsmart_200.def.json.zip file. Was this the right way to that or have I done it wrong. Or do you know if this may be another Issue.
      Additionally, do you know what I should put for the X and Y offsets for the nozzles because I don't really know what they are and how to find them out. (I just measured the distance between the nozzles with a vernier callipers and but that as the X offset Which I'm sure is not the right way, Do you possibly know how to do it and/or have the offsets?) Thanks for all your help so far.

      Hi, I'm struggling to remember if I'm honest. I'll check for old configs for the 280 as the ones in the zip are for the 200 (principle is the same). Did you save those files to the folders as per the guide?

      For the 280 I think you need 2 extruder files and they should be referenced in the definition file.

      I don't recall needing to change the offset of the two extruders as I think they FW controls it. You may be able to use Cura to tweak it though if they are slightly out.

      posted in My Duet controlled machine
      Blacksheep99undefined
      Blacksheep99
    • RE: ST3Di Modelsmart 280 - Duet Maestro repair/upgrade

      @asdfasdf426

      Link to a zip with the config files in

      https://drive.google.com/file/d/1JSyTzxHwKSFLeYJ-qqXJ88_kIwULIfp4/view?usp=sharing

      let me know if this works.

      posted in My Duet controlled machine
      Blacksheep99undefined
      Blacksheep99
    • RE: ST3Di Modelsmart 280 - Duet Maestro repair/upgrade

      @asdfasdf426 Hi, send me a DM with your email. I'll send you the word doc. I hoped you could right click the links here and save as?

      posted in My Duet controlled machine
      Blacksheep99undefined
      Blacksheep99
    • RE: ST3Di Modelsmart 280 - Duet Maestro repair/upgrade

      @danwilliams94

      Hopefully this word doc has the config files in. The principles should still be true.

      https://docs.google.com/document/d/1T86iTxZwGsj3nLFBjzRinjlMTsEoz19Z/edit?usp=sharing&ouid=116402951384827293733&rtpof=true&sd=true

      I'd move to Cura or Prusaslicer rather than use the old ST3DI slicer if you can.

      The pla@**** is what is telling the printer how much filament you have used from their spools.

      posted in My Duet controlled machine
      Blacksheep99undefined
      Blacksheep99
    • RE: ST3Di Modelsmart 280 - Duet Maestro repair/upgrade

      @danwilliams94 I just used to leave on of the spools on and then feed in any of the other filaments I wanted to use. That was before I swapped out to the Duet

      posted in My Duet controlled machine
      Blacksheep99undefined
      Blacksheep99
    • RE: ST3Di Modelsmart 280 - Duet Maestro repair/upgrade

      @danwilliams94

      Hopefully works

      https://drive.google.com/file/d/1f1yuOidiOxlcGvqfJhKm9rftpKGLOB2k/view?usp=drivesdk

      posted in My Duet controlled machine
      Blacksheep99undefined
      Blacksheep99
    • RE: ST3Di Modelsmart 280 - Duet Maestro repair/upgrade

      @danwilliams94 I have a copy. Link incoming

      posted in My Duet controlled machine
      Blacksheep99undefined
      Blacksheep99
    • RE: ST3Di Modelsmart 280 - Duet Maestro repair/upgrade

      @danwilliams94 See if this works

      https://docs.google.com/document/d/1xLjEwIyu_P7TE6h6DIhYH68IQRL0Qa_p/edit?usp=sharing&ouid=116402951384827293733&rtpof=true&sd=true

      posted in My Duet controlled machine
      Blacksheep99undefined
      Blacksheep99
    • RE: ST3Di Modelsmart 280 - Duet Maestro repair/upgrade

      @danwilliams94 I have a guide somewhere. I'll dig it out and put a link here

      posted in My Duet controlled machine
      Blacksheep99undefined
      Blacksheep99