setHomeSpeed()
Description
Set the feed rate when the machine returns to the Home point.
Syntax
machine.setHomeSpeed(feedrate); machine.setHomeSpeed(xFeedrate, yFeedrate, zFeedrate)
Parameters
machine
: Machine
object.
feedrate
: A single parameter, which means that the speed of the machine's x, y, and z axes returning to the Home point is set to feedrate.
xFeedrate, yFeedrate, zFeedrate
: Set the speed of the x, y, and z axes returning to the Home point respectively.
Return
No return value
Example
Set the basic parameters of the machine and move the machine to the Home point.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
|
See also
home()
config_HomePins()
config_PosLimit()
Library Reference
86Duino Reference Materials follow the Creative Commons Attribution-Share Alike License 3.0 License. The code examples in the references have been released into the public domain.