Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
When printer is connected you can send any script, if not it would make no sense so will not happen. Not sure what is the case since you want to turn on printer - so can it already communicate because usb delivers power or not. If not, then you need…
-
When you do it over host and hit print it is not stored as model and gets deleted after print is finished. That is the case where I think it might send message before finishing time computation. But it is also the fact that the host time estimate is…
-
M300 requires a timer while normal click does not need it. But I'm not aware of any changes here. What firmware version were you using when it worked?
-
Depends on which action it hapens - homing, G32 or G33. The used coordinates are not allowed with active t probe offset so you need to modify that position to lie inside allowed area.
-
Can you post a gcode where it did not work so I can test if it is gcode related somehow. Do you print directly or do you upload a model and then select it for printing? Maybe that is the difference and message gets send before time computation is f…
-
Server will add script end gcode directly after the slicer script ends, no delay. So you still need to add the 30 G4. Difference is in deed is that that script is printer related and will run after EVERY print (except you abort it).
-
You can only see one of them Home screen has a switch right top to say you want webcam or graph. Works only with up to 4 printers. If you have more browsers would block the app since a webcam stream counts like a download and you can only have 6 in …
-
M501 is not needed when you set data. Firmware knows it changed from writing to it.
-
Some boards use a shared enable signal for several motor drivers. Works good if you do not disable stepper drivers and all drivers have set the correct enable signal. If only one has right enable pin, it would not work until you enable that motor. …
-
At least it would define position for second servo. Keep in mind that servos need some time to position but function returns immediately. So if the servo position does what you need it should work.
-
So if I understood it correctly you moved steppers and board with firmware so nothing changed on that side. Speed for normal move sis determined by host stoftware. Could it be that the new frame has high friction making steps fail?
-
Where you want. Server does not know end code of slicers so it is just handled as normal commands and send. After that it sends the end code from the scripts. I personally would add it to the scripts end code so you can change it later without need…
-
https://github.com/repetier/Repetier-Firmware/tree/master/src/SampleEventSystems/Makers Toolworks I2C Led Stripe hope it still works. For firmware V2 I plan a easier solution where you can derive from a base class and just run your logic.
-
Thanks, have fixed the message. Just forgotten to delete it.
-
See repetier.ino for list of gcode commands. G30 can in 1.0 adjust z also for 3d printers you just home using z probe if configured right. That makes more sense with cnc. G32 positions are stored in eeprom and can be changed using the eeprom editor…
-
1.0l.0 is now also declared stable which is why you see now such a difference between github. 1.0.0 is now in master branch. Your testing may be misleading if firmware hangs. If you need to be sure a line was passed you need to add a delay afterwar…
-
Sure, https://www.repetier-server.com/version-comparison/ Note that not all pro features are already available but these are marked.
-
We compress commands and send 127 byte of commands to firmware. So when your external command runs the print would not be finished and could take a minute to finish. G4 waits for end of moves but is not enough to fill queue so we just send so much t…
-
There is a free 2 week trial for pro. And more only pro function will follow in future.
-
Ok, first you can copy marlin.xml and then in server you have another firmware to select from. This is bette rif you have other printers working well. Your log ends where it gets interesting. Looks like it did not like how M117 adds checksum, which…
-
If you have repetier-firmware you can get settings from firmware in printer configuration and the red marks should disappear. Bed size and position must be set indivisually. Remember that server can only print gcodes, so you need to slice models fi…
-
Yes, but remember that the printer caches commands. So add 30 times G4 P1 and then your shutdown script. YOu might want to wait maybe a bit longer if fans need to cool down extruders first. In that case add one more G4 at the beginning G4 Sseconds
-
This error is not server related. It happens when you start slicing and host should call curaengine. So question is more what you change din curaengine settings to get this error. First you could delete old curaengine settings. Go to workdirectory …
-
somehow yes. You need your own control logic that queries if printer is idle and after some time shuts down printer. You can do this as external software that uses server web api to query printer state or as a lua module inside, also that might get …
-
What firmware version are you using? Haven't changed gcode.cpp for quite a while, so should be the same if you use 1.0.0 or dev version. The function will always return if you reach AfterLoop - there is no loop that can block it. Maybe you have no…
-
Which software and version was the sender? Host or server? What is the time prediction for your print in it? Maybe there is something in the code confusing time computation like homing at the end of print, which at least was a problem.
-
The error happens on communication errors. Why half part works and other not I can not say. Maybe when it happens it never gets back to error free? Would need to see where it start as log with all content being send and received and firmware and set…
-
What are you trying to say? Are you now using hardware SPI? That can easily cause interference with sd card. Maybe that causes the hang.In next firmeare version we therefore want to switch completely to arduino SPI library instead of having a mix.
-
One thing I want to add in server is more option for RTS/DTS handling. Currently server toggles these signals to reset printers. I'm not 100% sure but have the feeling that the handling on some new printers might be different so it might be needed t…
-
Server has firmware definitions in installdir/firmwares. If that version still has the wait bug you should remove ^wait$I also noticed in octoprint thread that line acknowledgements are also wrong (or at least in a new format never used before) usin…