@phaedrux Which fan should be which? Should hotend cooling fan be fan 1 and part cooling fan be 0? I am still learning Reprap and using the configurator, coming from Marlin and Klipper. Thank you for your help
I switched cura to say fan 1 was the part fan and it functions fine turning it on now which it did not before.
As far as the homing error, it seems to happen randomly at the start of prints occasionally, but not every time it homes. a second home always resolves it.
This is an FL Sun Super Racer, with a build volume of 330 mm by 260. The carriage travel section was unclear to me in the configurator so I may have gotten that wrong.
; homedelta.g
; called to home all towers on a delta printer
;
; generated by RepRapFirmware Configuration Tool v3.3.10 on Tue Jun 21 2022 15:09:53 GMT-0400 (Eastern Daylight Time)
G91 ; relative positioning
G1 H1 X337 Y337 Z337 F2500 ; move all towers to the high end stopping at the endstops (first pass)
G1 H2 X-5 Y-5 Z-5 F3600 ; go down a few mm
G1 H1 X10 Y10 Z10 F250 ; move all towers up once more (second pass)
G1 Z-5 F6000 ; move down a few mm so that the nozzle can be centred
G90 ; absolute positioning
G1 X0 Y0 F6000 ; move X+Y to the centre
; bed.g
; called to perform automatic delta calibration via G32
;
; generated by RepRapFirmware Configuration Tool v3.3.10 on Tue Jun 21 2022 16:50:21 GMT-0400 (Eastern Daylight Time)
M561 ; clear any bed transform
G28 ; home all towers
; Probe the bed at 10 peripheral and 6 halfway points, and perform 8-factor auto compensation
; Before running this, you should have set up your Z-probe trigger height to suit your build, in the G31 command in config.g.
G30 P0 X0 Y130.9 H0 Z-99999
G30 P1 X76.94 Y105.9 H0 Z-99999
G30 P2 X124.49 Y40.45 H0 Z-99999
G30 P3 X124.49 Y-40.45 H0 Z-99999
G30 P4 X76.94 Y-105.9 H0 Z-99999
G30 P5 X0 Y-130.9 H0 Z-99999
G30 P6 X-76.94 Y-105.9 H0 Z-99999
G30 P7 X-124.49 Y-40.45 H0 Z-99999
G30 P8 X-124.49 Y40.45 H0 Z-99999
G30 P9 X-76.94 Y105.9 H0 Z-99999
G30 P10 X0 Y65.4 H0 Z-99999
G30 P11 X56.64 Y32.7 H0 Z-99999
G30 P12 X56.64 Y-32.7 H0 Z-99999
G30 P13 X0 Y-65.4 H0 Z-99999
G30 P14 X-56.64 Y-32.7 H0 Z-99999
G30 P15 X-56.64 Y32.7 H0 Z-99999
G30 P16 X0 Y0 H0 Z-99999 S8
; Use S-1 for measurements only, without calculations. Use S4 for endstop heights and Z-height only. Use S6 for full 6 factors
; If your Z probe has significantly different trigger heights depending on XY position, adjust the H parameters in the G30 commands accordingly. The value of each H parameter should be (trigger height at that XY position) - (trigger height at centre of bed)
Slicer:
G21 ; millimeter units
G90 ; absolute coordinates
M82 ; E absolute
M140 S{material_bed_temperature}
M104 S{material_print_temperature}
M190 S{material_bed_temperature}
M109 S{material_print_temperature}
G28 ; home axis
G29 S1 ; enable mesh leveling
; Lower nozzle and move to start position
G1 Z150
G1 X-130 Y0 Z0.4 F3000
; Extrude about 40 mm by printing a 90 degree arc
G3 X0 Y-130 I130 Z0.3 E40 F2700
; Retract and move nozzle up
G92 E0
G1 E-1.5 F3000
G0 Z0.5
G1 E0 F1000