Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Not sure as I do not have that adapter. I think you have the one for the display port on the radds? There are some resistors to solve a problem with older radds boards to give them the right state. Newer radds (1.4 or higher I think) have a differen…
-
I think he means servo always stays at max no matter which position it is set to. What is the servo behaviour if it gets no signal at all? I mean move to center manually and add power with no signal. In your gcode you disable the signal after 500ms…
-
Check extruder.cpp and search for SUPPORT_MAX6675 to see where to insert and how to do it. This asks over spi for temperature, so you can do it with a new sensor type and query your arduino mini the same way to return 1 temperature. That might be th…
-
Yes, it should only unset the extruder offset which is stored in eeprom. See implementation here: case 131: { // G131 Remove offset float cx, cy, cz; Printer::realPosition(cx, cy, cz); float oldfeedrate = Printer::feedrate;…
-
I'm not so sure it is the same. A normal cartesian has x move and x motor stalls which gets tested as end stop. For core xy always both motors are active so which is then the x or y end stop. Do they simply stall both same time, are there tests for …
-
Yes, also the pause will only be the analyze, the render will happen while printing. So it will only be a few seconds before it starts printing.
-
Have you set filament quality on level 2 (medium I think). The higher the quality the more memory you need. Also a 3 hour print normally should not fill 16gb ram. Or do you run other software using much video memory? So far I could not detect a memo…
-
Have you already found out how it is solved on the electronic side? If you can say how it works I can better say what you can use it for.
-
You are right, V1 and V2 are completely different. V2 uses the A axis for right extruder, which also allows things like mirrored dual x extrusion and different steps per mm. I guess you are also right that the DUAL_X_LEFT_OFFSET are not used. Offse…
-
Why do you think opengl is out of memory if it does crash without report. You should always see either a popup window with details or have a entry in windows events. Just as a tip to prevent ruined prints. Install Repetier-Server and connect it to …
-
Did you test with hot extruder? Extruder will only move if it is hot or you have enabled cold extrusion (M302 S1).
-
Homing always homes both but you have #define DUAL_X_RESOLUTION 1 so I guess it moves but resolution is highter then 1step/mm as you said it is. Check what you have in eeprom for it.
-
No, server is written to run everywhere and does not use board specific function on it's own. So as long as you do not use @execute commands that set pins, server will not do it.
-
Some are, some not. Search for UI_STATUS to see all versions coming from firmware. The rest comes from host.
-
Latest versions have projects. A project is just a printer independent store. Mainly meant for projects with stl files so you can add comments and have them at one place with easy search functions. The point is, you can also store gcodes there and m…
-
Can you provide full error report so I can see from where it comes. It is an error in windows function so to catch it I must know the part in host that needs to handle the problem.
-
x is alway the carriage that holds the active extruder. So select second extruder to move that one. Also note that in lazy mode it might only move after an extrusion move.
-
That switch does not exist in iOS 12 any more. Now it only shows the Trust Store Version. LetsEncrypt is fine if your printer is accessible from internet, if only accessible in intranet you can not set it up except maybe the dns version. Or does ca…
-
If you home xy min then firmware limits position to x/y min plus x/y length. All values are stored in eeprom so just open eeprom editor in repetier-host and adjust coordinates. Set xy min so that 0 is over the bed and reduce xy length so that it is …
-
First make sure the names contain only ascii chars. Anything else can cause problems. Then check the log what command did host send, what did firmware respond.
-
You can add messages using M117 but they may get overwritten by status messages or print progress if enabled. So you can only add some but not change existing messages.
-
That seems to be the problem. I have debugged it on iOS 12 and it is not opening the websocket, resp. it gets an error: WebSocket network error: The operation couldn’t be completed. (OSStatus error -9807.) Trying to open a websocket manually in jav…
-
Are you sure the webcam disconnects and not the connection to the server. I mean if the frontend shows "Connection lost trying to reconnect" it is the internet connection to the server that has been broken. How does it work if the webcam is not sho…
-
Ok, have updated dev version with a fix that should work. Please test and report if it now works as expected.
-
Sounds like you have multiple tests per point. For that there is a second distance that is normally much smaller so you can test faster. The error says that the repeated test did not untrigger z so it wanted to start before probe was low. So increas…
-
What is the error in Pruse Edition? I can slice normally. But you need to configure it first or missing profiles will cause an error. Sometimes I have seen that old profiles also could crash slic3r. 0 as nozzle width will just use the one set in pr…
-
Problem ist vermutlich das beide die gleiche id haben und standardmäßig webcams nach id angezeigt werden. Mit ssh mal die Datein /usr/local/Repetier-Setup/etc/webcam.conf bearbeiten. Unten steht wie man das auf by-path umstellt. Danach bitte immer i…
-
To which version did you downgrade?
-
Your problem is you have 2 networks. The pis with mac and the wifi network. The only device knowing about both is the mac book, so that is why it can do anything. The wifi network only sees the mac. Easiest solution might be to add nat to the mac so…
-
I think jam/filament sensors were added in 0.92 first time. So only solution in 0.91 is to add some c++ code to test a pin and pause it. Alternatively upgrade to stock firmware but then you will use the printer specific modifications, also it would …