fixed merge errors

This commit is contained in:
2025-05-05 13:04:00 +02:00
parent e14f703a76
commit 1ba74be096
7 changed files with 103 additions and 68 deletions

View File

@@ -5,10 +5,6 @@ use std::{
fmt::Display,
};
use crate::led::Led;
use tokio::fs;
use crate::led::Led;
use tokio::fs;
/// Represents the ID that is stored on the Tally
@@ -135,12 +131,7 @@ impl AttendanceDay {
return false;
}
self.ids.push(id);
buzzer::beep_ack();
led.set_named_color_time(NamedColor::Green, 1); //led is green for 1 sec
return true;
true
}
}