You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently only has the ability to monitor a single "start stop" line
Description
It would be much nicer if we could actually have the ability to monitor lap split times so that we can notify the driver when they have completed a "purple" sector, or display an "optimal time"
This will probably require great re-work to ::loop and ::checkStartFinish, this code isn't exactly portable in its current state, and the original intention for the loop was not a great one.
It would probably make better sense to do something like:
check last line passed
save current sector to variable
Using current sector information, prepare looking for NEXT LINE ONLY
a. Or the start-line if race not started
It would be the responsibility of the consuming application to alert the driver on a purple sector.
Concerns
The actual hard part is going to be figuring out a way to manage the individual split stats (odometer/time/etc) for calculations.
The way we are currently handling the start-finish times alone is a bit gross.
The text was updated successfully, but these errors were encountered:
Problem
Currently only has the ability to monitor a single "start stop" line
Description
It would be much nicer if we could actually have the ability to monitor lap split times so that we can notify the driver when they have completed a "purple" sector, or display an "optimal time"
Proposed Solution
This will probably require great re-work to
::loop
and::checkStartFinish
, this code isn't exactly portable in its current state, and the original intention for the loop was not a great one.It would probably make better sense to do something like:
a. Or the start-line if race not started
It would be the responsibility of the consuming application to alert the driver on a purple sector.
Concerns
The actual hard part is going to be figuring out a way to manage the individual split stats (odometer/time/etc) for calculations.
The way we are currently handling the start-finish times alone is a bit gross.
The text was updated successfully, but these errors were encountered: