Go to file
Jeremy Kajikawa dd9c832423 Modified: weaver.py
Extended the Basic "3-panel" Layout using Horizontal and Vertical Group
  Widgetry... otherwise appears more code-complete.

Only requires "self.Bind()" method calls to connect "self.gadget"
  to "self.function" calling convention.

Only 1 bug at this time,  the "ShellView" Gadget needs to be read-only,
  and multi-line text display... not editable as now... Which gadget?
2011-05-15 00:52:51 +12:00
.gitignore Added .gitignore with *.pyc. 2011-05-12 12:53:58 +02:00
README Initial commit, basic functionality (send gcode to printer, pause, resume, send intermediate command) 2011-05-10 09:59:28 +02:00
calibrateextruder.py Added extruder calibration program. 2011-05-12 12:54:10 +02:00
printcore.py Changes to make interactive mode use nicer - no RECV message on recv timeout 2011-05-12 09:03:57 +02:00
weaver.py Modified: weaver.py 2011-05-15 00:52:51 +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()