Arduino拖尾灯 添加按键中断主程序执行子程序
发布网友
发布时间:2022-05-18 23:56
我来回答
共1个回答
热心网友
时间:2023-08-23 18:12
#include <avr/io.h>
#include <avr/interrupt.h>
void loop(){
//你的主程序
}
void setup(){
timer();
}
void timer(){
TCCR2A = 0x00;
TCCR2B = 0x07;
TIMSK2 =_BV(TOIE2) | 0x00;
TCNT2 = 0x00;
TCCR2A = 0x01;
sei();
}
ISR(TIMER2_OVF_vect){
TCNT2 = 0x00;
//你的中断程序:
}追问我用arino uno板子做的这个
你这个语法加到我哪里面?