G4 S20 vs. G4 P2000
Clash Royale CLAN TAG#URR8PPP
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
New contributor
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
New contributor
1
You really ought to be able to look up gcode reference tables online!
– Carl Witthoft
2 days ago
1
Please edit your question to include the firmware you are using so that people can answer the question for your specific case.
– 0scar
2 days ago
@0scar done :) thank you
– Arthur Mamou-Mani
yesterday
@CarlWitthoft of course I did prior to asking.
– Arthur Mamou-Mani
yesterday
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
New contributor
Given the Marlin Firmware what is the difference between the following lines of code:
G4 S20
and
G4 P2000
g-code
g-code
New contributor
New contributor
edited yesterday
New contributor
asked 2 days ago
Arthur Mamou-Mani
1455
1455
New contributor
New contributor
1
You really ought to be able to look up gcode reference tables online!
– Carl Witthoft
2 days ago
1
Please edit your question to include the firmware you are using so that people can answer the question for your specific case.
– 0scar
2 days ago
@0scar done :) thank you
– Arthur Mamou-Mani
yesterday
@CarlWitthoft of course I did prior to asking.
– Arthur Mamou-Mani
yesterday
add a comment |
1
You really ought to be able to look up gcode reference tables online!
– Carl Witthoft
2 days ago
1
Please edit your question to include the firmware you are using so that people can answer the question for your specific case.
– 0scar
2 days ago
@0scar done :) thank you
– Arthur Mamou-Mani
yesterday
@CarlWitthoft of course I did prior to asking.
– Arthur Mamou-Mani
yesterday
1
1
You really ought to be able to look up gcode reference tables online!
– Carl Witthoft
2 days ago
You really ought to be able to look up gcode reference tables online!
– Carl Witthoft
2 days ago
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
2 days ago
Please edit your question to include the firmware you are using so that people can answer the question for your specific case.
– 0scar
2 days ago
@0scar done :) thank you
– Arthur Mamou-Mani
yesterday
@0scar done :) thank you
– Arthur Mamou-Mani
yesterday
@CarlWitthoft of course I did prior to asking.
– Arthur Mamou-Mani
yesterday
@CarlWitthoft of course I did prior to asking.
– Arthur Mamou-Mani
yesterday
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
2 days ago
I'm curious to know for which firmware(s) this is, could you please add that to your answer.
– 0scar
2 days ago
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 2 days ago
answered 2 days ago
0scar
7,88411139
7,88411139
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
2 days ago
I'm curious to know for which firmware(s) this is, could you please add that to your answer.
– 0scar
2 days ago
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
2 days ago
I'm curious to know for which firmware(s) this is, could you please add that to your answer.
– 0scar
2 days ago
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 2 days ago
answered 2 days ago
Pᴀᴜʟsᴛᴇʀ2
7442222
7442222
See Oscar's answer -- yours is applicable only to certain firmwares.
– Carl Witthoft
2 days ago
I'm curious to know for which firmware(s) this is, could you please add that to your answer.
– 0scar
2 days ago
add a comment |
See Oscar's answer -- yours is applicable only to certain firmwares.
– Carl Witthoft
2 days ago
I'm curious to know for which firmware(s) this is, could you please add that to your answer.
– 0scar
2 days ago
See Oscar's answer -- yours is applicable only to certain firmwares.
– Carl Witthoft
2 days ago
See Oscar's answer -- yours is applicable only to certain firmwares.
– Carl Witthoft
2 days ago
I'm curious to know for which firmware(s) this is, could you please add that to your answer.
– 0scar
2 days ago
I'm curious to know for which firmware(s) this is, could you please add that to your answer.
– 0scar
2 days ago
add a comment |
Arthur Mamou-Mani is a new contributor. Be nice, and check out our Code of Conduct.
Arthur Mamou-Mani is a new contributor. Be nice, and check out our Code of Conduct.
Arthur Mamou-Mani is a new contributor. Be nice, and check out our Code of Conduct.
Arthur Mamou-Mani is a new contributor. Be nice, and check out our Code of Conduct.
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
2 days ago
1
Please edit your question to include the firmware you are using so that people can answer the question for your specific case.
– 0scar
2 days ago
@0scar done :) thank you
– Arthur Mamou-Mani
yesterday
@CarlWitthoft of course I did prior to asking.
– Arthur Mamou-Mani
yesterday