"Echo: Z Probe past Bed" Need help with coding, please

Hello all, my first post here!
Because a few months ago I added a 3D Touch sensor to my Artillery Sidewinder X1, I also updated the TFT firmware.
I did this according to instructions, found on Thingiverse, and used firmware kindly provided by user Digant.

After I had, when tried to home, the error: “Echo: Z Probe past Bed”.
I searched the web for info, and after some time (days) I found some different ideas how to fix this by changing the code.

Someone from an other forum found this on Redit:
…I’ve just spent a few days sifting through the graveyard of facts that is the internet. What fixed my problem was adjusting the z_safe_homing x and y points.

I’m using the Bltouch clone called 3dtouch from wavgat.
I uncommented:

#define BLTOUCH

This was my probe offset based off of where I mounted the probe.

*#define NOZZLE_TO_PROBE_OFFSET *

{ -29.76, 12.8, 0.3 }

This z_safe_homing worked to clear the “Z Probe Past Bed”

#define Z_SAFE_HOMING_X_POINT (0)

#define Z_SAFE_HOMING_Y_POINT (16)

I have to say, I’m a a layperson with coding. I was able to do some adjustments on an Arduino board some day in past, by a step by step instruction, but thats all.

But in this case, the files look very different. I opened the config.ini with VisualStudioCode, but there all looks very different, and I couldn’t find one of the #define lines.

I have to say that I’m more of a user than an expert when it comes to 3D printing, so I’ll be happy if you answer in a way that a layperson can understand.

Can anyone help fix the problem?