interrupts

从新开启由 noInterrupts() 关闭的中断


语法
 void interrupts()


参数


返回值


示例
void setup() {}

void loop() {
  noInterrupts();
  interrupts();
}