Skip to topic
|
Skip to bottom
"Wealth without money..."
Jump:
RepRap Home
What can it make?
One page description
Future Plans
Main Blog
Documentation
Make your own RepRap
Using your RepRap
Videos / Movies
RepStrap machines
Community
Get a RepRap Kit
User Forums
Builder's Wiki
Builder's Blog
RepRap auf Deutsch
RepRap en espaņol
RepRap in italiano
RepRap IRC Channel
RepRap Twitter
Object Library
Thingiverse
The People
World RepRap map
Related Sites
Background
Press
Philosophy
Acknowledgments
T-shirts, mugs etc.
GPL Licence
Privacy Policy
Main Web
Changes
Changes detailed
Topic list
Search
login
Edit
Attach
Printable
Main.ArduinoSend
r1.1 - 01 Sep 2008 - 05:26 -
EnriquePerez
topic end
Start of topic |
Skip to actions
send.py is "glue" for sending a skeinforge-generated gcode file to your arduino-based reprap. It is a command-line only utility, starting it from your GUI of choice will not be useful. Syntax is simple: send.py [options] <gcode or file> [<gcode or file>...] To send your extruder.gcode file to your reprap, type: send.py extruder.gcode This will print the extruder.gcode shape, and print comments to the console. Typically, comments are such things as (>layerStart< 0.402 ) which can be very useful to track the progress of your build, so these are "on" by default. There are a simple options that may be useful for special circumstances. These are --quiet, --noreset, --port, and --verbose. These can also be writted -q, -n, -p, and -v for short. If you are writing a script (for instance, the M100 scripts for use with EMC) then I'd recommend that you use the long options, so future maintainers don't have to look things up. Quiet will suppress all but the most basic messages. It won't supress everything, however. Error messages will still be printed. But it will supress almost everything. Since options are processed in order on the command line, so if you want to supress messages about processing options, you'll have to make Quiet the first option. Normally, the arduino is reset by dropping the DTR line for 1 second. Since the Arduino takes several seconds to reboot, you will want to disable this behavior when including send.py in scripts. The verbose option will cause not just comments, but every command sent to and every response recieved from the arduino to be printed out. Useful for debugging, but it prints a great deal of text in ordinary usage. The port option uses reasonable defaults for most operating systems - /dev/ttyUSB0 for posix systems, and COM3 for windows systems. If you have some other port you'll have to set in manually as "send.py -p COM5 extruder.gcode" or "send.py --port /dev/ttyUSB5 extruder.gcode" or something. Future improvements: I would like to add support for more g-code contructs on the python side of things. Stuff like variables, subroutines, etc. Stuff that the g-code firmware is unlikely to ever implement because of size restrictions. The current version works, and skeinforge doesn't use these features. It might be nice for a future "print several objects at once, automatically filling the bed area" interface. And if I get my extruder built, I might even take the time to do that! RepRapArduinoSerialSender.py This, like send.py, was cribbed from Brenden Erwin's code for using EMC. It's been modified somewhat for more general use. There are only five methods: __init__ reset write read close Of these, you should not directly use read(). It's used internally by write and reset to verify that the operation was completed successfully. -- Main.EnriquePerez - 01 Sep 2008
to top
End of topic
Skip to action links
|
Back to top
Edit
|
Attach image or document
|
Printable version
|
Raw text
|
More topic actions
Revisions: | r1.1
|
Total page history
|
Backlinks
|
Refresh
You are here:
Main
>
ArduinoSend
to top
Copyright © 1999-2009 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding
RepRap
?
Send feedback