Console screen implemented

This commit is contained in:
2024-03-12 22:44:33 +07:00
parent 3e1c5edc19
commit d2f8d0ff06
17 changed files with 2389 additions and 24 deletions

View File

@@ -0,0 +1,10 @@
package com.helible.pilot.dataclasses
import com.squareup.moshi.Json
data class SticksPosition(
@Json(name = "hS") val heightStick: Int,
@Json(name = "yS") val yawStick: Int,
@Json(name = "pS") val pitchStick: Int
)