@blueyerobotics/protocol-definitions 3.2.0-56e1f510 → 3.2.0-6025f25a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -154,6 +154,22 @@ export declare enum NotificationLevel {
154
154
  }
155
155
  export declare function notificationLevelFromJSON(object: any): NotificationLevel;
156
156
  export declare function notificationLevelToJSON(object: NotificationLevel): string;
157
+ /**
158
+ * Storage location.
159
+ *
160
+ * Used to specify which storage location to use for recording photos and videos.
161
+ */
162
+ export declare enum StorageLocation {
163
+ /** STORAGE_LOCATION_UNSPECIFIED - Unspecified. */
164
+ STORAGE_LOCATION_UNSPECIFIED = 0,
165
+ /** STORAGE_LOCATION_INTERNAL - Internal storage of the drone. */
166
+ STORAGE_LOCATION_INTERNAL = 1,
167
+ /** STORAGE_LOCATION_REMOVABLE - Removable storage device. */
168
+ STORAGE_LOCATION_REMOVABLE = 2,
169
+ UNRECOGNIZED = -1
170
+ }
171
+ export declare function storageLocationFromJSON(object: any): StorageLocation;
172
+ export declare function storageLocationToJSON(object: StorageLocation): string;
157
173
  /** Drone models produced by Blueye. */
