Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
1. You need to heat nozzles if nozzle is endstop as ooze can have different results. Guess this is what you mean with wipe. 2. You do M134 not in start gcode. The result is stored in eeprom so no need to repeat it. You only do it if you disassembled…
-
Depend if both have a nozzle but share heater or both also share the nozzle. In forst case use SHARED_HEATER I think. Th eother solution is MIXING_EXTRUDER and you need to define the mixing ratios to use one or the other motor or both with a mixing …
-
You need to make changes ALWAYS in config tool or reoeneing config will not see your changes. They are read from the comment section at the end! Pause from sd is in SDcard.cpp void SDCard::pausePrint(bool intern){ if(!sdactive) return; sdmod…
-
Looking into sources I se eonly type 2 would pause: #elif JAM_ACTION == 2 // pause host/print#if SDSUPPORT if(sd.sdmode == 2) { sd.pausePrint(true); break; }#endif // SDSUPPORT GCodeSource::printAllFLN(PST…
-
In printer configuration disable "Use own G-Modl directory" for all except one of the printers. Then the others will use the same g-codes from the printer you slect there you want to share data with.
-
In V1 it will never work. We work on V2 with more flexible configuration possibilities and there I thinkit might be possible when implementation is finished. No promises as it is not yet written.
-
You need "Show jam/out of filament and block communication" i config tool - guess it is action 1. That is the one that should work. Can't say if it works with sd card. Can you test with host print and trigger it (dry run is enough). That way I know…
-
Now I do not understand. When you can do it already, what is the problem? I though on is not working because printer is off and you could net send the command.
-
It's the stl that is non manifold. This has nothing to do with the gcode produced, except that it might be at wrong places due to non manifold. But if the sliced model shows it will extrude at position xy it should do so in real. When printe rpaus…
-
Will test this as soon as my server works again. Need to finish current mod first to test/modify.
-
Cura slicer has it's own start/end gcode. The start/end gcode in host are added just like servers start/end gcode during print if host is the printing instance not the server.
-
Yes, we are closed source for years so no updates on old server on github.
-
All printers use 8 bit, 1 stop no parity. I'm pretty sure a8 net uses marlin a firmware. Important is you also select this as firmware or no communication will be possible, especially if you selected repetier-firmware which talks a binary format for…
-
Sure, from repetier.ino - G134 Px Sx Zx - Calibrate nozzle height difference (need z probe in nozzle!) Px = reference extruder, Sx = only measure extrude x against reference, Zx = add to measured z distance for Sx for correction.You…
-
@execute only works when the printer is online and you said that's not the case so script solution does not work. You need the external command solution that adds commands to frontend menu, but these do not appear in host only in server frontend. …
-
Would help to see then the error :-) I use Arduino 1.8.x for development. 1.0.1 is quite old- Not sure if there are some incompatibilities.
-
If you print using server the server will always push the messages. The timezone is the timezone of the computer the server runs on. If you use our pi image that would be GMT. YOu need to change the timezone to change the format. Just login with ssh…
-
Does manual moving printer with controls work? Maybe you are just not really connected to printer.
-
You mean z works manually and not during print? Maybe reduce z jerk and z acceleration. But normally there is no difference between printing or not for z.
-
You said "The pi is on and connected to printer always. " which I interpreted that you can also communicate as printer board gets power from pi. If that is not the case you can only use the extcommands.xml printer command solution. You can add ther…
-
That is no error message and is ok. It is just a redefinition of an macro and no error.
-
Ok, you want it on start of mjpg streamer. Thought you wanted auth for an other webcam with password. You need to edit the start script of mjpg_streamer. Check /usr/local/RepetierSetup/bin there is teh start script for streamer and you can add your…
-
Why not simply add the power on command in the start script. Then add a G4 S1 to wait a second so power is up and continue with regular sliced print. I mean turning on printer does not take so long that you need a minute until it is done.
-
Ok, now I see what you mean. That empty space can get filled by more printer connected to same device. Therefore it does not get ocupied with extra data. You can go to printer for details. For next release we think we can add webcam to print info ne…
-
In app mode the first screen show only the app name and when you slect it you see messages. Did not know left swiping also calls that function, but I can for single entries. But how can I do this for a group. I'm only to select one row at a time and…
-
Which OS has that problem? Are you in combined or per app mode?
-
That is not a tab just a switch, or we are talking about different buttons. I mean the two on home screen.
-
You need to provide user and password in the url. If webcam uses digest authentication (default popup with credentials) you need a link like this http://admin:password@10.0.0.7/mjpeg/snap.cgi?chn=1 server will detect this and run authentication in…
-
You use wrong corexy/invert motor direction combo so x moves go wrong way. You need to find the combo to invert x but keep y then everything is ok. Would of course mean your homing was also wrong e.g. x min endstop on right side.
-
Ok, so it is the selection of pins. So maybe an other function used same pin number for something else causing conflicts. LCD Panel is not the way for the future anyway. Tiny pc like odroid or raspberry with touchscreen and repetier-server is much …