jgbrown54
About
- Username
- jgbrown54
- Joined
- Visits
- 11
- Last Active
- Roles
- Member
Comments
-
Following. Bambu X1C arriving soon.
-
I started the installation from scratch but this time I didn't set a password for repetierserver and didn't set it for SU. Everything worked fine. I was able to install Klipper. Now my issue is that I need to modify Klipper to work with the Enraged …
-
I probably created the issue because I added a password to repetierserver. I'll start from scratch and not add a password and see what happens.
-
I also found that if I open SSH in Putty and try to log in as repetierserver, as soon as I issue the password for repetierserver. the Putty window is closed. Note that previous comment shows that if I open a terminal window in the Server, it will as…
-
In my experience I would NEVER have a routine that calls itself. But in your implementation it works without increasing the stack.
-
I got it all figured out. Here is a link to the .wiz file and a text file. https://1drv.ms/f/s!An1x6MEtLv87grZxFSTktA9avQiJZw?e=dzQemY I used timedCall in a 5 second continuous loop to watch for the temperatures. The user can cancel out anytime an…
-
I got it all figured out. The only thing missing now is an icon. Here is a link to the .wiz file and a text file: https://1drv.ms/f/s!An1x6MEtLv87grZxFSTktA9avQiJZw?e=dzQemY I used @timedCall in a repeating 5 second loop to watch for the temperatu…
-
I thought of using an M105 with an @monitorcall but those are usually filtered. Are they only filtered for the console display? Is it possible to get a hit if it's filtered? I could also use a dialog telling the user to wait and if they d…
-
Here is the code I have so far. It's close to finished. At least it is functional. What I have left to complete, is a dialog to set some temperature parameters and I need to define speeds for all of the move gcodes. An issue I still have is turning …
-
It works much better with the right mindset. I have it working except for a couple of bugs related to the user canceling in the middle of the wizard. I just figured out how to overcome that using a return. And finding a variable that in one spot had…
-
I'll try that. Thank you for code review. I'll let you know how it turns out. I guess I'm used to programming where the code calls a screen. But here the screen should call the code. Different mind set.
-
I think I got most of the bugs out of this. ; Wizard to set Z-Offset on a catesian printer. @monitorCall getOff 'M851 .*Z(\\S*)' 5000 hitOff missOffM851 ; Get Current Z-Offset @func hitOff Z @set global.probeOffset {{float(local.Z)}} @set global.…
-
I worked it out. I set the button to call a function that would change the variable that was used to populate the control that needed to change and then redisplayed the dialog. It would be nice if you could do something like @set form.controlName va…
-
I found that it does work providing I add the @dialogblocking as follows: @func display @dialogStart "Select Offset" "Z-Offset Adjustment" @dialogInputString "Offset" global.z max(5) default("-1.3") @dialogBlocking @dialogShow@endfunc @cal…
-
That works well. I also tried the following which will parse up to the next whitespace and it works also and is simpler. @monitorCall getOff 'M851 .*Z(\\S*)' 5000 hitOff missOff
-
I used he following: @monitorCall getOff 'M851 .*Z(-?\d*\.?\d*)' 5000 hitOff missOff M851 @func hitOff Z @set global.probeOffset {{local.Z}} @call display@endfunc @func missOff @info "Miss"@endfunc M851 returns M851 X-40.00 Y-6.00 Z-1.39 ; (mm) …
-
I thought I might have to catch the response from M851, but I wasn't sure. And yes it's in the M503 and in the EEPROM Settings. I was hoping there might be an simpler way such as a {{config.probe_offset}}.
-
I have verified this functionality in PrusaSlicer-2.6.0-alpha4+win64-202302180012.
-
But.....what you didn't answer was how to unregister a license if I am unable to run the registered server because of a fault.
-
I figured it was something simple. I was just running it on a test installation with no printers assigned instead of an active one. Duh.
-
That explains it. Especially since the display is a display of what the commands say to do, not what the printer is actually doing. So, changing the Speed with the selection at the top of the screen will not have an effect on F:?
-
Sorry. No edit button on forum. Linux Ambian
-
But how can you automatically import gcode files to a printer in Repetier Server?
-
Thank you. Hopefully they will update before I'm ready to ship. If not we'll just have to work around them. It seems most people use Cura anyway. I haven't tested it yet.
-
The title should read Unable to post From Prusa to OEM. Sorry. I posted this at the end of a long night.
-
I did find on their github that this is slated to be fixed in version 2.6.0.
-
I didn't think it would but I thought I would ask. Thank you. Actually I already have a old Pi running Repetier Server. Everyone should have one.