Source code for pyrokid_cxr_clientm.extend.callbacks.periph_device_callback

"""com.rokid.cxr.client-m:1.0.9 - extend/callbacks/PeriphDeviceCallback.java in Python"""

from abc import ABC, abstractmethod
from ..infos import BluetoothPeriphInfo
from ...utils import ValueUtil

[docs] class PeriphDeviceCallback(ABC): """com.rokid.cxr.client.extend.callbacks.PeriphDeviceCallback Java interface to Python - Please extend this class and implement the methods"""
[docs] @abstractmethod def onBluetoothPeriphList(self, cxrStatus: ValueUtil.CxrStatus, data: list[BluetoothPeriphInfo]) -> None: pass