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:
authorあく <alleteam@gmail.com>2023-03-22 15:39:40 +0300
committerGitHub <noreply@github.com>2023-03-22 15:39:40 +0300
commit1f6b4a08c5d05c2b17926a3ba79f60109638932f (patch)
tree1b9830b9bf996ac5051e854011dc65f53a618dcd
parent6460660237005d02d5c223835659b40e373bade9 (diff)
ScreenFrame: additional orientation field (#41)0.15
-rw-r--r--Changelog4
-rw-r--r--gui.proto8
2 files changed, 12 insertions, 0 deletions
diff --git a/Changelog b/Changelog
index a82b2d7..b1c88f7 100644
--- a/Changelog
+++ b/Changelog
@@ -1,5 +1,9 @@
# Changelog
+## [0.15]
+### Modified
+- ScreenFrame: additional orientation field
+
## [0.14]
### Added
- New subsystem: Property
diff --git a/gui.proto b/gui.proto
index f6a8a6b..af434c9 100644
--- a/gui.proto
+++ b/gui.proto
@@ -20,8 +20,16 @@ enum InputType {
REPEAT = 4; /**< Repeat event, emmited with INPUT_REPEATE_PRESS period after InputTypeLong event */
}
+enum ScreenOrientation {
+ HORIZONTAL = 0; /**< Horizontal */
+ HORIZONTAL_FLIP = 1; /**< Horizontal flipped (180)*/
+ VERTICAL = 2; /**< Vertical (90)*/
+ VERTICAL_FLIP = 3; /**< Vertical flipped */
+}
+
message ScreenFrame {
bytes data = 1;
+ ScreenOrientation orientation = 2;
}
message StartScreenStreamRequest {