Luigivaba
Luigivaba
RRCRat Rig Community [Unofficial]
Created by Vindikkator on 7/21/2024 in #fix-my-print
Pillowing on very top surface
You can increase the density of the infill towards the ceiling, allowing you to print with sparse infill and still get great surfaces.
18 replies
RRCRat Rig Community [Unofficial]
Created by popoblito on 7/19/2024 in #fix-my-print
Underwhelming first layer after calibration
You should also order orca slicer to increase the Line diameter for the first layer to about 125% and increase first layer thickness to 0.4. That compensates a lot of deviations in the first layer.
28 replies
RRCRat Rig Community [Unofficial]
Created by Mr. Hye on 4/28/2024 in #fix-my-print
Rough artifacts on surface
Yeah, expecially with cheaper nozzles I have already had experiences like this. May also be a bad section of filament, you already measured the diameter?
61 replies
RRCRat Rig Community [Unofficial]
Created by Mr. Hye on 4/28/2024 in #fix-my-print
Rough artifacts on surface
Well than it is some sort of abraision. Check the nozzle, it may be clogged or worn out.
61 replies
RRCRat Rig Community [Unofficial]
Created by Mr. Hye on 4/28/2024 in #fix-my-print
Rough artifacts on surface
I had this problem in the past: Its a combination of too high flow throught the hotend, too high flow in the slicer and poor cooling. Make a flowtest and reduce the flow in the slicer, check the part cooling and print the part rotated to check whether it is dependent on the orientation in the printer and control the part cooling.
61 replies
RRCRat Rig Community [Unofficial]
Created by Luigivaba on 3/28/2024 in #fix-my-printer
Move out of range despite no move out of range in G-Code
Only solution is to move 1 Element in the slicer and regenerate the G-Code.
4 replies
RRCRat Rig Community [Unofficial]
Created by Luigivaba on 3/28/2024 in #fix-my-printer
Move out of range despite no move out of range in G-Code
RESPOND MSG="Checking probe status..." {% if _ASSERT_PROBE_STATE == 0 %} M117 Stowing probe, because why exactly? RESPOND MSG="Stowing probe, because why exactly?" STOW_PROBE {% endif %} # Absolute positioning G90 # Relative extrusion M83 # Lift to start print Z height G0 Z{z} F{z_speed} # move close to blob position along the edge of the bed G1 X{x_start} F{speed} G1 Y{y_start + (15 * y_factor)} F{speed} # Lower to blob extrusion height G1 Z0.5 F{z_speed} # Move to final position horizontally G1 Y{y_start} F{speed} # Extrude a blob G1 F60 E20 # 40% fan M106 S{fan_speed} # Move the extruder up by 5mm while extruding, breaks away from blob G1 Z5 F100 E5
# Move to wipe position, but keep extruding so the wipe is attached to blob G1 F200 Y{y_start + (25 * y_factor)} E1 # Go down diagonally while extruding # Broken down in z moves under 2mm as a workaround for a tuning tower test. # The tuning tower command thinks a new print has been started when z moves over 2mm and aborts. G1 F200 Y{y_start + (30 * y_factor)} Z3.8 E0.5 G1 F200 Y{y_start + (35 * y_factor)} Z2.6 E0.5 G1 F200 Y{y_start + (40 * y_factor)} Z1.4 E0.5 G1 F200 Y{y_start + (45 * y_factor)} Z0.2 E0.5 # 0% fan M106 S0 # small wipe line G1 F200 Y{y_start + (50 * y_factor)} Z0.2 E0.6 # Break away wipe G1 F{speed} Y{y_start + (100 * y_factor)} RESTORE_GCODE_STATE NAME=prime_blob_state
4 replies
RRCRat Rig Community [Unofficial]
Created by Luigivaba on 3/28/2024 in #fix-my-printer
Move out of range despite no move out of range in G-Code
[gcode_macro PRIME_BLOB] description: Prints a primeblob, used internally, if configured, as part of the START_PRINT macro. Slower than PRIME_LINE but much more effective. gcode: SAVE_GCODE_STATE NAME=prime_blob_state M117 Priming nozzle with prime blob.. RESPOND MSG="Priming nozzle with prime blob.." {% set speed = printer["gcode_macro RatOS"].macro_travel_speed|float * 60 %} {% set z_speed = printer["gcode_macro RatOS"].macro_z_speed|float * 60 %} {% set fan_speed = printer["gcode_macro RatOS"].nozzle_prime_bridge_fan|float %} {% if printer["gcode_macro RatOS"].nozzle_prime_start_x|lower == 'min' %} {% set x_start = 20 %} {% elif printer["gcode_macro RatOS"].nozzle_prime_start_x|lower == 'max' %} {% set x_start = printer.toolhead.axis_maximum.x - 20 %} {% else %} {% set x_start = printer["gcode_macro RatOS"].nozzle_prime_start_x|float %} {% endif %} {% if printer["gcode_macro RatOS"].nozzle_prime_start_y|lower == 'min' %} {% set y_start = 60 %} {% set y_factor = 1 %} {% elif printer["gcode_macro RatOS"].nozzle_prime_start_y|lower == 'max' %} {% set y_start = printer.toolhead.axis_maximum.y - 5 %} {% set y_factor = -1 %} {% else %} {% set y_start = printer["gcode_macro RatOS"].nozzle_prime_start_y|float %} {% if printer["gcode_macro RatOS"].nozzle_prime_start_y|float < printer.toolhead.axis_maximum.y / 2 %} {% set y_factor = 1 %} {% else %} {% set y_factor = -1 %} {% endif %} {% endif %} {% if printer["gcode_macro RatOS"].nozzle_prime_direction|lower == 'forwards' %} {% set y_factor = 1 %} {% elif printer["gcode_macro RatOS"].nozzle_prime_direction|lower == 'backwards' %} {% set y_factor = -1 %} {% endif %} {% set z = printer["gcode_macro RatOS"].start_print_park_z_height|float %} M117 Checking probe status...
4 replies
RRCRat Rig Community [Unofficial]
Created by NutellaBrot155 on 2/3/2024 in #fix-my-resonance
VC 3.1 400 Belt tension
That is kinda normal: Focus on the Belt rolls and check how the belts are moving on the rolls.
8 replies
RRCRat Rig Community [Unofficial]
Created by Luigivaba on 1/22/2024 in #fix-my-printer
Communication loss to DS18B20
Ill set this one on solved for the time beeing.
5 replies
RRCRat Rig Community [Unofficial]
Created by Luigivaba on 1/22/2024 in #fix-my-printer
Communication loss to DS18B20
Ok, ill retry on the klipper Discord.
5 replies
RRCRat Rig Community [Unofficial]
Created by DOAmatrix on 1/11/2024 in #ratos-support
4 pin Fan cant be controlled
Yeah. I see now. No worries: Printer is runnibg smoothely! Next large rebuild Ill think to fix that.
43 replies
RRCRat Rig Community [Unofficial]
Created by DOAmatrix on 1/11/2024 in #ratos-support
4 pin Fan cant be controlled
This would not really help, as the previous aliases do not go away. Even if you use the pin he throws an error even if the prior use for the pin and its alias has expired (i.e. if you use a toolbord you cannot reuse the board fan pin for sth. Else until you decontruct every include).
43 replies
RRCRat Rig Community [Unofficial]
Created by DOAmatrix on 1/11/2024 in #ratos-support
4 pin Fan cant be controlled
Then you have to go through all includes one at a time to understand what you have to put in the printer.cfg and # them all out. This is about 2h of work.
43 replies
RRCRat Rig Community [Unofficial]
Created by DOAmatrix on 1/11/2024 in #ratos-support
4 pin Fan cant be controlled
And so on. You cannot reuse pins that have already been designated in the aliases. This means: You have to mirrior ALL board aliases in use and #-out all the includes
43 replies
RRCRat Rig Community [Unofficial]
Created by DOAmatrix on 1/11/2024 in #ratos-support
4 pin Fan cant be controlled
No description
43 replies
RRCRat Rig Community [Unofficial]
Created by DOAmatrix on 1/11/2024 in #ratos-support
4 pin Fan cant be controlled
No description
43 replies
RRCRat Rig Community [Unofficial]
Created by DOAmatrix on 1/11/2024 in #ratos-support
4 pin Fan cant be controlled
No description
43 replies
RRCRat Rig Community [Unofficial]
Created by DOAmatrix on 1/11/2024 in #ratos-support
4 pin Fan cant be controlled
Ok, I already did exactly that and here is how it looks:
43 replies
RRCRat Rig Community [Unofficial]
Created by DOAmatrix on 1/4/2024 in #german-support
Linear Vibration test interpretation
Der ist gut genug, an dem Sollte es nicht liegen. Schau mal die ganzen Schrauben durch. Prüfe ebenfalls die Wurmschrauben von den Stepper Zahnscheibe.
40 replies