EXE Flexa Real-Time Control Software

download

CONTROL SOFTWARE SPECIFICATIONS

Software and graphic user interfaces

Free download

Simulation Area For Self-Learning

Test Mode creates virtual load Cells for self-learning training

Data Management

Event, Sector, Zone and Cell setup

siemens 828d post processor for fusion 360

TUTORIAL VIDEOS

QUICK START

1 - How to Create an Event

2 - How to Add Sector
and Zones

3 - How to Add Cells in Zones and see them
on the Home Page

4 - How to Modify Underload, Overload and the Location Name of the Cell

5 - How to View the Sector, Zone and Single Cell Graphs

6 - How to Activate Test Mode

Siemens 828d Post Processor For Fusion 360 May 2026

// Main processing function function onSection(section) switch(section) case "setup": onSetup(); break; case "toolpath": onToolpath(); break;

// Linear movement - 2D function onLinear2D(section) var x = section.getX(); var y = section.getY(); var z = section.getZ(); var feed = section.getFeedrate(); siemens 828d post processor for fusion 360

if (x != undefined) line += " " + xOutput.format(x); if (y != undefined) line += " " + yOutput.format(y); if (z != undefined) line += " " + zOutput.format(z); case "toolpath": onToolpath()

// Tapping cycle (CYCLE84) function onTappingCycle(section) var x = section.getX(); var y = section.getY(); var z = section.getZ(); var retract = section.getRetractHeight(); var feed = section.getFeedrate(); var spindleSpeed = section.getSpindleSpeed(); var y = section.getY()

writeBlock("MCALL CYCLE86(" + rtp + "," + rfp + "," + sdis + "," + dp + "," + dpr + "," + dtb + "," + sdir + "," + rpa + "," + rpo + "," + rpap + "," + rpop + ")"); writeBlock("X" + xOutput.format(x) + " Y" + yOutput.format(y)); writeBlock("MCALL");

// Unknown cycle handling function onUnknownCycle(section) writeBlock("; Unknown cycle: " + section.getCycleType());

// Siemens 828D post processor for Fusion 360 // Description: Siemens Sinumerik 828D milling post processor // Version: 1.0 // Date: 2024 // Requirements: Fusion 360 with manufacturing extension // Post processor configuration var properties = vendor: "Siemens", product: "828D Milling", version: "1.0", supportsMultipleSpindle: false, supportsSpindleDirection: true, supportsCoolant: true, supportsToolpathRadiusCompensation: true, supportsToolDiameter: true, supportsRadialCompensation: false, supportsLiveTool: false, isLibrary: false, codePage: "windows-1252" ;