Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Sure you can of course also increase EXTRUDE_MAXLENGTH to match your maximum wanted extrusion.
-
Host shows both if you click on the message in the status bar it toggles. Is this for host or server? For such big prints like you seem to do I would expect you to use the server which is much better with big prints.
-
You can easily add new features with our event system. A direct joystick system can not be implemented as there is no move in direction signal. As a solution you could constantly add new tiny moves if move buffer if filled only x% and joystick angle…
-
If you can mount the file system where the gcodes get stored, you can add the mapped folder to the servers folder list. Then you can select it directly from server using the dropdown instead of hitting the upload button. Same solution would also wo…
-
Nice trick, but in general the target check will prevent moves to z < 0 if send by gcode. Here it is just a fix to have home behave differently. Using a negative bed coating thickness would probably also work.
-
Firmware has a protection for long extruder moves. These are normally wrong and come from a print ending with a position like E8283 and then someone wants to extrude 10 mm with E10 meaning 8273 mm backwards:-) Simple solution is split it, especiall…
-
Make sure you have OpenGL 1.5 or higher and select VBOs for rendering. That is the fastest sollotion you can have and it is generally fast. But a print has much more triangles then a simple freecad image.
-
You should run teh start commands one at a time to isolate the one causing it. Maybe starting with the homing. It can be anything from wrong firmware configuration to start script of slicer, so isolate the source and then check if the command is wro…
-
They are lost after reset, but as advantage you can set them per extruder and not glabally for all. Usefull if one filament is weak like flexfilament.
-
Yes An is correct. addStringOnOff will add An/Aus depending on value. What you want to call is addString with a string as parameter. YOu can also make your own codes if you use a letter that is currently unused.
-
You have set number of steps per babystep in your configuration. If you have changed that or z microstepping (z steps per mm) this could happen. Also if you have changed encoder granularity.
-
First of all use dev version. It has many things fixed here. Then the question sis do you have z min pin to z probe pin? Required for z min homing with z probe. After last measuring it computes a correction to go z probe height down, z home z start…
-
No, you need to set z homing position to 20, 60 to make it work. Guess you home xy being at 0,0 and then it activates probe which means moving to -20,-60 from 0,0 and that is not possible. Select a homing order with preheat and set preheat temperat…
-
The text is defined on compile time. You can not change it at runtime if that is what you want. Th eonly way to insert runtime values is like we do with the %xx placeholders which get replaced in a function in ui.cpp.
-
EXT1_ENABLE_ON does not mean if you want to enable that motor. It means 1 = a high signal activates the driver or 0 = a low signal activates the driver. Since you said 0 would activate x,y and z motor and they work I assume you have the same driver…
-
How does that ethernet work? Is it a chip that converts ethernet to serial data? Then you could simply select the right serial port/baudrate. But we do not have that board, so we can not test etc. But if someone provides required code we will of cou…
-
Ok have changed it to 12 for next update as it seems correct. No idea where the 10 came from. Even saw a comment that it should be 12 for break out board, whatever that meant. Probably a very old melzi version was differently. Why do you need to ch…
-
First the easy part. Second extruder does not heat because of this: #define FEATURE_FAN_CONTROL 1 Fan uses also D9 by default so it overwrites your heater setting set it to 0 or set FAN_PIN to th epin where you have connected a fan (if you have a fa…
-
Ok, so no apparent reason to not connect. And since V1 does work I have no idea what is different in V2 that it wont connect. On which OS are you trying this with the server?
-
See event handling for felix pro in eventsystems in github version. There we made a test for the bed to remove the error after it comes back a sit has a swapable heated bed whcih triggers this for the bed sensor. YOu could use the same trick I think.
-
sd cards have even lower write rates for same sector. Not sure how they behave if you write same file, mean if it writes always to same sector. Wear leveling could help or not. But that would also mean you can not print from sd card or it can handle…
-
You can not disable it but M999 should reset it at least in dev version (1.0).
-
I know what they mean as I invented that report:-) http://reprap.org/wiki/Firmware_Capabilities_Protocol I see they have meanwhile added the description for it.
-
In deed. Forwarding to 7500 is a bit much :-)
-
Thought that is what you were doing as this is the only use for second z endstop. The dual motor connector is for prusa style printers where 2 motors control z but only have 1 z endstop. In your case select mirror z axis in config tool and you see a…
-
Check your stop print script in host. Normally it is empty but if it moves extruder I guess you have some extruder gcode there. Often users forget that in print E can be a big number and coordinates given make no sense unless they add G92 E0 befor e…
-
I see. I fixed it in AVR version and forgot to copy to due version. Please try now again.
-
Please try latest release from today. Had same error while working on the latest update and think it is now fixed.
-
Sure you still have the same ip on the device running the server and is the server running? From the link I see that it at least was working one time. But remember that dhcp can give a device different IPs on different times if you do not bind ip to…
-
For which board? RAMPS has bed on pin 10 but others of course can differ from that. So if we have an error in our board description I'd like to know so I can fix it.