Ghostkeeper

Results 403 comments of Ghostkeeper

Perhaps it's the G28 there. What happens if you remove that? It's very strange that it happens only sometimes. I always saw Marlin as fairly reliable when it comes to...

Sounds like the Ultimaker 2 thinks it is an Ultimaker Original, and therefore expects to get g-code sent to it to direct how hot the nozzle and heated bed must...

If it is a Prusa I3, did you try loading the latest Prusa firmware? You can get them from their site: http://www.prusa3d.com/drivers/

It's very kind to see how proactive you are with coming up with solutions to these problems and sharing them. > Change line one in env_win64.bat to `call "C:\Program Files...

Indeed, it doesn't seem to trigger then. Probably the same cause as https://github.com/Ultimaker/Cura/issues/1344.

I think a good place to start is to copy one of the scripts that is already in that scripts folder. You adding lines should normally not stop Cura from...

> I am happy to give out the script if other users find this useful. If you can make it sort-of generic, I think it'd be nice to merge it...

Doesn't look like anything is wrong with that. To help with debugging, take a look at the logs of Cura, found in `C:\Users\\AppData\Local\low\cura\cura.log`. If a script is not loading properly,...

The file you provided mixes tabs and spaces for indenting. In Python, indentation matters, and tabs are counted as having a width of one character. That's why your script doesn't...

`line` is a variable that's made for the `for` loop and filled with a line of g-code. You can change it, but it won't get updated in the `lines` list....