From cef00d1afdb543eca562f65219ac3b57f10e417f Mon Sep 17 00:00:00 2001 From: JP Stringham Date: Mon, 9 Feb 2026 16:59:42 -0500 Subject: [PATCH] Notice of OTA --- src/main.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 9a8d956..af4c5d8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -137,7 +137,12 @@ fn main() -> ! { u16_into_str(tuned_freq as u16, &mut tune_str_buf); let tune_str = str::from_utf8(&tune_str_buf).unwrap(); info!("{}, {}", tune_str, tune_str.len()); - gfx_buf.draw_string(20, 40, tune_str); + gfx_buf.draw_string(20, 34, tune_str); + + match broadcast_on { + true => gfx_buf.draw_string(20, 48, "ON THE AIR"), + false => (), + } gfx_buf.redraw(); sh1106_dev.blit_framebuffer(&mut i2c, &mut gfx_buf);