Source code for ekfsm.core.probe

from abc import ABC, abstractmethod


[docs] class ProbeableDevice(ABC):
[docs] @abstractmethod def probe(self, *args, **kwargs) -> bool: """ Probe the hardware device to check if it is present and if it is the correct device. """ pass