Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
First try with a serial console software. Arduino IDE has one in toolbar, but there are also standalone versions. If you then connect with your baud rate it shows "start" and you should be able to send commands like "M115" to see which firmware it r…
-
It is not host/server thinking it is below bed, it is the firmware. Deltas home to zmax. And they assume that if you go zlength down you are at z=0. If that is below surface your zlength (or height or however your firmware calls it) is just these 0.…
-
Also check #define EXT0_PID_INTEGRAL_DRIVE_MAX 140 default is quite limited and that is max. when control takes over. But a temperature curve as I told would you show directly what the error is. Firmware contains some typically used thermistor cur…
-
#define Z_PROBE_X_OFFSET 19 #define Z_PROBE_X1 18 #define X_MIN_POS -3 #define DISTORTION_XMIN 18#define DISTORTION_YMIN 23 Just for reference the important config options for the problem. After homing you are at x = -3 and for the leftmost positio…
-
What is the error message on compilation?
-
Did you select the right firmware and baud rate? No valid response mean either no valid answers due to baud rate or firmware does not understand commands e.g. because you have set it to repetier-firmware and prusa is running marlin, which does not u…
-
You just do the same solution as with octoprint. Read manual->advanced setup on how to set up external commands. You can make either a new command that you can put in end gcode like "@unpower" or make a menu entry in the printers context menu to …
-
Check your end gcode you put on sd card. From sd print it only executes what is in the file, so if it doe sit wrong then only because you have wrong commands at the end of gcode and you need to configure your slicer to insert the right one.
-
Since homing works, after homing send G1 Y50 Y50 that should normally always work. Afterwards you might send M114 to see what firmware thinks where it is. And always have a look at the log since it often contains useful informations on what goes wr…
-
The new version should home if necessary and go to a position where enabling is possible. I need more information to debug this since it is working fine on my delta. What happens when you start at a valid position like center of bed? Are your config…
-
For debugging always use a temperature monitor on server or host. There you see output power. If it needs rising a good part it should increase power to 100%, if not config has limited PWM like RAyWB said, if it is 100% you have not enough power for…
-
If you get these timeouts you are not really talking with smoothieware, you only have the com port connected but they do not understand or get responses. Your timeout is 30 seconds so every 30 seconds server tries to send commands. Make sure you ha…
-
The problem is that it seems to not see/find a view mode for your card or sees it first for the generic driver. Not sure here as this is not our library, we just use it. Your driver is good enough and there is no reason for windows to show the gener…
-
VBOs require OpenGL 1.5, so with 1.1 it will not work. One reason you want your cards hardware solution which has them. Extension viewer - just start and check if it shows OpenGL 4.x which nowadays drivers have normally. Also not sure where and wh…
-
Are you using the dev version?
-
M999 is not guaranteed to work. Bette ruse emergency stop after fixing the problem. This initializes firmware again and if problem is fixed it will work then.
-
Ok, think I have found the problem. Should now be fixed in dev version.
-
That combi is not much testes as nearly nobody uses such a system. I guess that it just does not enable x and z motor in that case. Once enabled signals will do what supposed until motors get disabled. Will see late rif I can see where it should hap…
-
Yes, HEATED_BED_SENSOR_PIN becomes the cs pin. G33 has changed a bit with yesterdays release. Hope to have fixed some bugs with offsets.
-
Problem is this: 20:34:39.541 : OpenGL renderer:GDI Generic The used OpenTK library did not see your OpenGL driver and switched to microsofts software renderer, which is very slow and causes crashes frequently. So what you need to achieve is that i…
-
What happens if you instead of restarting server just run deactivate printer and activate printer. From connection handling this should be the same as a restart. When does the com show up in windows? When you connect port or when you enable printer…
-
Sounds like a problem in your Marlin or it's configuration. Since you hear something happening host does send the command and then it is up to firmware to execute. We are no Marlin experts, so I can not say why homing would work and normal moves no…
-
You could implement the test in firmware and request a stop print in that case. For repetier-firmware the server has in it's firmware this stop definition: RequestStop: In marlin there is no such entry, but you can add one. What this means is i…
-
Shutdown server, delete the empty printer config file. Then update to 0.86.2 and add a new printer with same name. It shoudl get same slug name so it reuses all your stored gcode files. These are not damanged, only the config file got truncated to 0…
-
Have you already tried heat manager 0 instead? That should go down smoothely to 30°C. The bigger swings on target temp are not so important for the bed and can be ignored.
-
No interactive gcodes, sorry. M190 S30 will wait for cooling. Problem is that PID/dead time are optiimized for hot temperature and at low temperatures a smaller time is needed to go up a bit. Therefore these spikes have more effect and makeing it …
-
M190 S30 is correct. No idea what R should de. M190 is already wait. Problem can be depending on heat controller. Everything else then bang-bang will get spikes of heating especially PID and dead time, so these can be very hard in low temperature r…
-
Will check android version tomorrow.
-
What commands did you send and what did the log say? It looks like you did not home but use G32 only, whcih is a different process also both should set Z at the end. In your mode it will also go up "bed coating" mm. So make sure to have it on 0 to …
-
Host has only a heating message when waiting for target temperture. So this happens also for cooling. For the print the slicer adds or should add temperature commands based on your selected filament. In case of CuraEngine make sure you have generat…