G4 S20 vs. G4 P2000
up vote
2
down vote
favorite
Given the Marlin Firmware what is the difference between the following lines of code:
G4 S20
and
G4 P2000
g-code
add a comment |
up vote
2
down vote
favorite
Given the Marlin Firmware what is the difference between the following lines of code:
G4 S20
and
G4 P2000
g-code
1
You really ought to be able to look up gcode reference tables online!
– Carl Witthoft
Nov 16 at 13:11
1
Please edit your question to include the firmware you are using so that people can answer the question for your specific case.
– 0scar
Nov 16 at 13:11
@0scar done :) thank you
– Arthur Mamou-Mani
Nov 17 at 18:01
@CarlWitthoft of course I did prior to asking.
– Arthur Mamou-Mani
Nov 17 at 18:01
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
Given the Marlin Firmware what is the difference between the following lines of code:
G4 S20
and
G4 P2000
g-code
Given the Marlin Firmware what is the difference between the following lines of code:
G4 S20
and
G4 P2000
g-code
g-code
edited Nov 17 at 18:01
asked Nov 16 at 10:26
Arthur Mamou-Mani
1455
1455
1
You really ought to be able to look up gcode reference tables online!
– Carl Witthoft
Nov 16 at 13:11
1
Please edit your question to include the firmware you are using so that people can answer the question for your specific case.
– 0scar
Nov 16 at 13:11
@0scar done :) thank you
– Arthur Mamou-Mani
Nov 17 at 18:01
@CarlWitthoft of course I did prior to asking.
– Arthur Mamou-Mani
Nov 17 at 18:01
add a comment |
1
You really ought to be able to look up gcode reference tables online!
– Carl Witthoft
Nov 16 at 13:11
1
Please edit your question to include the firmware you are using so that people can answer the question for your specific case.
– 0scar
Nov 16 at 13:11
@0scar done :) thank you
– Arthur Mamou-Mani
Nov 17 at 18:01
@CarlWitthoft of course I did prior to asking.
– Arthur Mamou-Mani
Nov 17 at 18:01
1
1
You really ought to be able to look up gcode reference tables online!
– Carl Witthoft
Nov 16 at 13:11
You really ought to be able to look up gcode reference tables online!
– Carl Witthoft
Nov 16 at 13:11
1
1
Please edit your question to include the firmware you are using so that people can answer the question for your specific case.
– 0scar
Nov 16 at 13:11
Please edit your question to include the firmware you are using so that people can answer the question for your specific case.
– 0scar
Nov 16 at 13:11
@0scar done :) thank you
– Arthur Mamou-Mani
Nov 17 at 18:01
@0scar done :) thank you
– Arthur Mamou-Mani
Nov 17 at 18:01
@CarlWitthoft of course I did prior to asking.
– Arthur Mamou-Mani
Nov 17 at 18:01
@CarlWitthoft of course I did prior to asking.
– Arthur Mamou-Mani
Nov 17 at 18:01
add a comment |
2 Answers
2
active
oldest
votes
up vote
6
down vote
accepted
The answer is that it depends on the type of firmware you are using.
Let us look at the documentation of G4
to find that G4
is valid for all the listed firmware types:
Pause the machine for a period of time.
Furthermore it states that:
Parameters
- Pnnn Time to wait, in milliseconds (In Teacup, P0, wait until all previous moves are finished)
- Snnn Time to wait, in seconds (Only on Repetier, Marlin, Smoothieware, and RepRapFirmware 1.16 and later)
It clearly shows that the S
parameter (which defines the pause in seconds) is only supported by a few firmware types. Do note that this documentation may not be up-to-date, so it is best to look into the source code or the users manual of the particular firmware you are using.
E.g. if you are using Marlin Firmware, G4 S20
will pause the machine for 20 seconds while G4 P2000
will pause the machine for 2000 milliseconds which is 2 seconds. This means that a different time is requested, to have 20 seconds waiting time you could use G4 P20000
To answer your question what the actual difference between the 2 commands is:
- it is either 18 seconds of extra waiting time if your firmware supports the
S
parameter, or - a firmware that skips or chokes on the command because it is not supported (that also probably depends on your firmware).
add a comment |
up vote
1
down vote
The code G4
refers to dwell. (From what I'm seeing, it can be written as either G4
or G04
). P
is the length of dwell time, usually in milliseconds. The parameter S
seems to be invalid, because the only inputs are X
(seconds), P
(milliseconds), or U
(undefined). If you have S20
in your code, it is invalid, whereas P2000
will cause all axes to remain unmoving for 2 seconds before moving on.
(Note: Not all machines will accept X
or U
.)
EDIT: This answer is specific to non-specific g-code, taken from this Source, since the OP did not state any specifics about their firmware type or equipment used.
See Oscar's answer -- yours is applicable only to certain firmwares.
– Carl Witthoft
Nov 16 at 13:12
I'm curious to know for which firmware(s) this is, could you please add that to your answer.
– 0scar
Nov 16 at 16:02
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
6
down vote
accepted
The answer is that it depends on the type of firmware you are using.
Let us look at the documentation of G4
to find that G4
is valid for all the listed firmware types:
Pause the machine for a period of time.
Furthermore it states that:
Parameters
- Pnnn Time to wait, in milliseconds (In Teacup, P0, wait until all previous moves are finished)
- Snnn Time to wait, in seconds (Only on Repetier, Marlin, Smoothieware, and RepRapFirmware 1.16 and later)
It clearly shows that the S
parameter (which defines the pause in seconds) is only supported by a few firmware types. Do note that this documentation may not be up-to-date, so it is best to look into the source code or the users manual of the particular firmware you are using.
E.g. if you are using Marlin Firmware, G4 S20
will pause the machine for 20 seconds while G4 P2000
will pause the machine for 2000 milliseconds which is 2 seconds. This means that a different time is requested, to have 20 seconds waiting time you could use G4 P20000
To answer your question what the actual difference between the 2 commands is:
- it is either 18 seconds of extra waiting time if your firmware supports the
S
parameter, or - a firmware that skips or chokes on the command because it is not supported (that also probably depends on your firmware).
add a comment |
up vote
6
down vote
accepted
The answer is that it depends on the type of firmware you are using.
Let us look at the documentation of G4
to find that G4
is valid for all the listed firmware types:
Pause the machine for a period of time.
Furthermore it states that:
Parameters
- Pnnn Time to wait, in milliseconds (In Teacup, P0, wait until all previous moves are finished)
- Snnn Time to wait, in seconds (Only on Repetier, Marlin, Smoothieware, and RepRapFirmware 1.16 and later)
It clearly shows that the S
parameter (which defines the pause in seconds) is only supported by a few firmware types. Do note that this documentation may not be up-to-date, so it is best to look into the source code or the users manual of the particular firmware you are using.
E.g. if you are using Marlin Firmware, G4 S20
will pause the machine for 20 seconds while G4 P2000
will pause the machine for 2000 milliseconds which is 2 seconds. This means that a different time is requested, to have 20 seconds waiting time you could use G4 P20000
To answer your question what the actual difference between the 2 commands is:
- it is either 18 seconds of extra waiting time if your firmware supports the
S
parameter, or - a firmware that skips or chokes on the command because it is not supported (that also probably depends on your firmware).
add a comment |
up vote
6
down vote
accepted
up vote
6
down vote
accepted
The answer is that it depends on the type of firmware you are using.
Let us look at the documentation of G4
to find that G4
is valid for all the listed firmware types:
Pause the machine for a period of time.
Furthermore it states that:
Parameters
- Pnnn Time to wait, in milliseconds (In Teacup, P0, wait until all previous moves are finished)
- Snnn Time to wait, in seconds (Only on Repetier, Marlin, Smoothieware, and RepRapFirmware 1.16 and later)
It clearly shows that the S
parameter (which defines the pause in seconds) is only supported by a few firmware types. Do note that this documentation may not be up-to-date, so it is best to look into the source code or the users manual of the particular firmware you are using.
E.g. if you are using Marlin Firmware, G4 S20
will pause the machine for 20 seconds while G4 P2000
will pause the machine for 2000 milliseconds which is 2 seconds. This means that a different time is requested, to have 20 seconds waiting time you could use G4 P20000
To answer your question what the actual difference between the 2 commands is:
- it is either 18 seconds of extra waiting time if your firmware supports the
S
parameter, or - a firmware that skips or chokes on the command because it is not supported (that also probably depends on your firmware).
The answer is that it depends on the type of firmware you are using.
Let us look at the documentation of G4
to find that G4
is valid for all the listed firmware types:
Pause the machine for a period of time.
Furthermore it states that:
Parameters
- Pnnn Time to wait, in milliseconds (In Teacup, P0, wait until all previous moves are finished)
- Snnn Time to wait, in seconds (Only on Repetier, Marlin, Smoothieware, and RepRapFirmware 1.16 and later)
It clearly shows that the S
parameter (which defines the pause in seconds) is only supported by a few firmware types. Do note that this documentation may not be up-to-date, so it is best to look into the source code or the users manual of the particular firmware you are using.
E.g. if you are using Marlin Firmware, G4 S20
will pause the machine for 20 seconds while G4 P2000
will pause the machine for 2000 milliseconds which is 2 seconds. This means that a different time is requested, to have 20 seconds waiting time you could use G4 P20000
To answer your question what the actual difference between the 2 commands is:
- it is either 18 seconds of extra waiting time if your firmware supports the
S
parameter, or - a firmware that skips or chokes on the command because it is not supported (that also probably depends on your firmware).
edited Nov 16 at 14:35
answered Nov 16 at 13:09
0scar
8,19821139
8,19821139
add a comment |
add a comment |
up vote
1
down vote
The code G4
refers to dwell. (From what I'm seeing, it can be written as either G4
or G04
). P
is the length of dwell time, usually in milliseconds. The parameter S
seems to be invalid, because the only inputs are X
(seconds), P
(milliseconds), or U
(undefined). If you have S20
in your code, it is invalid, whereas P2000
will cause all axes to remain unmoving for 2 seconds before moving on.
(Note: Not all machines will accept X
or U
.)
EDIT: This answer is specific to non-specific g-code, taken from this Source, since the OP did not state any specifics about their firmware type or equipment used.
See Oscar's answer -- yours is applicable only to certain firmwares.
– Carl Witthoft
Nov 16 at 13:12
I'm curious to know for which firmware(s) this is, could you please add that to your answer.
– 0scar
Nov 16 at 16:02
add a comment |
up vote
1
down vote
The code G4
refers to dwell. (From what I'm seeing, it can be written as either G4
or G04
). P
is the length of dwell time, usually in milliseconds. The parameter S
seems to be invalid, because the only inputs are X
(seconds), P
(milliseconds), or U
(undefined). If you have S20
in your code, it is invalid, whereas P2000
will cause all axes to remain unmoving for 2 seconds before moving on.
(Note: Not all machines will accept X
or U
.)
EDIT: This answer is specific to non-specific g-code, taken from this Source, since the OP did not state any specifics about their firmware type or equipment used.
See Oscar's answer -- yours is applicable only to certain firmwares.
– Carl Witthoft
Nov 16 at 13:12
I'm curious to know for which firmware(s) this is, could you please add that to your answer.
– 0scar
Nov 16 at 16:02
add a comment |
up vote
1
down vote
up vote
1
down vote
The code G4
refers to dwell. (From what I'm seeing, it can be written as either G4
or G04
). P
is the length of dwell time, usually in milliseconds. The parameter S
seems to be invalid, because the only inputs are X
(seconds), P
(milliseconds), or U
(undefined). If you have S20
in your code, it is invalid, whereas P2000
will cause all axes to remain unmoving for 2 seconds before moving on.
(Note: Not all machines will accept X
or U
.)
EDIT: This answer is specific to non-specific g-code, taken from this Source, since the OP did not state any specifics about their firmware type or equipment used.
The code G4
refers to dwell. (From what I'm seeing, it can be written as either G4
or G04
). P
is the length of dwell time, usually in milliseconds. The parameter S
seems to be invalid, because the only inputs are X
(seconds), P
(milliseconds), or U
(undefined). If you have S20
in your code, it is invalid, whereas P2000
will cause all axes to remain unmoving for 2 seconds before moving on.
(Note: Not all machines will accept X
or U
.)
EDIT: This answer is specific to non-specific g-code, taken from this Source, since the OP did not state any specifics about their firmware type or equipment used.
edited Nov 16 at 16:19
answered Nov 16 at 10:54
Pᴀᴜʟsᴛᴇʀ2
7462222
7462222
See Oscar's answer -- yours is applicable only to certain firmwares.
– Carl Witthoft
Nov 16 at 13:12
I'm curious to know for which firmware(s) this is, could you please add that to your answer.
– 0scar
Nov 16 at 16:02
add a comment |
See Oscar's answer -- yours is applicable only to certain firmwares.
– Carl Witthoft
Nov 16 at 13:12
I'm curious to know for which firmware(s) this is, could you please add that to your answer.
– 0scar
Nov 16 at 16:02
See Oscar's answer -- yours is applicable only to certain firmwares.
– Carl Witthoft
Nov 16 at 13:12
See Oscar's answer -- yours is applicable only to certain firmwares.
– Carl Witthoft
Nov 16 at 13:12
I'm curious to know for which firmware(s) this is, could you please add that to your answer.
– 0scar
Nov 16 at 16:02
I'm curious to know for which firmware(s) this is, could you please add that to your answer.
– 0scar
Nov 16 at 16:02
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2f3dprinting.stackexchange.com%2fquestions%2f7432%2fg4-s20-vs-g4-p2000%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
You really ought to be able to look up gcode reference tables online!
– Carl Witthoft
Nov 16 at 13:11
1
Please edit your question to include the firmware you are using so that people can answer the question for your specific case.
– 0scar
Nov 16 at 13:11
@0scar done :) thank you
– Arthur Mamou-Mani
Nov 17 at 18:01
@CarlWitthoft of course I did prior to asking.
– Arthur Mamou-Mani
Nov 17 at 18:01