Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    Tevo Black Widow and Duet WiFi

    Scheduled Pinned Locked Moved
    Duet Hardware and wiring
    3
    3
    631
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Klaus.Waeldeundefined
      Klaus.Waelde
      last edited by

      Hello everybody,
      Has anyone of you a basic setup for a stock black widow run on a duet wifi board. The y-axis works now but I cant replicate it to the x- and the z-axis. I'm looking for good start values for

      Set maximum instantaneous speed changes (mm/min)
      Set maximum speeds (mm/min)
      Set accelerations (mm/s^2)
      Set motor currents (mA) and motor idle factor in per cent

      Any help would be greatly appreciated.

      Thank you very much in advance

      Klaus

      1 Reply Last reply Reply Quote 0
      • Phaedruxundefined
        Phaedrux Moderator
        last edited by

        See what you can find in here: https://forum.duet3d.com/search?term=tevo black widow&in=titlesposts&matchWords=all&sortBy=relevance&sortDirection=&showAs=posts

        Z-Bot CoreXY Build | Thingiverse Profile

        1 Reply Last reply Reply Quote 0
        • Vetiundefined
          Veti
          last edited by Veti

          i would start of with the tevo values for marlin

          https://tevo3dprinterstore.com/pages/black-widow-firmware

          # code block
          #define HOMING_FEEDRATE {50*60, 50*60, 4*60, 0}  // set the homing speeds (mm/min)
          
          // default settings
          
          #define DEFAULT_AXIS_STEPS_PER_UNIT   {160,160,3200,500}  // default steps per unit for Ultimaker
          #define DEFAULT_MAX_FEEDRATE          {300, 300, 5, 25}    // (mm/sec)
          #define DEFAULT_MAX_ACCELERATION      {1000,1000,100,10000}    // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for Skeinforge 40+, for older versions raise them a lot.
          
          #define DEFAULT_ACCELERATION          1000    // X, Y, Z and E acceleration in mm/s^2 for printing moves
          #define DEFAULT_RETRACT_ACCELERATION  3000    // E acceleration in mm/s^2 for retracts
          #define DEFAULT_TRAVEL_ACCELERATION   1000    // X, Y, Z acceleration in mm/s^2 for travel (non printing) moves
          
          // The speed change that does not require acceleration (i.e. the software might assume it can be done instantaneously)
          #define DEFAULT_XYJERK                20.0    // (mm/sec)
          #define DEFAULT_ZJERK                 0.4     // (mm/sec)
          #define DEFAULT_EJERK                 5.0    // (mm/sec)
          
          1 Reply Last reply Reply Quote 0
          • First post
            Last post
          Unless otherwise noted, all forum content is licensed under CC-BY-SA