Skip to content

Commit

Permalink
Latest Release RM0308-1620-0.99.1-2f8b85d on PATREON - UPD FINDMY STA…
Browse files Browse the repository at this point in the history
…RTUP
  • Loading branch information
RogueMaster committed Mar 10, 2024
1 parent d5ecfb5 commit 133b4a0
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ReadMe.md
Expand Up @@ -45,9 +45,9 @@ This software is for experimental purposes only and is not meant for any illegal
- Added: [FindMy Flipper v1.0 (By MatthewKuKanich)](https://github.com/MatthewKuKanich/FindMyFlipper)
- Updated: [BLE Spam v6.0 (By Willy-JL & ECTO-1A & Spooks4576 with research from xMasterX; OFW API thanks to noproto)](https://github.com/noproto/apple_ble_spam_ofw) [Added NameFlood option (By Willy-JL)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/f2a6af257c8ce8e47181329c59a8a4e44e927c58) [Bug Fixes (By Willy-JL)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/74d69fb623378395ed8407261c95453d12e59cd5)
- Updated: [NFC Maker v1.2 (by Willy-JL)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/343cb39d08f60b75b537e1a31100707935cf6e9d) NfcMaker: Fix timeout on error screen (By Willy-JL)
- Updated: [FindMy Flipper v1.0 (By MatthewKuKanich)](https://github.com/MatthewKuKanich/FindMyFlipper)
- Updated: [Quac! v0.2 (By rdefeo)](https://github.com/rdefeo/quac)
- Updated: [VGM: Custom color options (By HaxSam & Willy-JL)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/93b532b4ebac931862369b286429b83a2c55d1bf) Added Rainbow Mode (By Willy-JL)
- Updated: [FindMy Flipper v1.0 (By MatthewKuKanich)](https://github.com/MatthewKuKanich/FindMyFlipper) Added Startup Service (By Willy-JL & MatthewKuKanich)

<a name="release">

Expand Down
9 changes: 9 additions & 0 deletions applications/external/find_my_flipper/application.fam
Expand Up @@ -12,3 +12,12 @@ App(
fap_version="1.0",
fap_description="BLE FindMy Location Beacon",
)

App(
appid="findmy_startup",
targets=["f7"],
apptype=FlipperAppType.STARTUP,
entry_point="findmy_startup",
sources=["findmy_startup.c", "findmy_state.c"],
order=1000,
)
11 changes: 11 additions & 0 deletions applications/external/find_my_flipper/findmy_startup.c
@@ -0,0 +1,11 @@
#include "findmy_state.h"
#include <furi_hal.h>

void findmy_startup() {
if(!furi_hal_is_normal_boot()) return;

FindMyState state;
if(findmy_state_load(&state)) {
findmy_state_apply(&state);
}
}
1 change: 1 addition & 0 deletions applications/system/application.fam
Expand Up @@ -7,5 +7,6 @@ App(
"storage_move_to_sd",
"js_app",
# "archive",
"findmy_startup",
],
)

0 comments on commit 133b4a0

Please sign in to comment.