From 756c0e1a3c98023ad27a0a380d82bdfa2d07566a Mon Sep 17 00:00:00 2001 From: johannesschrimpf Date: Fri, 20 Sep 2024 14:39:59 +0200 Subject: [PATCH] Add fps to RecordState --- protobuf_definitions/message_formats.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/protobuf_definitions/message_formats.proto b/protobuf_definitions/message_formats.proto index 994d68d5..c5e7311d 100644 --- a/protobuf_definitions/message_formats.proto +++ b/protobuf_definitions/message_formats.proto @@ -148,10 +148,13 @@ message ConnectedClient { message RecordState { bool main_is_recording = 1; // If the main camera is recording int32 main_seconds = 2; // Main record time (s) + float main_fps = 7; // Main record fps bool guestport_is_recording = 3; // If the guestport camera is recording int32 guestport_seconds = 4; // Guestport record time (s) + float guestport_fps = 8; // Guestport record fps bool multibeam_is_recording = 5; // If the multibeam is recording int32 multibeam_seconds = 6; // Multibeam record time (s) + float multibeam_fps = 9; // Multibeam record fps } // Interval type for time-lapse photos.