I am trying to implement a project using the following boards;
UNO
WiFi Shield
DMX Shield
To illustrate the point, I've literally just included the headers;
#include <SPI.h>
#include <WiFi.h>
#include <WiFiUdp.h>
#include <Conceptinetics.h>
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}
and I get the following error;
Arduino: 1.5.8 (Windows 8), Board: "Arduino Uno"
C:\Users\ROB_F_~1\AppData\Local\Temp\build9166797235309305221.tmp/core.a(HardwareSerial0.cpp.o): In function `Print':
C:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino/HardwareSerial0.cpp:48: multiple definition of `__vector_18'
Conceptinetics\Conceptinetics.cpp.o:C:\Users\rob_f_000\Documents\Arduino\libraries\Conceptinetics/Conceptinetics.cpp:1163: first defined here
collect2: error: ld returned 1 exit status
Error compiling.
It seems there is a clash of some sort, a little beyond my experience. Can anyone help with a solution?