naneos.partector_ble.partector_ble_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/partector_ble/partector_ble_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 | |
is_discovering
property
True while BlueZ discovery is running, i.e. the adapter is usable.
is_passive
property
True while the scanner runs (or will run) in passive mode.
__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/partector_ble/partector_ble_scanner.py
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 | |
create_scanner_queue()
staticmethod
Queue of (device, serial number) pairs, one per received advertisement.
Source code in src/naneos/partector_ble/partector_ble_scanner.py
55 56 57 58 59 60 | |
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/partector_ble/partector_ble_scanner.py
217 218 219 220 221 222 223 224 225 226 227 228 229 230 | |
get_rssi(address, max_age_seconds=None)
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 |
max_age_seconds
|
float | None
|
Only readings younger than this are considered. Defaults to RSSI_MAX_AGE_SECONDS. |
None
|
Returns:
| Type | Description |
|---|---|
int | None
|
The median RSSI in dBm, or None if the device has not advertised |
int | None
|
within max_age_seconds (i.e. it is out of range). |
Source code in src/naneos/partector_ble/partector_ble_scanner.py
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 | |
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/partector_ble/partector_ble_scanner.py
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 | |
scanner_kwargs(passive)
classmethod
Arguments for BleakScanner: passive with the BlueZ filter, or plain active.
Source code in src/naneos/partector_ble/partector_ble_scanner.py
62 63 64 65 66 67 68 69 70 | |
start()
Starts the scanner.
Source code in src/naneos/partector_ble/partector_ble_scanner.py
119 120 121 122 123 124 125 126 127 | |
stop()
async
Stops the scanner.
Source code in src/naneos/partector_ble/partector_ble_scanner.py
232 233 234 235 236 237 238 | |