Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Ok, the explains why I do not find the code:-) https://forum.arduino.cc/index.php?topic=132130.0 shows the pinout.
-
That really depends on who is blocking. Host allows moves past 0 if you did not home and coordinates are shown in red. Enable command sin log and see if commands get send. Then you know it is the firmware blocking the move and then it would depend o…
-
No, it is just not possible to send when printer is not online. Normally you can modify boards that they are also powered by usb then it would work. On th eother side this puts load to pi and that is not always good.
-
It will be update in 0.90.0 but being a very big update it takes a bit.
-
Ok, thank you.
-
Had a first look and think there are a few problems 1. if ( getMatrix(matrixIndex(ix, iy)) == ( DISTORTION_LIMIT_TO * Printer::axisStepsPerMM[Z_AXIS]) ) { You should not compute the magic number DISTORTION_LIMIT_TO * Printer::axisSte…
-
You mean on the lcd display or web frontend? On display there is always a home button top left that sends you back.
-
Where is that pin mode problem? Could not detect it. ui.h #define UI_KEYS_INIT_CLICKENCODER_LOW(pinA,pinB) SET_INPUT(pinA);SET_INPUT(pinB); PULLUP(pinA,HIGH);PULLUP(pinB,HIGH);In HAL.h you see #define PULLUP(IO, v) \ { ::pinMode(…
-
If you look into printer.h static INLINE void startZStep() { #if MULTI_ZENDSTOP_HOMING if(Printer::multiZHomeFlags & 1) { WRITE(Z_STEP_PIN, START_STEP_WITH_HIGH); } #if FEATURE_TWO_ZSTEPPER …
-
Exactly.
-
Zuerst bitte prüfen ob es Version 0.86.2 ist, da hier keine Stabilitätsprobleme bekannt sind. Ein typische Grund für einen Absturz ist Speichermangel. Der Server selbst braucht nicht viel, aber wenn man parallel noch gcodes hochlädt die gerendert w…
-
sudo apt-get install build-essential mono-complete libmono-winforms2.0-cil monodevelop libmono-system-serviceprocess4.0-cil is what I normally install and worked so far.
-
Normally we draw everything without simplification. It only happens if you have set this as default or if updating takes too long, which normally only happens if not using VBOs to store data, but all cards of the last 10 years support this. The oth…
-
So it really is out of memory. Antialiasing increases image sizes so needs more ram. The main question would be why does it occur if your card has really 3GB video memory. That is enough to store 24hours of print and more. Or what is your definitio…
-
They get multiplied. Slicers include the multiplication already in their E values, so you normally print in host/server with 100%. This is a additional factor that can be used to change ratio after slicing if you see you get not enough/too much fila…
-
At the bottom. Disable easy mode and you see a log toggle button in toolbar.
-
Merkwürdiger Fehler. Sieht aus als ob die Reihenfolge der Buchstaben verwürfelt wird. awti = wait ko1 4201 = ok 14201 Das dies den server verwirrt ist klar, nur warum das passiert kann ich nicht sagen. Ist mir ehrlich gesagt noch nicht passiert. Ein…
-
Is your printer online before sending the gcode? I guess not from the description. So if you need to power it on so it connects to server it is not possible in gcode. Server will only start a job if the printer is online and otherwise queue it. So i…
-
It might be that it corrects the rotation, so if bed goes up to the right that means x=0 at the top is more to the left. You can tell host to add extra distance from endstops. In fact for Z you even must do this and for xy only if rotation and endst…
-
Even with small models? What does the host log say on startup? It gives some data on the OpenGL driver.
-
Not sure what smoothieware cache size can receive. Over serial the limit for firmwares is normally 127 byte.
-
Yes, there are 2 server commands to tell it to ignore moves for size computations @nosizeIgnore next print moves for object size calculation. This is interesting if you make a extrusion at a fixed position. Then the server will include that into th…
-
On lcd the webcam is only used if visible in webcam view. So if it is not one of these cheap webcams with no jpg compression the webcam will not take much cpu time. And if no process takes more then 20% cpu time in top the pi is not really busy and …
-
That should not really cause out of memory problems, at least in medium quality with normal sized objects. I could already use it with 256MB with normal models. But you should of course not have any software taking all the video memory when you run …
-
No idea, but take a look into the log. Also what happens if you run the heat command manually that is in your gcode? Your description does not match pictures. Last picture shows ETE but temperature is reached, which is what you say does not work. …
-
Not really, nasty = no idea how long it takes. It also depend on support volume etc. So nothing we can really predict, but hope begin of april.
-
Und bewegt sich die maus denn korrekt (mit --no-cursor entfernt in .bash_rc). Das wird noch von Linux gesteuert und mit sichtbarer maus sollte man sehen ob die Positionierung funktioniert oder nicht oder gar nichts macht. Aber ich denke die Konfigur…
-
Is this a old pc with not much video ram? That can be a real deal braker as the host renders the filament and that can require quite some memory. In Preferences->3d visualization->filament->Filament Visualization you can define how to visua…
-
Yes that is correct. layer height is a print parameter, but independent from filament type. It is more a quality thing. Lower layer height increase print time but give nicer sided. Print speed is also a print setting. Print visible parts like perime…
-
First make sure it is a manifold object. Otherwise anything can happen anyway. Then make sure the width between the gaps is at least one extrusion width plus rounding errors. Otherwise slicer could also decide that the wall is not printable. These a…