Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
These routines do not use the normal stepper handling. Instead they are execute din main thread with simple delays, meaning no acceleration and with bad luck even short interruptions. So the speed for the motors must be set quite low even if they ca…
-
Ok, first I see your square. That is a printer visualization demo. You can now add printer shapes as stl and you have enabled it in the printer shape tab at the bottom. Just disable checkbox. My guess is that you have set Home Z to 0 instead of pri…
-
I prefer more not marking purges outside print area as part of print area, so it does not appear any more. After all it is an important information that your print will fail. Only shortcoming was that I did not consider users extruding outside print…
-
What I need is the content of the Console in lower right edge. Maybe it contains something understandable, but I need the complete content, so please copy and paste the text. The image shows only a small part. Often the error also starts with a long…
-
"Updated to new image and now it changes IP on me after time." what do you mean? It gets IP from dhcp server, so set it to fixed ip in dhcp server to keep same ip. We now leave Network Manager from linux more room and wait for it to do all work. On…
-
Your object sounds wrong. Can you make a screenshot so I know what you mean. But that does not change z problem. 1. test if you can send manually a G1 Z100 F6000 and if that moves. 2. If that works check in printer shape tab you set homing positio…
-
Ok, I understand. So the unexpected disconnect seems to cause the crash. Unfortunately I can not reproduce it. I get a message that the IP is not available any more, connection is closed and I can continue. Does the error window contain any more det…
-
These are also for Arduino Mega 2560 boards which have them. Not sure the due has more, but you can check pinout and check where these pins then come out.
-
That looks like something on the javascript side has gone wrong. When I try this it looks normal. How can I reproduce this? If you open javascript console in the browser, what error message does it show?
-
You can not shutdown the server from Repetier-Host if it is not running on the same machine (Stop local server). So this means you are shutting down the server on your windows machine and not the one on the Raspberry! Or do you mean shutdown in the…
-
here it looks good. No reason it should not run. But it is important that it starts at beginning of the line, no spaces or tabs before the @ sign or it will not be recogniced. In my tests i also added it before G92 E0
-
Just made a test print with @pause with and without comment and print stopped at both times, so the feature seems to still work. Did you print with sd card maybe? It is required to print with host or server to do the pause.
-
Ask vincent from Sparklab for the adapter to put sparklab LCD on the LCD port instead. Not sure if he still has them available, but that frees the expansion port.
-
What should this code do? If a extruder has a lower pwm then bed then you lower the bed by that value? Wouldn't it be better to add power consumption. So if a extruder has 40W and bed 160W you compute extruder power EP = sum(extruder_pwm * 40 / 256)…
-
When host connects to server the connect button only shows if connection to server is successfull, but not if the server has connected to printer. User server frontend to configure connection parameter. Most important is to select the right firmware…
-
If you check schematics you see GND - 4.7K - Pin to ADC - Thermistor - 5V GND and 5V may be other way around not sure here. The special ADC pin on the side goe sjust directly to ADC input, no other wires connected. Just like with the stepper drive…
-
What does the ESP board need? Can't you just plug it into the usb serial connector?
-
If you login with ssh you can see cpu load with "top". With 4 printers alone it should not be very much. I think it is not the cpu that limits you. Webcam will add much traffic, so that is in deed a problem if you watch all together. But webcams wi…
-
Above commands apply to all linux versions where it happens. Important is to do it when crashed and not after restart. Regarding licenses we can reset them if required from such problems. They are not lost. Just drop us a mail and we reset licenses…
-
Since server runs on mac you could use a pure lsicer to slice on mac and send it to server with browser frontend on http://localhost:3344 Server slicer is still in progress.
-
Ok, I'm a bit confused by the data // Direction pin of extruder 0#define THERMOCOUPLE_1_PIN 1 // Step pin of extruder 0 #define THERMOCOUPLE_2_PIN 0 // Enable pin of extruder 0 #define THERMOCOUPLE_3_PIN 10 The comments tell exactly which …
-
Different pulleys change steps per mm. Just go to eeprom editor and recompute the value and set it.
-
I don't know why you think SKIP_M190_IF_WITHIN would help. It's aim is to not wait for target temperature to be reached if you are by SKIP_M190_IF_WITHIN degree close to it. It does not change when bed goes on or which temperature. PDM is set in co…
-
No, you just do not know that hitting shift is the camera move options. So hold shift and move with mouse. In fact in rotate mode you can do everything with the right key pressed, even moving objects with right mouse button.
-
Where do you connect them? RADDS has only one official pin at the side for the board. The thermistor pins can not be used for this as they share a 4.7K resistor in series so you have a voltage divide there. There are 3 more pins you can use if you …
-
NEVER use analogRead - We use ADC interrupt for reading analog values internally while arduino does not disabling interrupt or at least disturbing the read procedure. You have to use a variable instead that gets set. My advice is to use the current …
-
17:44:39.549: Unknown command:N23999 G32 S2 means you have no autoelevel support compiled in. With G33 make sure to use the right z probe height. Ideally the average is around 0 of all corrections especially if not using G32. Then adjust z length …
-
G1 Z15 F{Z_TRAVEL_SPEED} is the 15mm raise after homing. Some beds can melt if you have long contact with extruders, so heating at bottom height is bad for them. You would destroy the surface. If your bed can handle it, fine.
-
Same as 2 motors. Enable "Mirror motor signals to third stepper driver (FEATURE_THREE_ZSTEPPER) in config tool and select 3rd stepper socket from dropdown for 3rd stepper driver.
-
No there is no real power management to reduce this effect. In fact all heaters get tuned 100% for PWM at the same time and only depending on PWM they get disabled depending on PWM setting. Normally no big problem since most devices also have some …