Ok so i got a CM19a and want it to work in LMCE
so first i did a search and fount a driver:
download it here:
http://m.lemays.org/projects/x10-cm19a-linux-driverInstall the driver:
http://pr0gr4mm3r.com/linux/getting-your-x10-cm19a-module-working-in-linux/1 Go to your terminal, and cd into that extracted directory.
2 As per the instructions in the software’s readme file, run the following commands:
sudo make
sudo make install
sudo modprobe x10-cm19a
sudo gedit /etc/modprobe.d/blacklist
Then add to the end of the file:
# causes the custom cm19a driver to fail
blacklist lirc_atiusb
blacklist ati_remote
Type in a terminal:
sudo rmmod lirc_atiusb
sudo rmmod ait_remote
sudo gedit /etc/udev/rules.d/40-permissions.rules
Add the following to the end of the file:
KERNEL==”cm19a0″, MODE=”0666″
reboot
then type sudo chmod 0666 /dev/cm19a0
You’re done, yay! Now it’s time to test it out. Remember, this driver only provides an interface to the module. You will have to write your own software / scripts / cron jobs to make it useful.The interface works by sending strings to it. To turn on A1, we send +A1 to it. To turn off C4, we send -C5 to it. In practice, type in the following command to turn on A1:
echo +A1 > /dev/cm19a0
I found all this info so i'm no expert if you need help you will need to ask at the above forum.
Now i have a working drive I have now got to get LMCE to work with it any help would be greate
Thanks to Thom on the IRC for giving so pointers