Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
You are a bit unclear so I can only guess that your z homing is completely wrong. You said homing is bed at top touching nozzle, so that is z min homing. You must therefor assign z max endstop (the one where you connected it to) to z min. Homing di…
-
What do you exactly mean? You have temperatures disabled and moving z heats the bed AND extruder none the less? SOftware wise there is no connection between z move and temperature. Heater pins should be different from stepper pins.
-
Uploading does normally not change settings in eeprom. That is why you should check eeprom in editor. Since you already know it is using 2 times required steps it is either needed and not set or set to a wrong value.
-
Host does not handle endstops, it is your firmware that handles it. So if they are not triggered (M119 shows all H) you need to change firmware config for endstops. If they go low when triggered just invert logic.
-
There is no eeprom editor for smoothieboard. Not sure if it even has one as you simply change the config file on flash and reboot printer. Also note that for some materials you need still a flow multiplier of down to something like 0.85 depending o…
-
Upgrade to 0.85.2 where that problem is fixed. Just download and install like it is the first install if you are using linux.
-
No we have no changelog. You can check the commits on github. We enter the most prominent changes as commit message.
-
You can't. As you see th efield is only the domain name and the server adds http:// on it's own. Will check if I can use that to override in a future version. Except the qr code it does not affect anything else, so you still can use it if nginx does…
-
A simple test would be one switch with 1 row and 1 column for testing.
-
From the code side it looks good. The way it works is by setting teh rows one by one to output and checking if one of the columns gets power. To be on the safe side I even added some resistors on the row lines. Anyway, what I want to say is how the …
-
Have put it on my todo to check. There is not much to do wrong, but maybe a continue flag is missing here when repositioning is done.
-
As you see from my last post here I'm still waiting for someone having the problem sending me a log where it happens. As long as I do not know why this happens to someone I can not do anything and it might even be just bad communication or something…
-
I have put it on my long todo list and made a notice to use 0.91 which I think should still be working.
-
Depends on what "but not good" means? There are so many things that can not be good, so you need to be more precise what result you get and what you do not like about it. My big delta also has 7mm retract and works fairly good. But 7mm retraction c…
-
As I already said, for the cooling fan there are no gcodes to control them. They are controlled by firmware configuration only. The only fan you can control is the filament cooling fan and that gets controlled by M106 and M107 but this is not the f…
-
Check what is in your eeprom settings. If you have old values there these get used until you replace them. M502 M500 woudl copy the one in configuration.h to eeprom or use eeprom editor in host/server.
-
You said when you turn it off it goes on again. The point is you can not turn off a cooling fan. That is only controlled by the firmware. So you might have used the fan wrong or at different places for different things. That would be bad since only …
-
Your results underline my theory. So when you make server not detect busy it just ignores them and works like with older Marlin versions where there was no busy at all (which is why it worked). So now server will not timeout for M109/M190 but will f…
-
Thanks for the notice. I in deed seem to have copy/pasted the wrong checksum here. Have now updated the checksums to correct values.
-
We don't use the C++ interface for performance reasons. But that initalizes the data structure for your display and takes similar values as the constructor. All you need is set UI_DISPLAY_D4_PIN UI_DISPLAY_ENABLE_PIN UI_DISPLAY_RS_PIN With the cor…
-
If your code contains E moves the motor will turn or try to do so. Firmware doe snot know about layer height so that is not likely. What is more likely is a force problem at lower layer height. If nozzle is closer you get more back pressure and the…
-
I think I have found it. You have busy enabled so it ignores slow commands. In my case I have never seen a busy: so it does not assume it is enabled. In your case I bet it has seen busy since connection started so it assumes to see a busy: after 2 s…
-
For me "Unlock Profile and Relaunch" worked just as expected. All positions were recogniced afterwards, but that is with the 7" official pi screen. That doe snot sound like it is coming from chrome - I would bet on the waveshare touch driver. Initi…
-
Server is sending the commands. Marlin sends ok after the command is executed while repetier-firmware returns it already when it is parsed successfully. So that is ok. While heating Marlin sends temperatures which is also normal. The timeout comes f…
-
If table does not match it can of course return wrong temperatures. It will also report wrong temperatures if the resistor in series with themistor is not 4.7K. Adding own table is very easy in config tool. Select User defiined table for your extrud…
-
Ok, I have no idea how to reproduce this. Had some problems when I compiled firmware to 115200 baud and saw I got a timeout during connection, which I fixed for 0.85.2. After that I could also connect with and without ping-pong and you sample with y…
-
Ok, could reproduce it on windows. We switched to IPv4 + IPv6 and that seems to prevent external calls. setting true in Repetier-Server.xml solves the problem after restart. Working on an update with fix.
-
Don't have the printer but RAMPS 1.4 is a cheap replacement if you only need one hotend and one fan. Any other Mega2560 based board would do that is in our list of supported devices, but not all have supported displays so that is something you might…
-
What exactly is the issue? Does the server not respond to external requests or does the pi have no connection to external network/home network? I still can access my pi from external so I need more informations about the source of the problem or how…