{!data ? (
@@ -21,8 +42,24 @@ export function TelemetryPane({
-
-
+
+ {formatDuration(data.airtime_seconds)}
+ {txPct && ({txPct})}
+ >
+ }
+ />
+
+ {formatDuration(data.rx_airtime_seconds)}
+ {rxPct && ({rxPct})}
+ >
+ }
+ />
@@ -30,7 +67,17 @@ export function TelemetryPane({
+ {data.packets_received.toLocaleString()} rx / {data.packets_sent.toLocaleString()}{' '}
+ tx
+ {rxPerMin && txPerMin && (
+
+ (avg {rxPerMin} rx/min / {txPerMin} tx/min)
+
+ )}
+ >
+ }
/>