Go to file
kliment 86c76a199c Added documentation and patched up a couple functions 2011-05-11 17:28:35 +02:00
README Initial commit, basic functionality (send gcode to printer, pause, resume, send intermediate command) 2011-05-10 09:59:28 +02:00
printcore.py Added documentation and patched up a couple functions 2011-05-11 17:28:35 +02: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()