mirror of
https://github.com/ivabus/speakersafetyd
synced 2024-11-10 02:15:16 +03:00
types: Display rounded-to-0 gain
So the display goes directly to 0.00 instead of flickering -0.00. Signed-off-by: Hector Martin <marcan@marcan.st>
This commit is contained in:
parent
ac120b7be1
commit
7a82648d59
10
src/types.rs
10
src/types.rs
|
@ -388,15 +388,15 @@ impl Speaker {
|
|||
|
||||
s.gain = gain;
|
||||
|
||||
debug!(
|
||||
"{}: Coil {:.2} °C Magnet {:.2} °C Power {:.2} W Gain {:.2} dB",
|
||||
self.name, s.t_coil, s.t_magnet, pwr_avg, gain
|
||||
);
|
||||
|
||||
if s.gain > -0.01 {
|
||||
s.gain = 0.;
|
||||
}
|
||||
|
||||
debug!(
|
||||
"{}: Coil {:.2} °C Magnet {:.2} °C Power {:.2} W Gain {:.2} dB",
|
||||
self.name, s.t_coil, s.t_magnet, pwr_avg, s.gain
|
||||
);
|
||||
|
||||
s.gain
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue