You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are there anyone who can help me to solve this error. I am trying to make a ir remote control circuit using arduino uno as isp and attiny13a. error - "#error Internal code configuration error, no timer functions implemented for this AVR CPU / board" #12067
void loop() /----( LOOP: RUNS CONSTANTLY )----/
{
if (irrecv.decode(&results)) // have we received an IR signal?
{
//translateIR();
if (results.value==0x9716BE3F)
{
digitalWrite(device1, !digitalRead(device1));
}
else if (results.value==0x3D9AE3F7)
irrecv.resume(); // receive the next value