- 18 Feb, 2013 1 commit
-
-
Kaz Walker authored
-
- 17 Feb, 2013 7 commits
-
-
kliment authored
[printcore] Switched to use Python if syntax and not Ruby's.
-
Kaz Walker authored
-
Kaz Walker authored
-
kliment authored
Add checking to pause/resume functions in printcore.py
-
Kaz Walker authored
-
Kaz Walker authored
-
Kaz Walker authored
-
- 13 Feb, 2013 1 commit
-
-
kliment authored
Confirmation on exit
-
- 07 Feb, 2013 1 commit
-
-
kliment authored
Make sure to set target temps to 0 before exiting.
-
- 08 Feb, 2013 1 commit
-
-
Christopher Olah authored
To ensure safety, we make sure we set target temps to 0 before we exit pronsole.
-
- 03 Feb, 2013 1 commit
-
-
Christopher Olah authored
Presently, one might accidentally terminate a print with a CTR-D while printing. Now we ask the user to confirm exiting if there is a print going when they try to exit.
-
- 02 Feb, 2013 2 commits
-
-
Christopher Olah authored
Protect the user from typos in setting the extruder temp by confirming them with the user if they exceed 250.
-
Kliment Yanev authored
Conflicts: gcoder.py
-
- 24 Jan, 2013 2 commits
- 23 Jan, 2013 4 commits
-
-
kliment authored
Show connection error to the user
-
Miro Hrončok authored
-
Miro Hrončok authored
-
Miro Hrončok authored
-
- 19 Jan, 2013 3 commits
-
-
kliment authored
Clean up echoed firmware lines, connect info.
-
Christopher Olah authored
Presently, when you connect to a printer using pronsole, one sees something like: uninitialized>start uninitialized>Printer is now online uninitialized>echo: External Reset printer>Marlin 1.0.0 RC2 ... With a few carriage returns and some string hackery, we clean up the output so that one sees: No port specified - connecting to /dev/ttyACM0 at 115200bps start Printer is now online External Reset Marlin 1.0.0 RC2 Much cleaner!
-
kliment authored
Clean up the monitor command.
-
- 20 Jan, 2013 1 commit
-
-
Christopher Olah authored
The monitor command now: * Has more pythonic code * Limits precision of progress elements (12.3% instead of 12.347812...%) * Uses a carriage return to have print progress replace the previous progress line. For example: Monitoring printer, use ^C to interrupt. Updating values every 5.000000 seconds. Print progress: 0.3% Previously, the line "Print progress: 0.3%" was "Print progress: 0.2%", etc.
-
- 19 Jan, 2013 1 commit
-
-
kliment authored
Fancy configurable prompts!
-
- 20 Jan, 2013 1 commit
-
-
Christopher Olah authored
* Prompts are now generated based off of string templates, for example: "%(bold)sT:%(extruder_temp_fancy)s %(progress_fancy)s >%(normal)s " * We have a dictionary of prompt string templates for different situations. * We have bold support for the prompt. * We have extruder temperature support for the prompt. * We have progress support for the prompt.
-
- 15 Jan, 2013 1 commit
-
-
Miro Hrončok authored
Before, when there was an error while connecting, user didn't know, when Pronterface wasn't launched from the terminal. So you could just hit Connect button several times and all you've get was: Connecting... Connecting... Connecting... Now, when there is an exception during the connection, the user will notice: Connecting... Error: You are trying to connect to a non-exisiting port. Or: Connecting... Error: You don't have permission to open /dev/ttyUSB0. You might need to add yourself to the dialout group. Unfortunately pyserial's SerialException doesn't provide errno yet, so the message isn't so user friendly: Connecting... could not open port None: [Errno 2] No such file or directory: 'None' I've filled a bug report with patch to pyserial. Together with this I've realised, there is unnecessary UTF8 decoding of the output. When user has UTF-8 locale, there was an exception when printing the exception to the output (almost an exception inception). So I have dropped it, but feel free to add it back, if I broke anything else.
-
- 13 Jan, 2013 7 commits
-
-
kliment authored
gcoder updated
-
Mikko Sivulainen authored
-
kliment authored
gcoder.py reads the file content instead of the file name when testing
-
Miro Hrončok authored
Previously, gcoder.py read not only the content of the file, but also it's filename. This could have led to unexpected exceptions.
-
Alessandro Ranellucci authored
-
kliment authored
Added missing files to setup.py and fixed license notice in files which were not explicitly gplv3+.
-
Miro Hrončok authored
-
- 12 Jan, 2013 5 commits
-
-
kliment authored
Fix Ctr-C and Ctr-D behavior.
-
kliment authored
Temp prompt
-
Chris Olah authored
-
Christopher Olah authored
We replace the cmdloop function with a slightly modified version to achieve standard unix shell behavior on keyboard interupts and EOF.
-
Christopher Olah authored
In order to do this, we consolidate handeling of printer status with a Status class. The status class is updated by recvcb. This has the side effect of simplifying the implementation of gettemp. We also detect whether there is a heated build platform or not, and don't display info about it if there isn't.
-
- 09 Jan, 2013 1 commit
-
-
Chris Olah authored
Prompt is now generated by a promptf() call for every cmdloop iteration.
-