I have modified the IRRemote library to work with timer0 and timer1 on the attiny84 but i can not use timer1 because I am already the pins for soething else where I can't change those pins. Therefor i have to use timer0, but that is the same timer as delay() and millis() uses.
My question is: can i change the timer the function millis() uses or can i use an alternative to the millis() function using timer1?
If you are using this core...
...there is a compile-time switch to bind millis to whichever timer you want.
And for this core: GitHub - TCWORLD/ATTinyCore: ATTiny Core for Arduino 1.0+
You can use the TinyNoMillis variant which is useful if you don't plan on using the millis() function.
I installed this core: GitHub - Coding-Badly/TinyCore1: Tiny Core 1 for Arudino 1.6 but how do I change the timer?
EDIT:
It doesn't matter I figured it out.
Thanks for the help 