Skip to content

Commit 2c3f96d

Browse files
committed
Add devices/capabilities/ble-scanning
1 parent 6ae8846 commit 2c3f96d

File tree

4 files changed

+56
-0
lines changed

4 files changed

+56
-0
lines changed

.vitepress/config.mts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,16 @@ export default withMermaid(defineConfig({
460460
}
461461
]
462462
},
463+
{
464+
text: 'Capabilities',
465+
link : '/devices/capabilities/',
466+
items: [
467+
{
468+
text: 'BLE Scanning',
469+
link: '/devices/capabilities/ble-scanning',
470+
},
471+
]
472+
},
463473
{
464474
text: 'API',
465475
link : '/devices/api/',

apps/admin/devices/information.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,12 @@ This will poll for new events as they happen, so you should be able to see your
5656
If your device has not recently sent any data, you might find the timeline empty, or timing out.
5757
:::
5858

59+
## Live
60+
61+
For devices that make use of V3 messaging, you can also view live data from the device as it is received by the Lightbug platform.
62+
63+
![](https://upload.r2.lb.chasm.cloud/2026/03/chrome_eEEcyNZDFD.png)
64+
5965
## Config Pages
6066

6167
The config pages tab shows the current config pages applied to the device.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# BLE Scanning
2+
3+
BLE scanning is a capability that allows devices to scan for nearby Bluetooth Low Energy (BLE) devices.
4+
5+
This can be used for a variety of applications, such as asset tracking, proximity detection, and more.
6+
7+
As part of BLe scanning, we collect MAC Address, RSSI, Name, and any additional advertising data that the device is broadcasting. For various known device types and advertising types this data is parsed and stored in a structured format.
8+
9+
## Devices
10+
11+
Most of our products have BLE capability (please see individual product specifications) and will record scan data.
12+
13+
We also provide a variety of [BLE Tag devices](/devices/peripherals) that work out of the box for BLE tagging applications.
14+
15+
When new BLE devices are seen, they are tracked within the Lightbug platform as an additional device of type `BleTag` and they can be attached to your account, and viewed in all applications (Cloud, Admin, APIs, etc).
16+
17+
## Data
18+
19+
### Cloud & Admin App
20+
21+
Both gateways and `BleTag` devices can have their position plotted on the [Cloud App map](/apps/cloud/), as well as have data visualized about them, such as temperature readings, signal strength, and more.
22+
23+
It's also possible to [view proximity reports](/apps/cloud/reports/proximity) based on this information, showing what devices have been near each other, and when.
24+
25+
### V3 Messaging
26+
27+
Devices that make use of V3 messaging can also make use of the [V3 share feature](/apps/admin/devices/sharing) for adhoc visualization of this data, and sharing it with others via [share.chasm.cloud](/apps/chasm/share/) where a dedicated [BLE Scan view](/apps/chasm/share/ble-scan) is available.
28+
29+
These messages can also be [forwarded directly into other systems](/apps/admin/devices/forwarding) and viewed [live](/apps/admin/devices/information#live) on a per device level.

devices/capabilities/index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Capabilities
2+
3+
Many of our devices share common capabilities. These capabilities are features that can be used across different devices, and integrate into various parts of our ecosystem, such as the Cloud App, APIs, and more.
4+
5+
Collected here for convenience.
6+
7+
::: warning ⚠️ Not all capabilities listed
8+
We are building out this documentation section
9+
:::
10+
11+
The first capability that we are documenting is [BLE Scanning](./ble-scanning.md).

0 commit comments

Comments
 (0)