Multiple Definition Error (Vector 47)

bos1714:
Hi there!

I see you have included two libraries, the Servo library and AltSoftSerial. Most likely these two libraries are trying to use the same timer on the microcontroller at the same time, which would give you this error. Trying using the ServoTimer2 library and everything should be fine.

Good luck!

Thanks, i compiled and it's done. I changed this;

#include <Servo.h>
int aci=90,i;
Servo myservo;
int gecikme=40;

to that;

#include <ServoTimer2.h>
int aci=90,i;
ServoTimer2 myservo;
int gecikme=40;

By the way, i included the ServoTimer2 Zip Library on my Arduino IDE. Propably there is not anything else I need to change. Thank you sir, you are a hero.