mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-12 12:58:36 -07:00
BLE Spam 3.1
This commit is contained in:
@@ -8,7 +8,7 @@ App(
|
|||||||
fap_category="Bluetooth",
|
fap_category="Bluetooth",
|
||||||
fap_author="@Willy-JL @ECTO-1A @Spooks4576",
|
fap_author="@Willy-JL @ECTO-1A @Spooks4576",
|
||||||
fap_weburl="https://github.com/Flipper-XFW/Xtreme-Apps/tree/dev/ble_spam",
|
fap_weburl="https://github.com/Flipper-XFW/Xtreme-Apps/tree/dev/ble_spam",
|
||||||
fap_version="3.0",
|
fap_version="3.1",
|
||||||
fap_description="Flood BLE advertisements to cause spammy and annoying popups/notifications",
|
fap_description="Flood BLE advertisements to cause spammy and annoying popups/notifications",
|
||||||
fap_icon_assets="icons",
|
fap_icon_assets="icons",
|
||||||
fap_icon_assets_symbol="ble_spam",
|
fap_icon_assets_symbol="ble_spam",
|
||||||
|
|||||||
2
applications/external/ble_spam/ble_spam.c
vendored
2
applications/external/ble_spam/ble_spam.c
vendored
@@ -315,7 +315,7 @@ static void draw_callback(Canvas* canvas, void* _ctx) {
|
|||||||
"App+Spam: \e#WillyJL\e# XFW\n"
|
"App+Spam: \e#WillyJL\e# XFW\n"
|
||||||
"Apple+Crash: \e#ECTO-1A\e#\n"
|
"Apple+Crash: \e#ECTO-1A\e#\n"
|
||||||
"Android+Win: \e#Spooks4576\e#\n"
|
"Android+Win: \e#Spooks4576\e#\n"
|
||||||
" Version \e#3.0\e#",
|
" Version \e#3.1\e#",
|
||||||
false);
|
false);
|
||||||
break;
|
break;
|
||||||
default: {
|
default: {
|
||||||
|
|||||||
@@ -8,6 +8,8 @@ const struct {
|
|||||||
uint32_t value;
|
uint32_t value;
|
||||||
const char* name;
|
const char* name;
|
||||||
} buds_models[] = {
|
} buds_models[] = {
|
||||||
|
{0xEE7A0C, "Fallback Buds"},
|
||||||
|
{0x9D1700, "Fallback Dots"},
|
||||||
{0x39EA48, "Light Purple Buds2"},
|
{0x39EA48, "Light Purple Buds2"},
|
||||||
{0xA7C62C, "Bluish Silver Buds2"},
|
{0xA7C62C, "Bluish Silver Buds2"},
|
||||||
{0x850116, "Black Buds Live"},
|
{0x850116, "Black Buds Live"},
|
||||||
@@ -26,8 +28,6 @@ const struct {
|
|||||||
{0x42C519, "Red Buds Live"},
|
{0x42C519, "Red Buds Live"},
|
||||||
{0xAE073A, "Black & White Buds2"},
|
{0xAE073A, "Black & White Buds2"},
|
||||||
{0x011716, "Sleek Black Buds2"},
|
{0x011716, "Sleek Black Buds2"},
|
||||||
{0x9D1700, "Fallback Image"},
|
|
||||||
{0xEE7A0C, "Fallback Buds"},
|
|
||||||
};
|
};
|
||||||
const uint8_t buds_models_count = COUNT_OF(buds_models);
|
const uint8_t buds_models_count = COUNT_OF(buds_models);
|
||||||
|
|
||||||
@@ -35,6 +35,7 @@ const struct {
|
|||||||
uint8_t value;
|
uint8_t value;
|
||||||
const char* name;
|
const char* name;
|
||||||
} watch_models[] = {
|
} watch_models[] = {
|
||||||
|
{0x1A, "Fallback Watch"},
|
||||||
{0x01, "White Watch4 Classic 44"},
|
{0x01, "White Watch4 Classic 44"},
|
||||||
{0x02, "Black Watch4 Classic 40"},
|
{0x02, "Black Watch4 Classic 40"},
|
||||||
{0x03, "White Watch4 Classic 40"},
|
{0x03, "White Watch4 Classic 40"},
|
||||||
@@ -59,8 +60,7 @@ const struct {
|
|||||||
{0x1C, "Gold Watch6 Gold 40mm"},
|
{0x1C, "Gold Watch6 Gold 40mm"},
|
||||||
{0x1D, "Silver Watch6 Cyan 44mm"},
|
{0x1D, "Silver Watch6 Cyan 44mm"},
|
||||||
{0x1E, "Black Watch6 Classic 43mm"},
|
{0x1E, "Black Watch6 Classic 43mm"},
|
||||||
{0x20, "Green Goofy"},
|
{0x20, "Green Watch6 Classic 43mm"},
|
||||||
{0x1A, "Fallback Watch"},
|
|
||||||
};
|
};
|
||||||
const uint8_t watch_models_count = COUNT_OF(watch_models);
|
const uint8_t watch_models_count = COUNT_OF(watch_models);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user