0.2 nozzle extruder indicator skipping

Hello,
I encountered similar issues with the 0.2 nozzle and the textured PEI plate (under-extrusion, the nozzle seeming too close to the bed, clicking noises from the extruder…).

I was able to resolve these problems by modifying the following block in the printer settings - Machine G-code:

Original code:

;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==
;curr_bed_type={curr_bed_type}
{if curr_bed_type==“Textured PEI Plate”}
G29.1 Z{-0.02} ; for Textured PEI Plate
{endif}

Modified code:

;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==
;curr_bed_type={curr_bed_type}
{if curr_bed_type==“Textured PEI Plate”}
G29.1 Z{0.06} ; for Textured PEI Plate
{endif}

0.06 might be a bit high, so I will probably try again with 0.04, but feel free to test and adjust accordingly.