From 1a897a3b5f01bbfab1e3cfa3ae89cb2eebd308c6 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Wed, 1 Apr 2026 21:50:33 +1300 Subject: [PATCH 1/2] use top button to wake hibernated gat562 mesh watch --- variants/gat562_mesh_watch13/GAT56MeshWatch13Board.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variants/gat562_mesh_watch13/GAT56MeshWatch13Board.h b/variants/gat562_mesh_watch13/GAT56MeshWatch13Board.h index 34437f42..da792b78 100644 --- a/variants/gat562_mesh_watch13/GAT56MeshWatch13Board.h +++ b/variants/gat562_mesh_watch13/GAT56MeshWatch13Board.h @@ -35,7 +35,7 @@ public: void powerOff() override { - uint32_t button_pin = PIN_BUTTON2; + uint32_t button_pin = PIN_BUTTON1; nrf_gpio_cfg_input(button_pin, NRF_GPIO_PIN_PULLUP); nrf_gpio_cfg_sense_set(button_pin, NRF_GPIO_PIN_SENSE_LOW); sd_power_system_off(); From b37201db89ccc71f4e66091c375cc5081745dc68 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Wed, 1 Apr 2026 21:51:32 +1300 Subject: [PATCH 2/2] double press top button to go back on gat562 mesh watch --- variants/gat562_mesh_watch13/target.cpp | 3 +-- variants/gat562_mesh_watch13/target.h | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/variants/gat562_mesh_watch13/target.cpp b/variants/gat562_mesh_watch13/target.cpp index 6c6548d7..87f65dd9 100644 --- a/variants/gat562_mesh_watch13/target.cpp +++ b/variants/gat562_mesh_watch13/target.cpp @@ -11,8 +11,7 @@ GAT56MeshWatch13Board board; #ifdef DISPLAY_CLASS DISPLAY_CLASS display; - MomentaryButton user_btn(PIN_USER_BTN, 1000, true, false, false); - MomentaryButton back_btn(PIN_BACK_BTN, 1000, true, false, true); + MomentaryButton user_btn(PIN_USER_BTN, 1000, true, false, true); #endif diff --git a/variants/gat562_mesh_watch13/target.h b/variants/gat562_mesh_watch13/target.h index cbeec48b..a9a71ce4 100644 --- a/variants/gat562_mesh_watch13/target.h +++ b/variants/gat562_mesh_watch13/target.h @@ -13,7 +13,6 @@ extern DISPLAY_CLASS display; #include extern MomentaryButton user_btn; - extern MomentaryButton back_btn; #endif #ifdef PIN_VIBRATION