Updated driver display to have lap count

This commit is contained in:
2026-04-03 16:39:41 +02:00
parent ecccadc913
commit a052888a38
4 changed files with 19 additions and 20 deletions

View File

@@ -19,6 +19,7 @@ LapCounter::~LapCounter() {}
int LapCounter::init() {
counting_ = false;
count_ = false;
return 0;
}
int LapCounter::loop() {
@@ -54,6 +55,7 @@ int LapCounter::loop() {
lap_times_[lap_times_idx_] = lap_time;
count_++;
lapCountGlobalWrite(count_);
last_trigger_time_ = time_cs;