@phaedrux
I found this guide how to adapt the configuration for the version 3 firmware:
https://duet3d.dozuki.com/Wiki/RepRapFirmware_3_overview#Section_Summary_of_what_you_need_to_do_to_convert_your_configuration_and_other_files
I could fix the temperature sensors and heaters but failed with the z probe. First I added it to the z axis which lead to my printer crashing in the endstop continuously. After adding it to E0 the "normal" endstops of my delta printer at the top of each axis work again. I implemented the z probe in the config.g now as follows:
M558 P5 C"e0stop" X0 Y0 Z0 R0.4 H30 F1000 T6000 ; Set Z probe type to unmodulated, the axes for which it is used and the probe + travel speeds
; Z probe parameters
G31 K0 P100 X0.0 Y0.0 Z-0.02
before it was:
M558 P5 X0 Y0 Z0 R0.4 H30 F1000 T6000 ; Set Z probe type to unmodulated, the axes for which it is used and the probe + travel speeds
; Z probe parameters
G31 T1 P100 X0.0 Y0.0 Z-0.02
Due to this change the z probe value is shown in the Web Control again. But it still is permanently triggered with a value of 1000. I could not find any information in the link above why this should happen and what is the source of the error. I did not dare to start a calibration run because I am afraid that the printer will chip down my glass bed while misreading the z probe sensor.
Also I am a little bit afraid to continue updating after this 3.0 version because the linked guide above says that from 3.01 on I have to define my fans with the M950 command and the pins they use. But without disassembling my whole printer setup I have no idea which pins they use and would need to try them out until the correct fan is spinning. Is there a way to read out the pins for the automatically detected fans in 3.0?