Skip to content

Flashing Firmware

This example project shows the minimum necessary code to scan for advertising BLE devices and read the corresponding data. This example is designed to work with the HIL nRF53 demo project, which by default will advertise the DIS service with the name "EmbedOps HIL Demo Device".

NOTE: The find_devices function provided by the BLEInterface class is asynchronous and uses Python's built-in asyncio library. This requires a small amount of boilerplate code to exist in your test functions, which can be seen within the test_ble_scan function in this example project.

test_default.py - This file contains a test that searches for an advertising device with a specific name.

import asyncio
from hil_sdk.interfaces.ble.ble_scanner import BLEScanner


def test_ble_scan():

    async def test_func():

        devices = await BLEScanner.find_devices()
        device_names = [d.name for d in devices]

        assert "EmbedOps HIL Demo Device" in device_names

    asyncio.run(test_func())