3 package jaiabot.protobuf;
7 // A unique id for this CameraCommand, used by CameraResponse to ack or respond
10 enum CameraCommandType
12 // Start taking images at a fixed rate
20 // Return driver/camera metadata in the CameraResponse
24 required CameraCommandType type = 2;
26 // Image capture interval, in seconds
27 optional double image_capture_interval = 3;
30 message CameraResponse
32 // The unique id of the corresponding CameraCommand
33 required int32 id = 1;
36 // Version of this camera driver
37 optional int32 driver_version = 1;
40 // Metadata object, if that was requested
41 optional Metadata metadata = 2;