Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

Note: The code will be checked after each layer

  • If the height altitude of boxes is smaller than 200mm the current layer is below or equal 200 mm the lifting column will not rise

  • If the height altitude of boxes the current layer is smaller or equals 500mm below or equal 500 mm the lifting column will rise 200mm200 mm

  • If the height altitude of boxes the current layer is smaller or equals 500mm above or equal 501 mm the lifting column will rise 200mm400 mm

Code Block
[
{
	"z" : { "condition" : "<=", "value" : 200 },
	"posData" : [0,0,0]
},
{
	"z" : { "condition" : "<=", "value" : 500 },
	"posData" : [0,0,200]
},
{
	"z" : { "condition" : ">=", "value" : 1220501 },
	"posData" : [0,0,400]
},
]
Info

Note: The zones.json file is uploaded together with the pattern file

...