Chris
Chris
RRCRat Rig Community [Unofficial]
Created by Chris on 4/3/2025 in #ratos-support
moving the points for z-tilt
Ahhh thank you. That was what I was searching for. TBH it was 2 in one question. First of all if it is correct and 2nd how it is defined right now. This is the config for the 500: points: 30,30 250,460 470,30 Means the actual points are 30mm from the edges. And my suggestion is 50mm off the edges. Ok thx 🙂
10 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 4/3/2025 in #ratos-support
moving the points for z-tilt
Ok cool, but my question was how it is defined right now. I haven’t found the points the printer is using ok the standard config….
10 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/28/2025 in #ratos-support
How to limit the part cooling fan max power on IDEX printers?
is it the macro i shared already?
19 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/28/2025 in #ratos-support
How to limit the part cooling fan max power on IDEX printers?
its a personal workaround. its more likely to use equal settings on all printers. and thats why i limit the max power to have similar settings for the printers while using the same filament. its just a personal thing.
19 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/28/2025 in #ratos-support
How to limit the part cooling fan max power on IDEX printers?
Yes, if you can tell me what it is, then I am happy. I just found the section part cooling in the files provided by RatOS and that’s why I use the expression [fan] the same as in the Klipper documentary
19 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/28/2025 in #ratos-support
How to limit the part cooling fan max power on IDEX printers?
from another server i got a solution to include a part cooling overwrite: https://github.com/charredchar/Klipper-Macros/blob/main/part_cooling_override.cfg however, i dont want to include macros i dont understand.
[gcode_macro M106]
description: Replacement Part Cooling Fan with speed control
rename_existing: M99106
variable_max_fan: 255.0
variable_manual_fan: 0
variable_offset_percent: 1.0
gcode:
{% set vars = printer["gcode_macro M106"] %}
{% if vars.manual_fan == 0 %}
{% if 'S' in params %}
{% set speed = params.S|float %}
{% set adjustedS = speed * offset_percent|float %}
{% if adjustedS > vars.max_fan %}
{% set adjustedS = vars.max_fan %}
{% endif %}
M99106 S{adjustedS}
{% endif %}
{% else %}
{% set adjustedS = vars.max_fan %}
M99106 S{adjustedS}
{% endif %}


[gcode_macro PART_COOLING_OVERRIDE]
description: Set max fan speed, offset fan speed or override it to manual control
gcode:
{% set client = printer['gcode_macro _CLIENT_VARIABLE'] %}
{% set MAX_FAN_P = params.MAX_FAN | default(100) | int %}
{% set OFFSET_P = params.OFFSET_PERCENT | default(100) | int %}
{% set MANUAL_FAN_P = params.MANUAL_FAN | default(0) | int %}
{% set M = MAX_FAN_P/100*255|float %}
{% set P = OFFSET_P/100|float %}
SET_GCODE_VARIABLE MACRO=M106 VARIABLE=max_fan VALUE={M}
SET_GCODE_VARIABLE MACRO=M106 VARIABLE=offset_percent VALUE={P}
SET_GCODE_VARIABLE MACRO=M106 VARIABLE=manual_fan VALUE={MANUAL_FAN_P}
RESPOND TYPE=command MSG='Updated Part Cooling Fan settings'
[gcode_macro M106]
description: Replacement Part Cooling Fan with speed control
rename_existing: M99106
variable_max_fan: 255.0
variable_manual_fan: 0
variable_offset_percent: 1.0
gcode:
{% set vars = printer["gcode_macro M106"] %}
{% if vars.manual_fan == 0 %}
{% if 'S' in params %}
{% set speed = params.S|float %}
{% set adjustedS = speed * offset_percent|float %}
{% if adjustedS > vars.max_fan %}
{% set adjustedS = vars.max_fan %}
{% endif %}
M99106 S{adjustedS}
{% endif %}
{% else %}
{% set adjustedS = vars.max_fan %}
M99106 S{adjustedS}
{% endif %}


[gcode_macro PART_COOLING_OVERRIDE]
description: Set max fan speed, offset fan speed or override it to manual control
gcode:
{% set client = printer['gcode_macro _CLIENT_VARIABLE'] %}
{% set MAX_FAN_P = params.MAX_FAN | default(100) | int %}
{% set OFFSET_P = params.OFFSET_PERCENT | default(100) | int %}
{% set MANUAL_FAN_P = params.MANUAL_FAN | default(0) | int %}
{% set M = MAX_FAN_P/100*255|float %}
{% set P = OFFSET_P/100|float %}
SET_GCODE_VARIABLE MACRO=M106 VARIABLE=max_fan VALUE={M}
SET_GCODE_VARIABLE MACRO=M106 VARIABLE=offset_percent VALUE={P}
SET_GCODE_VARIABLE MACRO=M106 VARIABLE=manual_fan VALUE={MANUAL_FAN_P}
RESPOND TYPE=command MSG='Updated Part Cooling Fan settings'
can someone please help me on this concern?
19 replies
RRCRat Rig Community [Unofficial]
Created by Champ180 on 3/26/2025 in #ratos-support
How to print gcode that is not from a slicer?
add this to your printer.cfg:
allow_unsupported_slicer_versions: True
allow_unsupported_slicer_versions: True
4 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/27/2025 in #ratos-support
unload macro moving out of range
so, the solution is: always M84 (turn off the motors) after set kinematic position
14 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/27/2025 in #ratos-support
unload macro moving out of range
yes, i am aware of that. i guess the error came because the M84 was not done before doing anything else. set kinematic position was just the fastest way to move the bed down.
14 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/27/2025 in #ratos-support
unload macro moving out of range
ok, so this error appears only because i havent done the M84 command after moving down the printbed?
14 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/22/2025 in #ratos-support
Mirror/Copy mode and cancel print not working
could maybe considered as a feature for a future updated RatOS. but i guess the priority is very low for this kind of feature. firstly we have to eliminate all bugs 😉 and i probably found another one which will be discussed in another post.
302 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/22/2025 in #ratos-support
Mirror/Copy mode and cancel print not working
everything works now how it should. so the variable is now fixed and you can use it with a primeblob and without. everything is now how it should be according to the guide: https://os.ratrig.com/docs/configuration/adaptive-meshing/#adaptive-prime-blob-configuration
302 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/22/2025 in #ratos-support
Mirror/Copy mode and cancel print not working
Solution for the IDEX 500 Copy/mirror mode issue for RatOS 2.1.0 RC3: - include this file into printer.cfg - set variable_nozzle_priming to False --> the printer will print without a primeblob. --> set the variable to "Primeblob" and it will do the primeblob bug fixed.
302 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/22/2025 in #ratos-support
Mirror/Copy mode and cancel print not working
i would say: bug fixed
302 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/22/2025 in #ratos-support
Mirror/Copy mode and cancel print not working
it works without the primeblob
302 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/22/2025 in #ratos-support
Mirror/Copy mode and cancel print not working
ok, set the variable to false and try again
302 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/22/2025 in #ratos-support
Mirror/Copy mode and cancel print not working
you haven't told me^^
302 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/22/2025 in #ratos-support
Mirror/Copy mode and cancel print not working
ahhh so i have to set it to false?
302 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/22/2025 in #ratos-support
Mirror/Copy mode and cancel print not working
It’s a primeblob!
302 replies
RRCRat Rig Community [Unofficial]
Created by Chris on 3/22/2025 in #ratos-support
Mirror/Copy mode and cancel print not working
However…. Not really….
302 replies