A version of wire.h (I2C) that doesn't use Timer1

Hi

I'm currently using Timer1 because I need 16bit resolution for handling a Interrupt using RF433.

I also need to interface on the same Arduino Nano a I2C interface but wire.h (I2C Wire Library) seems to use Timer1 as well.

Is there any other I2C library that doesn't use Timer1 and instead uses Timer2?
Or maybe a way of getting the Wire Library to use a different Timer?

Many thanks

Ian

Please tell us about your project. There might be many ways to solve a problem.

Do you use VirtualWire with TIMER1 ? Or do you need specific timing ? What receiver are you using ?
As far as I know, the Wire library does not use TIMER1, so it should not be a problem.
However, the I2C interrupts will interfere with TIMER1 interrupts.
Perhaps you can use a software I2C or SPI bus with software pin toggle. What device is connected to the I2C bus ?