piopulse 1.0.5

A terminal user interface (TUI) embedded debugger for serial debugging, telemetry plotting, dashboards, and ESP32 flashing.
1
2
3
4
5
6
7
use crate::app::App;
use ratatui::{Frame, layout::Rect};

pub fn draw(f: &mut Frame, app: &mut App, area: Rect) {
    app.layout_zones.monitor_panel = area;
    crate::ui::channels::draw_guided_burning_panel(f, app, area);
}