Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
No filament length is not a problem in server side. I often print a lot of longer prints and also others. You should activate logging the print and see what the communication says. Syslog also reveals an interesting line Feb 4 18:15:24 RepetierSe…
-
Encoder speed is defined by these options: /* Normally cou want a next/previous actions with every click of your encoder.Unfortunately, the encoder have a different count of phase changes between clicks.Select an encoder speed from 0 = fastest to …
-
You can add it to autostart to automatically start. Systray option might be an idea - not sure if I can add it as I'd like it for all os since it is still a web app using electron, but will see.
-
Do not really understand. TCP/IP is simply same data as it would be send/received over serial, so no difference. Any parser from firmware would do to understand it. If using repetier protocol send gcode is in binary format and that is described in r…
-
Strange. Authentification did not change since it was created, but did not have time so far to retest the demo. Is password/user creation in api because creating an user in gui is no problem. If so what is your call to find error.
-
When we get the required time we will ask them for a sample device and support.
-
Actually the image uses NetworkManager which has build in dhcp client. But addresses assigned via dhcp are not static addresses. For real static addresses go to gloabl settings->wlan->wired connection to give our ethernet connection a static i…
-
Only the one on our homepage. On the right side drag Object 1 on object 2 and they group together. Then assign extruder number and slice.
-
See message I send you.
-
Yes works very well. Just note that you need a buster based image to get linux working on it. Our latest image uses buster already, so no problem if you use that.
-
Looks like I need to add an event here so monitor gets this directly. Guess restarting monitor would also have worked, but of course should also work directly.
-
This is already included, the setting is just not at that place. Go to Printer-Configuration->Extruder and set retraction distance to whatever you want. That is the retraction snapshots use to retract filament.
-
Are you running the host from our website or from a manufacturer? We have the tabs still (right clicking to edit) but some manufacturers have them disabled. They are in printer settings along with extruder definition.
-
Are you talking about the touch screen eeprom editor? There touched values are treated as numbers causing trailing .0 to be omitted making the value change. The normal web gui treats values as strings only marking it changed if value string has a d…
-
If you speak about license I assume you are using repetier-server not repetier-host. Server has initially no login at all. Logins only exist after you have created one and that would be the one you assigned - we have no access to this to help. But i…
-
Yes, great slicer and it's output work well. Just make sure gcode variant matches the one of your printer.
-
I think specializing on temperatures makes no sense. Better would be a general @ifGreater / @ifSmaller / @ifEqual and the ability to add process values as parameter. Have to think about this and how to do it best and if we have already a simple way …
-
Repetier-Firmware can add extra delays to extend step/direction times (default 0 defined in configuration.h). But if marlin does the correct number of steps I do not think that this would be the reason. Apart from this we do cpu cycle precise timing…
-
At some point yes. You can of course speed up the process by providing a hal for it from your side. Just spend 2 weeks optimizing HAL for STM32F4 used by RUMBA32 now working well. Next will be AVR then I come to smoothieboards which use the LPC I th…
-
The xy moves while changing Z are in deed from rotation and normal. And NO - removing rotation and only keep distortion is not a good idea. These are 2 different problems - distortion is disabled after a few mm while rotation needs to stay on so a …
-
Simplest way if just putting these at start of configuration.h right after including pins.h so your values get used.
-
Depends on the code in that line. Guess your configuration does not match that firmware version and so it misses some defines so that the line with the error does not make sense for compiler causing the error message.
-
Add a M83 to tell host you are not using absolute extrusions but relative extrusion, or it will only show for higher E values.
-
That means your model is too big to load. You are running out of memory. Is it a big file or might it be just a bad header? If it just big make sure to close unnecessary software before before loading, but normally it is no problem even 100mb big st…
-
1.999 or 2.000 does not differ. That look sjust like rounding errors from step to real conversion and can be ignored. Test point 30 / 35 means offset must be
-
Difficult. First you should have some simple script G1 X-100 Y0 F9000 G1 X100 to have a long move with defined speed below max speed. Compile firmware with #define DEBUG_QUEUE_MOVE and enable echo before doing the test M111 S7 This will show lot o…
-
Ich würde im server einstellen dass er nie in den Access Point mode wechselt. Dann wird er nie wegen fehlerhafter abfrage der Router wechseln. Zur not kann man ja bei kabel verbinden (ist eigentlich auch besser da schneller aber ich weiß Kabelsalat …
-
I assume you are using aboard with 6 motor drivers so E2 pins are predefined. Otherwise you need to set the pin numbers for E2_PINS ORIG_E2_STEP_PIN, ORIG_E2_DIR_PIN, ORIG_E2_ENABLE_PIN your self at the start of the configuration file.
-
No guide. Just select E2 as extruder for second X axis in config tool. Nothing more to do there. Important fact is use dev version to have all fixes and the extruder x offsets are from the virtual 0 position over bed and bust be such that second ex…
-
I think you have selected the wrong hardware in Arduino IDE. You selected an Arduino Duo board. Don't have that printer but quite sure that it is AVR based, so most likely you need Arduino Mega 2560 as board in IDE. You see this also in MOTHERBOARD …