C:\Program Files\Arduino\libraries\Tlc5940/Tlc5940.cpp:62: multiple definition of `__vector_13'
C:\DOCUME~1\greg\LOCALS~1\Temp\build891807187282257886.tmp\Timer1\TimerOne.cpp.o:C:\Program Files\Arduino\libraries\Timer1/TimerOne.cpp:44: first defined here
collect2.exe: error: ld returned 1 exit status
Error compiling.
The cause of this is the fact that I have these two includes in my .ino file:
#include <TimerOne.h>
#include <Tlc5940.h>
But I need both of them.
So any suggestions on how I can work around it?