Jump to content

Component: Reprap Mendel 3D Printer (): Difference between revisions

From Flowcode Help
m Text replacement - "class="wikitable" style="width:60%; background-color:#FFFFFF;"" to "class="mtx-class-macrotable wikitable""
m Text replacement - "width="10%" align="center" style="background-color:#D8C9D8;" align="center"" to "width="10%" align="center" class="mtx-class-macrohead""
Line 78: Line 78:
{| class="mtx-class-macrotable wikitable"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''ClearPrevPrint'''
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''ClearPrevPrint'''
|-
|-
Line 92: Line 92:
{| class="mtx-class-macrotable wikitable"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''ControlPrintHead'''
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''ControlPrintHead'''
|-
|-
Line 111: Line 111:
{| class="mtx-class-macrotable wikitable"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''Initialise'''
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''Initialise'''
|-
|-
Line 125: Line 125:
{| class="mtx-class-macrotable wikitable"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''MoveByXYZ'''
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''MoveByXYZ'''
|-
|-
Line 154: Line 154:
{| class="mtx-class-macrotable wikitable"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''MoveByXYZReal'''
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''MoveByXYZReal'''
|-
|-
Line 183: Line 183:
{| class="mtx-class-macrotable wikitable"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''MoveToHome'''
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''MoveToHome'''
|-
|-
Line 197: Line 197:
{| class="mtx-class-macrotable wikitable"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''MoveToXYZ'''
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''MoveToXYZ'''
|-
|-
Line 226: Line 226:
{| class="mtx-class-macrotable wikitable"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''MoveToXYZReal'''
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''MoveToXYZReal'''
|-
|-

Revision as of 14:17, 13 July 2026

Author Matrix TSL
Version 1.0
Category


Reprap Mendel 3D Printer component

A version of the basic 3D printer simulation which has been wrapped with a Reprap Mendel style mesh.

Component Source Code

Please click here to download the component source project: FC_Comp_Source_3DPrinter.fcfx

Please click here to view the component source code (Beta): FC_Comp_Source_3DPrinter.fcfx

Detailed description

No detailed description exists yet for this component

Examples

No additional examples







Macro reference

ClearPrevPrint

ClearPrevPrint
 
- VOID Return


ControlPrintHead

ControlPrintHead
 
- BYTE Enable
 
- VOID Return


Initialise

Initialise
 
- VOID Return


MoveByXYZ

MoveByXYZ
 
- INT X
 
- INT Y
 
- INT Z
 
- VOID Return


MoveByXYZReal

MoveByXYZReal
 
- FLOAT X
 
- FLOAT Y
 
- FLOAT Z
 
- VOID Return


MoveToHome

MoveToHome
 
- VOID Return


MoveToXYZ

MoveToXYZ
 
- INT X
 
- INT Y
 
- INT Z
 
- VOID Return


MoveToXYZReal

MoveToXYZReal
 
- FLOAT X
 
- FLOAT Y
 
- FLOAT Z
 
- VOID Return


Property reference

Properties
Connections
Motor X
Coil 0
 
Coil 1
 
Coil 2
 
Coil 3
 
Motor Y
Coil 0
 
Coil 1
 
Coil 2
 
Coil 3
 
Motor Z
Coil 0
 
Coil 1
 
Coil 2
 
Coil 3
 
Extruder
Coil 0
 
Coil 1
 
Coil 2
 
Coil 3
 
Simulation
Show Coils
 
Bed Width (X)
 
Bed Height (Y)
 
Bed Depth (Z)
 
Print Speed (0 - 100)
 
Print Type
 
Print Size
 
Print Shape