Skip to main content
. 2024 Jun 8;24(12):3735. doi: 10.3390/s24123735
Algorithm 7 Type In Current Input Field
  • function TypeInCurrentField(word)

  •     global timestamp

  •     times ← predict_hold_and_release_times(word)

  •     for each time in times do

  •          offset ← create time delta from time[0]

  •          send_telemetry_request(“keyboard”, timestamp + offset)

  •          increment timestamp by offset and additional time from time[1]

  •     end for

  • end function