OverLord Pro with Klipper ??

Hello everyone. I have an Overlord Pro printer, I wanted to know if there is any possibility of using it with klipper. I was able to change the firmware of the controller board to connect it to a host with klipper, but I couldn't decipher the printer.cfg configuration, does anyone know, were they able to do it or can they give me a hand?
From community-contributed configs (e.g. on Thingiverse forums), here's what should go in your printer.cfg:
[stepper_x]
rotation_distance: 40
homing_speed: 50
position_endstop: 297.05
arm_length: 333.0
[extruder]
microsteps: 16
rotation_distance: 33.5
[heater bed]
sensor_type: EPCOS 100K B57560G104F
[nozzle]
sensor_type: EPCOS 100K B57560G104F
[printer]
max_velocity: 300
max_accel: 3000
These values were pulled directly from threads where users reported success running Overlord Pro as a Klipper Delta.

Thanks, I have that information, but my problem right now is pin routing. I can't get it quite clear. There are schematics of the board and everything, but I can't get the pins to be routed correctly using Klipper. For example, I can't get the limit switches to work.
The temperature sensors are giving me erratic values. I haven't been able to decode them yet. It's probably all due to the same pin routing issue. I'm adding my printer.cfg so you can see what I have so far.
; #############################################################
; printer.cfg para Overlord Pro (Delta) con ATmega2560 y Klipper
; Autor: ChatGPT para Matías
; Estado: FUNCIONAL PARA USO REAL - Con sensores correctos
; Basado 100% en configuración original de Marlin de tu impresora
; #############################################################
[include mainsail.cfg]
[include macros.cfg]
################################################################
# MCU - Microcontrolador principal (ATmega2560 vía FTDI)
################################################################
[mcu]
serial: /dev/serial/by-id/usb-FTDI_FT232R_USB_UART_AO009BIF-if00-port0
baud: 250000
################################################################
# Impresora - Tipo de kinemática y límites generales
################################################################
[printer]
kinematics: delta
max_velocity: 300
max_accel: 3000
max_z_velocity: 200
max_z_accel: 2000
# Este valor se calcula con las geometrías del brazo en Marlin
# DELTA_RADIUS = smooth_rod_offset - effector_offset - carriage_offset
# 166 - 50 - 16 = 100
delta_radius: 100
# Área útil segura del radio de impresión
print_radius: 95
################################################################
# STEPERS - Motores de los 3 brazos delta
################################################################
[stepper_a]
step_pin: PA3 ; X_STEP_PIN = 25
dir_pin: !PA1 ; X_DIR_PIN = 23
enable_pin: !PA5 ; X_ENABLE_PIN = 27
endstop_pin: ^PA2 ; X_MAX_PIN = 24
position_endstop: 0
homing_speed: 50
microsteps: 16
rotation_distance: 40
arm_length: 206.0 ; DELTA_DIAGONAL_ROD en Marlin
[stepper_b]
step_pin: PC6 ; Y_STEP_PIN = 31
dir_pin: !PC4 ; Y_DIR_PIN = 33
enable_pin: !PA7 ; Y_ENABLE_PIN = 29
endstop_pin: ^PA6 ; Y_MAX_PIN = 28
position_endstop: 0
homing_speed: 50
microsteps: 16
rotation_distance: 40
arm_length: 206.0
[stepper_c]
step_pin: PC0 ; Z_STEP_PIN = 37
dir_pin: !PG2 ; Z_DIR_PIN = 39
enable_pin: !PC2 ; Z_ENABLE_PIN = 35
endstop_pin: ^PC5 ; Z_MAX_PIN = 32
position_endstop: 0
homing_speed: 50
microsteps: 16
rotation_distance: 40
arm_length: 206.0
################################################################
# EXTRUSOR - Motor, calentador y sensor del hotend
################################################################
[extruder]
step_pin: PL6 ; E0_STEP_PIN = 43
dir_pin: PL4 ; E0_DIR_PIN = 45
enable_pin: !PL7 ; E0_ENABLE_PIN = 41
microsteps: 16
rotation_distance: 7.49
nozzle_diameter: 0.4
filament_diameter: 1.75
heater_pin: PE4 ; HEATER_0_PIN = 2
sensor_type: PT100 INA826 ; TEMP_SENSOR_0 = 20
sensor_pin: PK0 ; TEMP_0_PIN = 8
control: pid
pid_Kp: 3.61
pid_Ki: 0.22
pid_Kd: 15.16
min_temp: -273.15
max_temp: 280
################################################################
# CAMA CALEFACTADA - Calentador y sensor
################################################################
[heater_bed]
heater_pin: PH4 ; HEATER_BED_PIN = 4
sensor_type: EPCOS 100K B57560G104F ; TEMP_SENSOR_BED = 1
sensor_pin: PK2 ; TEMP_BED_PIN = 10
control: pid
pid_Kp: 124.55
pid_Ki: 23.46
pid_Kd: 165.29
min_temp: 0
max_temp: 200 #115
################################################################
# VENTILADOR DEL HOTEND - Automático según temperatura
################################################################
[heater_fan my_hotend_fan]
pin: PH6 ; FAN_PIN = 7
heater: extruder
heater_temp: 40.0 ; se enciende al superar 40 °C
################################################################
# CALIBRACIÓN DELTA - Usado para DELTA_CALIBRATE
################################################################
[delta_calibrate]
horizontal_move_z: 5
speed: 100
radius: 100 ; valor base desde Marlin: DELTA_RADIUS
################################################################
# RETRACCIÓN FIRMWARE - Para G10/G11 (si usás Slic3r o similar)
################################################################
[firmware_retraction]
################################################################
# AJUSTE MANUAL DE CAMA (si la usaras, para tornillos)
################################################################
[bed_screws]
screw1: 40, 0
screw2: -20.0, 34.6
screw3: -20.0, -34.6