NewHost Skeinforge

From RepRap
Revision as of 02:25, 12 August 2010 by Stoffel15 (talk | contribs)
Jump to: navigation, search

This is a Special Skeinforge Build on version: 2010-04-27 00:14:23 CET beta This is the Last Version with a working Comb-Funktion.

The Export.py is Patched to delete The M-Codes.

def getNonskipped( gcodelines ):

"Skip lines containing undesired commands."

result = ""

for line in gcodelines.split('\n'):

if line.startswith("M101"): continue #lines to skip

if line.startswith("M103"): continue

if line.startswith("M105"): continue

if line.startswith("M108"): continue

result += line + '\n'



File:NewHost Skeinforge.zip



--Stoffel15 06:21, 12 August 2010 (UTC) return result