Source code for pyrokid_cxr_clientm.extend.callbacks.wifi_hot_status_callback
"""com.rokid.cxr.client-m:1.0.9 - extend/callbacks/WifiHotStatusCallback.java in Python"""
from abc import ABC, abstractmethod
[docs]
class WifiHotStatusCallback(ABC):
"""com.rokid.cxr.client.extend.callbacks.WifiHotStatusCallback Java interface to Python - Please extend this class and implement the methods"""
[docs]
@abstractmethod
def onWifiHotAvailable(self, account: str, password: str, ip: str, securityType: int) -> None: pass