top of page

Forum Comments

Linux version
In Makertech CURA
Adrián Chacón Ordóñez
Oct 30, 2019
Thanks for this =)
0
Linux version
In Makertech CURA
Adrián Chacón Ordóñez
Aug 22, 2019
Great! no worries, glad to have you back.
0
0
Printing stops
In General Discussion
Adrián Chacón Ordóñez
Aug 21, 2019
I got an idea of what is happening, at-least when almost all your prints fails. Its gonna sound stupid at first but bear with me and comment about it; Did you make a tower temperature test? using the extension -> post-processing menu. And did you erase this configuration after? For me this (almost) fixed the constant failures in the prints. I have made like 10 prints with only one failure(obviously the longest print, after 9h) after cleaning this configurations. Maybe leaving this configuration after changing the model and/or closing the program causes weird behaviors. Hope this help! I also added some damper to the motors, did some necessary adjustments to the z axes and installed a raspberry zero for debugging. I was getting the same error as @Robert Steele in octoprint, it was necessary to select an option in advance settings because octoprint gets disconnected and a pop-up window won't let you copy the error in the terminal, and remember to click auto-scroll to get the latest messages in case you wanna debug the errors. The errors in the octoprint terminal gave me a hint of what was happening because of this line: Recv: ok Recv: T:235.44 /245.00 B:75.13 /75.00 @:85 B@:127 Recv: ok The first value was "235.~ /235.00" at the beginning of the print but changed to "235.44 /245.00". This indicated that my extruder was at 235 but expected to be at 245, so that made me remember the temperature tower tests I did. I think that there are other things that are causing the stops, maybe I will make some threads about the touchscreen errors that seem related. I will also try to connect cura, octoprint and my PC to the printer in order to debug the problems. Maybe separating the freezing problems in other threads with more information will help us run this printer nice and smooth! =)
0
0
why does the print head go over the edge
In Assembly
Adrián Chacón Ordóñez
Aug 12, 2019
So gcode...l its a kind a programming language but more primitive. Its like giving specific instruction to the printer with code difficult to recognize, but it doesn't have much logic like general programming will have. Gcode programs are read once from top to bottom by the machine, no repeating code neither thinking by the 3d printer. Stage 11, step 5. Here you can see the machine settings menu. To the bottom left the gcode executed before the printer stars and to the bottom right the code that is run after the print stops. You can add all sort of crazy stuff in here. https://makertech-3d.dozuki.com/Guide/Stage+11+-+First+Print/17?lang=en Lets analyze the following gcode, this is my starting gcode and should me equal to most people: ;----------Proforge 2S Start G-code---------- M201 X900 Y900 Z50 E5000 M140 S{material_bed_temperature_layer_0} ;Set Bed Temp M104 S{material_print_temperature_layer_0} T0; Heat up Hotend 1 (T0) M109 S{material_print_temperature_layer_0} T0; Wait for Hotend 1 (T0) G28 ;Home G29 ;Autolevel Bed G1 F8000 X10 Y3 ;Move hotend to bottom left corner G1 Z3 ;Move Hotend to assumed Z Home ; ---Unique to your setup--- G92 Z0.47 ;Set Z-offset in 0.1mm incriments (increase if first layer too high, decrease if too low) ; -------------------------- G1 Z{layer_height_0} ;Set to first layer height M82 ;absolute extrusion mode G92 E0 ;Zero Extruder G1 F1500 X290 E12 ;Prime Hotend ; ----------Proforge 2S Start G-code---------- Pretty strange code isn't it? But thanks to Makertech that made a comment in each line we can figure this out faster, check this part of the code: G29 ;Autolevel Bed G1 F8000 X10 Y3 ;Move hotend to bottom left corner G1 Z3 ;Move Hotend to assumed Z Home First line seems to call to the autolevel function, this will trigger the 9 point readings. Question, is the probe(blue thing) always on top of the bed surface when you are printer autolevels? Second line is the code we wanna change, this code tells the extruder to move to this point, somehow in your setup Daryl this is making your extruder go too far. So you have to investigate in the internet what each of this codes "G1 F8000 X10 Y3" means and modify the numerical values to a value that works for you. You can test this codes with pronterface remember, Stage 10: https://makertech-3d.dozuki.com/Guide/Stage+10+-+Programming/16?lang=en So test playing with this code in pronterface and if you find out values that work for you then change the machine settings so you get a correct test line before printing. Unless you like living a dangerous life research the codes before using them in pronterface. I don't really know gcode, you have to study it and solve the problem yourself =), but I can guide you if you have more doubts or problems, just ask. And if someone knows gcode and what I just said is wrong then please correct me hehe xD.
0
0
Printing stops
In General Discussion
Adrián Chacón Ordóñez
Aug 12, 2019
I just left you a quick comment in the thread you made.
0

Adrián Chacón Ordóñez

More actions
bottom of page