From 89089dcea1faafa41e6b6bf4bcc371e398ef83e3 Mon Sep 17 00:00:00 2001 From: Markus Mayer Date: Fri, 5 Jul 2024 01:40:27 +0200 Subject: [PATCH] Add information about transformation data --- src/components/utils.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/utils.rs b/src/components/utils.rs index 51930a2..c583808 100644 --- a/src/components/utils.rs +++ b/src/components/utils.rs @@ -165,6 +165,14 @@ pub fn frame_data_to_line_raw(frame: &Version1DataFrame, line: &mut Vec) { ), ]) } + SensorData::LinearRanges(ref ident) => { + line.extend(vec![ + Span::styled("transformation data", Style::default().cyan()), + " ".into(), + ]); + + line.extend(sensor_id(&ident.target)); + } SensorData::AccelerometerI16(vec) => { let (highlight_x, highlight_y, highlight_z) = highlight_axis_3(vec.x, vec.y, vec.z);