Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added hints to #Troubleshooting section #67

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/advanced/conditional-gcode.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,4 @@ Value expressions can be used in conditional expressions by nesting them: `{if {

* If the parser can't understand your statements, it will output nothing for that block.
* Remember that Custom G-code placeholders (items in `[]`) are resolved before Conditional G-code.
* Some Custom G-code placeholders have a floating point value, and the equality comparison will likely not work on these. For example `{if [layer_z] == 10}` will never return true. It is however possible to work around this, es: `{if [layer_z] > 9.999}{if [layer_z] < 10.001}` or `{if abs([layer_z]-10) < 0.001}`.