brestok's picture
init
516495b
raw
history blame contribute delete
243 Bytes
from idreamers.api.calculation.schemas import PilotResponse
def calculate_pilot_axes(q1: int, q2: int, q3: int, q4: int) -> PilotResponse:
return PilotResponse(
x=round((q1 + q2) / 2, 2),
y=round((q3 + q4) / 2, 2),
)