UNPKG

fleeta-components

Version:

A comprehensive React component library for fleet management applications

14 lines 780 B
import type { SensorParsingResult } from './types'; /** * Parse sensor data from base64 encoded string for direct video synchronization * 직접 비디오 동기화를 위해 base64 인코딩된 문자열에서 센서 데이터 파싱 * * This function handles G-sensor data parsing optimized for 1-minute video synchronization * with offset correction and zero padding * 이 함수는 오프셋 보정과 0값 패딩을 포함한 1분 비디오 동기화에 최적화된 G센서 데이터 파싱을 처리합니다 * * @param data - Base64 encoded sensor data string * @returns Parsed sensor data result with status and points for video sync */ export declare function parseSensorData(data: string | undefined): SensorParsingResult; //# sourceMappingURL=parser.d.ts.map