@@ -304,6 +304,16 @@ class BLEMonitorBinarySensorEntityDescription(
304
304
device_class = None ,
305
305
force_update = False ,
306
306
),
307
+ BLEMonitorBinarySensorEntityDescription (
308
+ key = "vibration" ,
309
+ sensor_class = "BaseBinarySensor" ,
310
+ update_behavior = "Instantly" ,
311
+ name = "ble vibration" ,
312
+ unique_id = "vi_" ,
313
+ icon = "mdi:vibration" ,
314
+ device_class = BinarySensorDeviceClass .VIBRATION ,
315
+ force_update = True ,
316
+ ),
307
317
BLEMonitorBinarySensorEntityDescription (
308
318
key = "dropping" ,
309
319
sensor_class = "BaseBinarySensor" ,
@@ -1290,6 +1300,7 @@ class BLEMonitorBinarySensorEntityDescription(
1290
1300
'K6 Sensor Beacon' : [["temperature" , "humidity" , "acceleration" , "voltage" , "battery" , "rssi" ], [], []],
1291
1301
'DSL-C08' : [["battery" , "rssi" , "voltage" ], [], ["lock" , "childlock" ]],
1292
1302
'SmartDry cloth dryer' : [["temperature" , "humidity" , "voltage" , "battery" , "shake" , "rssi" ], [], ["switch" ]],
1303
+ 'HolyIOT BLE tracker' : [["battery" , "rssi" ], [], ["remote single press" , "vibration" ]],
1293
1304
}
1294
1305
1295
1306
# Sensor manufacturer dictionary
@@ -1420,6 +1431,7 @@ class BLEMonitorBinarySensorEntityDescription(
1420
1431
'Acconeer XM122' : 'Acconeer' ,
1421
1432
'K6 Sensor Beacon' : 'KKM' ,
1422
1433
'SmartDry cloth dryer' : 'SmartDry' ,
1434
+ 'HolyIOT BLE tracker' : 'HolyIOT' ,
1423
1435
}
1424
1436
1425
1437
0 commit comments