3package jaiabot.protobuf;
14 // A unique id for this CameraCommand, used by CameraResponse to ack or respond
15 required int32 id = 1;
17 enum CameraCommandType
19 // Start taking images at a fixed rate
27 // Return driver/camera metadata in the CameraResponse
31 required CameraCommandType type = 2;
33 // Image capture interval, in seconds
34 optional double image_capture_interval = 3;
36 optional string datetime = 4;
41 // The unique id of the corresponding CameraCommand
42 required int32 id = 1;
45 // Version of this camera driver
46 optional int32 driver_version = 1;
49 // Metadata object, if that was requested
50 optional Metadata metadata = 2;