From a79267a9661241a6603b6da3d2b3f71e8023a9d9 Mon Sep 17 00:00:00 2001 From: Peter Johanson Date: Fri, 16 Aug 2024 17:13:43 -0600 Subject: [PATCH] feat: Add reset settings req/resp. --- proto/zmk/core.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proto/zmk/core.proto b/proto/zmk/core.proto index 3d659d8..d8b940f 100644 --- a/proto/zmk/core.proto +++ b/proto/zmk/core.proto @@ -12,6 +12,7 @@ message Request { bool get_device_info = 1; bool get_lock_state = 2; bool lock = 3; + bool reset_settings = 4; } } @@ -19,6 +20,7 @@ message Response { oneof response_type { GetDeviceInfoResponse get_device_info = 1; LockState get_lock_state = 2; + bool reset_settings = 4; } }