isReadyUsingInterrupt method

bool isReadyUsingInterrupt()

Implementation

bool isReadyUsingInterrupt() {
  assert(irqGpio != null,
      "isReadyUsingInterrupt() was called even though the irqPin/irqGpio wasn't provided");
  return !irqGpio!.read();
}