Page 1 of 1
Arduino and XM10
Posted: Fri May 11, 2012 8:39 pm
by Henk
I would like to use an XM10 to send X10 commands from the Arduino .... i got some x10 libraries but got problems during the compilation
Anybody with experiences and interest to help me ?
Henk
Re: Arduino and XM10
Posted: Fri May 11, 2012 8:50 pm
by Digit
What problems do you have with compilation, can you be a bit more specific?
Or just send the whole bunch of files (everything) you have to compilerservice at hekkers dot net and I'll see what I can do

Re: Arduino and XM10
Posted: Sat May 12, 2012 10:53 am
by Digit
This library is not suitable for the Arduino 1.0 IDE yet. This can be fixed by editing x10.h and x10.cpp where
has to be changed to
Code: Select all
//#include "WProgram.h"
#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif