Interrupts()
來(lái)自ALSROBOT WiKi
#define interrupts() sei()
開(kāi)中斷
例子:
void setup() {} void loop() { noInterrupts(); // critical, time-sensitive code here interrupts(); // other code here }