Go to file
Keegi 9307b60bca bugfix reading multi-line macros from .pronsolerc 2011-06-08 22:12:45 +03:00
.gitignore Added .gitignore with *.pyc. 2011-05-12 12:53:58 +02:00
.pronsolerc correct sample aliases 2011-06-02 22:29:28 +03:00
README Initial commit, basic functionality (send gcode to printer, pause, resume, send intermediate command) 2011-05-10 09:59:28 +02:00
blupload.py Improve filename shortening algorithm. Add configurable temperature presets. Deal with missing ok after M29. 2011-05-31 17:08:23 +02:00
calibrateextruder.py Added extruder calibration program. 2011-05-12 12:54:10 +02:00
printcore.py Fix pause command. Fix help for pause command. 2011-06-07 07:46:29 +02:00
pronsole.py bugfix reading multi-line macros from .pronsolerc 2011-06-08 22:12:45 +03:00
pronterface.py Add log window and fix print from SD command 2011-06-08 17:25:01 +02:00
weaver.py modified: weaver.py 2011-05-18 23:45:42 +12:00

README

This is the beginning of a python-based host software for reprap printers.

Currently contains printcore.py, which requires pyserial to be installed.

Using printcore:

p=printcore('/dev/ttyUSB0',115200)
p.startprint(data) # data is an array of gcode lines
p.send_now("M105") # sends M105 as soon as possible
p.pause()
p.resume()
p.disconnect()