naneos.ble.partector.scanner
PartectorBleScanner
Context-managed BLE scanner that discovers Partector devices.
The scanner exists for the links: it reports which Partector (serial number) advertises at which address, keeps the recent RSSI per device for the connect gate, and hands out the freshest BLEDevice for reconnects. It does not deliver measurement data; that comes from the connections only.
On Linux it scans passively when BlueZ allows it (bluetoothd started with --experimental), which costs no scan requests on the shared antenna of a Raspberry Pi. Elsewhere, or when passive scanning is refused, it falls back to the usual active scan.
Source code in src/naneos/ble/partector/scanner.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 | |
is_discovering
property
True while BlueZ discovery is running, i.e. the adapter is usable.
seconds_since_advertisement
property
Age of the last Partector advertisement, None if there never was one.
silent_for
property
Seconds the current scan has been running without a Partector advertisement.
__init__(loop, queue)
Initializes the scanner with the given event loop and queue.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
loop
|
AbstractEventLoop
|
The event loop to run the scanner in. |
required |
queue
|
Queue
|
Receives (BLEDevice, serial number) per advertisement. |
required |
Source code in src/naneos/ble/partector/scanner.py
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | |
create_scanner_queue()
staticmethod
Queue of (device, serial number) pairs, one per received advertisement.
Source code in src/naneos/ble/partector/scanner.py
56 57 58 59 60 61 | |
get_device(address)
Returns the most recently advertised BLEDevice for the given address.
Reconnecting with the BLEDevice from the initial discovery fails once BlueZ has evicted the device from its cache ("device ... not found"), so callers should refresh the device before every connection attempt.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
address
|
str
|
BLE address of the device. |
required |
Returns:
| Type | Description |
|---|---|
BLEDevice | None
|
The latest BLEDevice, or None if it has not been seen yet. |
Source code in src/naneos/ble/partector/scanner.py
229 230 231 232 233 234 235 236 237 238 239 240 241 242 | |
get_rssi(address)
Returns the recent median RSSI for the given address.
The median over the last few advertisements is used instead of the latest value, because RSSI of a distant device fluctuates heavily and a single strong reading is not enough to justify a connection attempt.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
address
|
str
|
BLE address of the device. |
required |
Returns:
| Type | Description |
|---|---|
int | None
|
The median RSSI in dBm, or None if the device has not advertised |
int | None
|
within RSSI_MAX_AGE_SECONDS (i.e. it is out of range). |
Source code in src/naneos/ble/partector/scanner.py
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | |
restart(switch_mode=False)
async
Tears the BlueZ scan down and starts a new one, keeping what was learned.
For a scan that went silent without failing: on a Raspberry Pi the advertisement monitor behind a passive scan can stop reporting while the D-Bus connection stays up, which is_discovering cannot see.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
switch_mode
|
bool
|
Scan the other way (passive <-> active) afterwards, for when a restart in the same mode did not bring advertisements back. |
False
|
Source code in src/naneos/ble/partector/scanner.py
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 | |
scan()
async
Runs BLE discovery until stopped, feeding _detection_callback.
Discovery is started once and then left running. Re-entering the scanner on a timer costs a SetDiscoveryFilter + StartDiscovery + StopDiscovery D-Bus round trip per cycle, against the same bluetoothd that carries the BLE links, and makes the controller restart its LE scan each time. It is also pointless: a running scanner already reports every advertisement, so stopping only creates windows in which advertisements are missed.
Source code in src/naneos/ble/partector/scanner.py
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 | |
scanner_kwargs(passive)
classmethod
Arguments for BleakScanner: passive with the BlueZ filter, or plain active.
Source code in src/naneos/ble/partector/scanner.py
63 64 65 66 67 68 69 70 71 | |
start()
Starts the scanner.
Source code in src/naneos/ble/partector/scanner.py
127 128 129 130 131 132 133 134 135 | |
stop()
async
Stops the scanner.
Source code in src/naneos/ble/partector/scanner.py
244 245 246 247 248 249 250 | |