Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. // Number of servos
  2. //
  3. // If you select a configuration below, this will receive a default value and does not need to be set manually
  4. // set it manually if you have more servos than extruders and wish to manually control some
  5. // leaving it undefined or defining as 0 will disable the servo subsystem
  6. // If unsure, leave commented / disabled
  7. //
  8. #define NUM_SERVOS 3 // COS Servo index starts with 0 for M280 command
  9.  
  10. // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle.
  11. // 300ms is a good value but you can try less delay.
  12. // If the servo can't reach the requested position, increase it.
  13. #define SERVO_DELAY { 400, 400, 400 } // COS
  14.  
  15. // Servo deactivation
  16. //
  17. // With this option servos are powered only during movement, then turned off to prevent jitter.
  18. //#define DEACTIVATE_SERVOS_AFTER_MOVE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement