I finally finished programming my crawling robot that uses a RF signal to communicate with the remote and servos to move. then when I verified the code it came up with the error below and I have no idea how to fix it.
Can anyone help???
Servo\Servo.cpp.o: In function `__vector_11':
C:\Program Files (x86)\Arduino\libraries\Servo/Servo.cpp:103: multiple definition of `__vector_11'
VirtualWire\VirtualWire.cpp.o:C:\Users\Beaurb\Documents\Arduino\libraries\VirtualWire/VirtualWire.cpp:588: first defined here
The Servo library and VirtualWire library are both using the same timer interrupt. You can't use them together. Look for the ServoTimer2 library which is a third-party version of the Servo library which uses a different timer.
bugatilover007:
where could I find a library like that?
johnwasser already gave u the name of the library to use. Read his post again.
You can find the library with Google.
You can also try a direct search on Github.