Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/flipperdevices/flipperzero-protobuf.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Prosvetova <anna@prosvetova.me>2021-12-28 13:59:47 +0300
committerGitHub <noreply@github.com>2021-12-28 13:59:47 +0300
commit5409d34a29073f5b51acad1cb5c24663f4e625e2 (patch)
tree4df94ce5decb00bc45e673d8c07416ef39f12e5f
parentf5365c36aa458eb344280560440d6e27232a5667 (diff)
Add SystemPlayAudiovisualAlert (#20)0.1
-rw-r--r--flipper.proto1
-rw-r--r--system.proto3
2 files changed, 4 insertions, 0 deletions
diff --git a/flipper.proto b/flipper.proto
index 25aa86b..cd3cee9 100644
--- a/flipper.proto
+++ b/flipper.proto
@@ -65,6 +65,7 @@ message Main {
.PB_System.GetDateTimeRequest system_get_datetime_request = 35;
.PB_System.GetDateTimeResponse system_get_datetime_response = 36;
.PB_System.SetDateTimeRequest system_set_datetime_request = 37;
+ .PB_System.PlayAudiovisualAlertRequest system_play_audiovisual_alert_request = 38;
.PB_Storage.InfoRequest storage_info_request = 28;
.PB_Storage.InfoResponse storage_info_response = 29;
.PB_Storage.StatRequest storage_stat_request = 24;
diff --git a/system.proto b/system.proto
index 1c68b13..5483947 100644
--- a/system.proto
+++ b/system.proto
@@ -51,4 +51,7 @@ message DateTime {
uint32 month = 5; /**< Current month: 1-12 */
uint32 year = 6; /**< Current year: 2000-2099 */
uint32 weekday = 7; /**< Current weekday: 1-7 */
+}
+
+message PlayAudiovisualAlertRequest {
} \ No newline at end of file