158
174
  export declare enum Model {
159
175
  /** MODEL_UNSPECIFIED - ModelName not specified. */
@@ -194,11 +210,13 @@ export declare function pressureSensorTypeToJSON(object: PressureSensorType): st
194
210
  export declare enum Resolution {
195
211
  /** RESOLUTION_UNSPECIFIED - Resolution not specified. */
196
212
  RESOLUTION_UNSPECIFIED = 0,
197
- /** RESOLUTION_FULLHD_1080P - 1080p Full HD resolution. */
198
- RESOLUTION_FULLHD_1080P = 1,
199
- /** RESOLUTION_HD_720P - 720p HD resolution. */
213
+ /** RESOLUTION_VGA_480P - VGA (640x480). */
214
+ RESOLUTION_VGA_480P = 4,
215
+ /** RESOLUTION_HD_720P - 720p HD (1280x720). */
200
216
  RESOLUTION_HD_720P = 2,
201
- /** RESOLUTION_UHD_4K - 4K Ultra HD resolution. */
217
+ /** RESOLUTION_FULLHD_1080P - 1080p Full HD (1920x1080). */
218
+ RESOLUTION_FULLHD_1080P = 1,
219
+ /** RESOLUTION_UHD_4K - 4K Ultra HD (3840x2160, Only supported on X3 Ultra). */
202
220
  RESOLUTION_UHD_4K = 3,
203
221
  UNRECOGNIZED = -1
204
222
  }
@@ -210,7 +228,7 @@ export declare enum Framerate {
210
228
  FRAMERATE_UNSPECIFIED = 0,
211
229
  /** FRAMERATE_FPS_30 - 30 frames per second. */
212
230
  FRAMERATE_FPS_30 = 1,
213
- /** FRAMERATE_FPS_25 - 25 frames per second. */
231
+ /** FRAMERATE_FPS_25 - 25 frames per second. (Only supported on Pioneer/Pro/X1/X3) */
214
232
  FRAMERATE_FPS_25 = 2,
215
233
  UNRECOGNIZED = -1
216
234
  }
@@ -228,6 +246,17 @@ export declare enum Camera {
228
246
  }
229
247
  export declare function cameraFromJSON(object: any): Camera;
230
248
  export declare function cameraToJSON(object: Camera): string;
249
+ export declare enum StreamingProtocol {
250
+ /** STREAMING_PROTOCOL_UNSPECIFIED - Streaming protocol not specified. */
251
+ STREAMING_PROTOCOL_UNSPECIFIED = 0,
252
+ /** STREAMING_PROTOCOL_RTSP_H264 - RTSP streaming protocol using H264 codec. */
253
+ STREAMING_PROTOCOL_RTSP_H264 = 1,
254
+ /** STREAMING_PROTOCOL_RTSP_MJPEG - RTSP streaming protocol using MJPEG codec. No recording when activated. */
255
+ STREAMING_PROTOCOL_RTSP_MJPEG = 2,
256
+ UNRECOGNIZED = -1
257
+ }
258
+ export declare function streamingProtocolFromJSON(object: any): StreamingProtocol;
259
+ export declare function streamingProtocolToJSON(object: StreamingProtocol): string;
231
260
  /** Available temperature units. */
232
261
  export declare enum TemperatureUnit {
233
262
  /** TEMPERATURE_UNIT_UNSPECIFIED - Temperature unit not specified. */
@@ -390,6 +419,8 @@ export declare enum GuestPortDeviceID {
390
419
  GUEST_PORT_DEVICE_ID_WATERLINKED_SONAR_3D15 = 43,
391
420
  /** GUEST_PORT_DEVICE_ID_CERULEAN_TRACKER_650 - Cerulean Tracker 650. */
392
421
  GUEST_PORT_DEVICE_ID_CERULEAN_TRACKER_650 = 44,
422
+ /** GUEST_PORT_DEVICE_ID_BLUEYE_EXTERNAL_USB_STORAGE - Blueye External USB Storage */
423
+ GUEST_PORT_DEVICE_ID_BLUEYE_EXTERNAL_USB_STORAGE = 45,
393
424
  UNRECOGNIZED = -1
394
425
  }
395
426
  export declare function guestPortDeviceIDFromJSON(object: any): GuestPortDeviceID;
@@ -700,6 +731,8 @@ export interface RecordState {
700
731
  multibeamSeconds: number;
701
732
  /** Multibeam record fps. */
702
733
  multibeamFps: number;
734
+ /** Storage location used for recording. */
735
+ storageLocation: StorageLocation;
703
736
  }
704
737
  /** Time-lapse state published if time-lapse mission is running. */
705
738
  export interface TimeLapseState {
@@ -1167,7 +1200,7 @@ export interface DiveTime {
1167
1200
  /** Number of seconds the drone has been submerged. */
1168
1201
  value: number;
1169
1202
  }
1170
- /** Which cameras are supposed to be recording. */
1203
+ /** Which cameras or multibeam are supposed to be recording. */
1171
1204
  export interface RecordOn {
1172
1205
  /** Record the main camera. */
1173
1206
  main: boolean;
@@ -1183,6 +1216,61 @@ export interface StorageSpace {
1183
1216
  /** Available bytes of storage space (B). */
1184
1217
  freeSpace: number;
1185
1218
  }
1219
+ /** Storage partition. */
1220
+ export interface StoragePartition {
1221
+ /** The amount of storage space on the device. */
1222
+ storageSpace: StorageSpace | undefined;
1223
+ /** File system type of the removable storage device. */
1224
+ fileSystemType: string;
1225
+ /** Partition device path */
1226
+ devicePath: string;
1227
+ /** Mount path of the partition. */
1228
+ mountPath: string;
1229
+ }
1230
+ /** Removable storage device. */
1231
+ export interface RemovableStorageDevice {
1232
+ /** USB vendor name. */
1233
+ vendorName: string;
1234
+ /** Model name of the USB storage device. */
1235
+ modelName: string;
1236
+ /** Mount path of the storage device. */
1237
+ devicePath: string;
1238
+ /** Status of the storage device. */
1239
+ status: RemovableStorageDevice_Status;
1240
+ /** Any active error flags for the storage device. */
1241
+ errorFlags: RemovableStorageErrorFlags | undefined;
1242
+ /** List of partitions on the storage device. */
1243
+ partitions: StoragePartition[];
1244
+ }
1245
+ /** Overall status of the storage device. */
1246
+ export declare enum RemovableStorageDevice_Status {
1247
+ /** STATUS_UNSPECIFIED - Unspecified. */
1248
+ STATUS_UNSPECIFIED = 0,
1249
+ /** STATUS_READY - The storage device is valid and ready for use. */
1250
+ STATUS_READY = 1,
1251
+ /** STATUS_FORMATTING - The storage device is being formatted */
1252
+ STATUS_FORMATTING = 2,
1253
+ /** STATUS_ERROR - The storage device is in an error state. */
1254
+ STATUS_ERROR = 3,
1255
+ UNRECOGNIZED = -1
1256
+ }
1257
+ export declare function removableStorageDevice_StatusFromJSON(object: any): RemovableStorageDevice_Status;
1258
+ export declare function removableStorageDevice_StatusToJSON(object: RemovableStorageDevice_Status): string;
1259
+ /** Error flags related to a removable storage device. */
1260
+ export interface RemovableStorageErrorFlags {
1261
+ /** Optional error message to give additional information from the drone to a client about active error flags. */
1262
+ errorMessage: string;
1263
+ /** Device is attached but no partitions are found. */
1264
+ noPartitionsFound: boolean;
1265
+ /** Multiple partitions are found. */
1266
+ multiplePartitionsFound: boolean;
1267
+ /** The wrong file system is found. */
1268
+ wrongFileSystemFound: boolean;
1269
+ /** The device is in read-only mode. */
1270
+ deviceIsReadOnly: boolean;
1271
+ /** Formatting of the device failed. */
1272
+ formattingFailed: boolean;
1273
+ }
1186
1274
  /** Compass calibration state. */
1187
1275
  export interface CalibrationState {
1188
1276
  /** Current calibration status. */
@@ -1205,7 +1293,7 @@ export interface CalibrationState {
1205
1293
  /**
1206
1294
  * Status of the compass calibration procedure.
1207
1295
  *
1208
- * When calibration is started, the status will indicate the active (upfacing) axis.
1296
+ * When calibration is started, the status will indicate the active (up facing) axis.
1209
1297
  */
1210
1298
  export declare enum CalibrationState_Status {
1211
1299
  /** STATUS_UNSPECIFIED - Unspecified status. */
@@ -1226,7 +1314,7 @@ export declare enum CalibrationState_Status {
1226
1314
  STATUS_CALIBRATING_Z_POSITIVE = 7,
1227
1315
  /** STATUS_CALIBRATING_Z_NEGATIVE - Compass is calibrating and the negative Z axis is active. */
1228
1316
  STATUS_CALIBRATING_Z_NEGATIVE = 8,
1229
- /** STATUS_CALIBRATING_THRUSTER - Compass is calibrating for thruster interferance. */
1317
+ /** STATUS_CALIBRATING_THRUSTER - Compass is calibrating for thruster interference. */
1230
1318
  STATUS_CALIBRATING_THRUSTER = 9,
1231
1319
  UNRECOGNIZED = -1
1232
1320
  }
@@ -1392,18 +1480,40 @@ export interface CameraParameters {
1392
1480
  mjpgBitrate: number;
1393
1481
  /** Shutter speed (1/10000 * s), -1 for automatic exposure. */
1394
1482
  exposure: number;
1395
- /** White balance temperature (2800..9300), -1 for automatic white balance. */
1483
+ /** White balance temp (Pioneer/Pro/X1/X3: 2800..9300, Ultra: 2300..15000), -1 for auto. */
1396
1484
  whiteBalance: number;
1397
- /** Hue (-40..40), 0 as default. */
1485
+ /** Hue (-40..40), 0 as default. Only available on Pioneer/Pro/X1/X3. */
1398
1486
  hue: number;
1399
- /** Iso gain (0..1). */
1487
+ /** Iso gain (0..1). Only available on Pioneer/Pro/X1/X3. */
1400
1488
  gain: number;
1489
+ /** Brightness (-10..10), 0 as default. Only available on Ultra */
1490
+ brightness: number;
1491
+ /** Contrast (-50..50), 0 as default. Only available on Ultra. */
1492
+ contrast: number;
1493
+ /** Saturation (0..50), 8 as default. Only available on Ultra. */
1494
+ saturation: number;
1495
+ /** Gamma (4..79), 22 as default. Only available on Ultra. */
1496
+ gamma: number;
1497
+ /** Sharpness (-20..20), -20 as default. Only available on Ultra. */
1498
+ sharpness: number;
1499
+ /** Backlight compensation (-150..150), 10 as default. Only available on Ultra. */
1500
+ backlightCompensation: number;
1501
+ /** Noise reduction (-20..20), -20 as default. Only available on Ultra. */
1502
+ denoise: number;
1503
+ /** Enable eHDR mode. Default true. Only available on Ultra. */
1504
+ ehdrEnabled: boolean;
1505
+ /** Minimum number of eHDR frames. (1..4), default 1. Only available on Ultra. */
1506
+ ehdrExposureMinNumber: number;
1507
+ /** Maximum number of eHDR frames. (1..4), default 2. Only on Ultra. Setting larger than 2 can reduce the framerate. */
1508
+ ehdrExposureMaxNumber: number;
1401
1509
  /** Stream, recording and image resolution (deprecated). */
1402
1510
  resolution: Resolution;
1403
1511
  /** Stream resolution. */
1404
1512
  streamResolution: Resolution;
1405
1513
  /** Recording and image resolution. */
1406
1514
  recordingResolution: Resolution;
1515
+ /** Streaming protocol. */
1516
+ streamingProtocol: StreamingProtocol;
1407
1517
  /** Stream and recording framerate. */
1408
1518
  framerate: Framerate;
1409
1519
  /** Which camera the parameters belong to. */
@@ -1787,6 +1897,39 @@ export interface CPUInfo {
1787
1897
  mainQueueLoad: number;
1788
1898
  /** Guestport queue load (0..1). */
1789
1899
  guestportQueueLoad: number;
1900
+ /** Communication queue load (0..1). */
1901
+ commQueueLoad: number;
1902
+ }
1903
+ /**
1904
+ * Surface Unit battery information.
1905
+ *
1906
+ * This message is published by the Surface Unit, and re-published by
1907
+ * the drone over the communication protocol.
1908
+ */
1909
+ export interface SurfaceUnitBatteryInfo {
1910
+ /** Battery charge status. */
1911
+ status: SurfaceUnitBatteryInfo_ChargeStatus;
1912
+ /** Battery level (0..1). */
1913
+ level: number;
1914
+ }
1915
+ export declare enum SurfaceUnitBatteryInfo_ChargeStatus {
1916
+ CHARGE_STATUS_UNSPECIFIED = 0,
1917
+ CHARGE_STATUS_DISCHARGE = 1,
1918
+ CHARGE_STATUS_CHARGE = 2,
1919
+ CHARGE_STATUS_CHARGE_ERROR = 3,
1920
+ UNRECOGNIZED = -1
1921
+ }
1922
+ export declare function surfaceUnitBatteryInfo_ChargeStatusFromJSON(object: any): SurfaceUnitBatteryInfo_ChargeStatus;
1923
+ export declare function surfaceUnitBatteryInfo_ChargeStatusToJSON(object: SurfaceUnitBatteryInfo_ChargeStatus): string;
1924
+ /**
1925
+ * Surface Unit version information.
1926
+ *
1927
+ * This message is published by the Surface Unit, and re-published by
1928
+ * the drone over the communication protocol.
1929
+ */
1930
+ export interface SurfaceUnitVersionInfo {
1931
+ /** Surface Unit firmware version (x.y.z). */
1932
+ version: string;
1790
1933
  }
1791
1934
  export declare const BinlogRecord: MessageFns<BinlogRecord>;
1792
1935
  export declare const LogEntry: MessageFns<LogEntry>;
@@ -1841,6 +1984,9 @@ export declare const ControllerHealth: MessageFns<ControllerHealth>;
1841
1984
  export declare const DiveTime: MessageFns<DiveTime>;
1842
1985
  export declare const RecordOn: MessageFns<RecordOn>;
1843
1986
  export declare const StorageSpace: MessageFns<StorageSpace>;
1987
+ export declare const StoragePartition: MessageFns<StoragePartition>;
1988
+ export declare const RemovableStorageDevice: MessageFns<RemovableStorageDevice>;
1989
+ export declare const RemovableStorageErrorFlags: MessageFns<RemovableStorageErrorFlags>;
1844
1990
  export declare const CalibrationState: MessageFns<CalibrationState>;
1845
1991
  export declare const IperfStatus: MessageFns<IperfStatus>;
1846
1992
  export declare const NStreamers: MessageFns<NStreamers>;
@@ -1872,6 +2018,8 @@ export declare const MultibeamFrameOffset: MessageFns<MultibeamFrameOffset>;
1872
2018
  export declare const MutltibeamRecordingIndex: MessageFns<MutltibeamRecordingIndex>;
1873
2019
  export declare const PersistentStorageSettings: MessageFns<PersistentStorageSettings>;
1874
2020
  export declare const CPUInfo: MessageFns<CPUInfo>;
2021
+ export declare const SurfaceUnitBatteryInfo: MessageFns<SurfaceUnitBatteryInfo>;
2022
+ export declare const SurfaceUnitVersionInfo: MessageFns<SurfaceUnitVersionInfo>;
1875
2023
  type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
1876
2024
  type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
1877
2025
  [K in keyof T]?: DeepPartial<T[K]>;