The way to query it is read your configuration.h file and search for it. 63 is just the example, where you connected it really depends on board and place used.
Are you using this
https://github.com/luc-github/Repetier-Firmware-4-Davinci<br/><br/>which is the only reptier based DaVinci solution I know of? From this all have a z probe
#define Z_PROBE_Z_OFFSET_MODE 0
#if DAVINCI > 0
#define FEATURE_Z_PROBE true
#define Z_PROBE_PIN 117
#else
#define FEATURE_Z_PROBE false
#define Z_PROBE_PIN -1
#endif
#define Z_PROBE_PULLUP 1
#define Z_PROBE_ON_HIGH 0
#define Z_PROBE_X_OFFSET 0
#define Z_PROBE_Y_OFFSET 0
#define Z_PROBE_BED_DISTANCE 5.0 // Higher than max bed level distance error in mm
// Waits for a signal to start. Valid signals are probe hit and ok button.
// This is needful if you have the probe trigger by hand.
#define Z_PROBE_WAIT_BEFORE_TEST 0
/** Speed of z-axis in mm/s when probing */
#define Z_PROBE_SPEED 1
#define Z_PROBE_XY_SPEED 30
#define Z_PROBE_SWITCHING_DISTANCE 5 // Distance to safely switch off probe after it was activated
#define Z_PROBE_REPETITIONS 1 // Repetitions for probing at one point.
/** The height is the difference between activated probe position and nozzle height. */
#if MODEL==0
#define Z_PROBE_HEIGHT 0.28
#else
#define Z_PROBE_HEIGHT 0.54
#endif
The original DaVinci is not using our firmware. This is only when someone hacked it to use that firmware.