Following Adafruit's instructions for their capacitive touch sensor (https://learn.adafruit.com/mpr121-capacitive-touch-sensor-on-raspberry-pi-and-beaglebone-black/overview) I'm getting the error message when trying to run their example python script:
pi@raspberrypi ~/Adafruit_Python_MPR121/examples $ python playtest.py
Adafruit MPR121 Capacitive Touch Audio Player Test
chmod: cannot access `/sys/module/i2c_bcm2708/parameters/combined': No such file or directory
Traceback (most recent call last):
File "playtest.py", line 37, in <module>
if not cap.begin():
File "/usr/local/lib/python2.7/dist-packages/Adafruit_MPR121-1.1.0-py2.7.egg/Adafruit_MPR121/MPR121.py", line 90, in begin
I2C.require_repeated_start()
File "/usr/local/lib/python2.7/dist-packages/Adafruit_GPIO-0.9.3-py2.7.egg/Adafruit_GPIO/I2C.py", line 81, in require_repeated_start
subprocess.check_call('chmod 666 /sys/module/i2c_bcm2708/parameters/combined', shell=True)
File "/usr/lib/python2.7/subprocess.py", line 511, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command 'chmod 666 /sys/module/i2c_bcm2708/parameters/combined' returned non-zero exit status 1
I've checked the contents of the parameters folder and it's empty apart from a file named 'baudrate'.
The Pi is a Model B - Series 1. Raspbian is up to date.
pi@raspberrypi ~/Adafruit_Python_MPR121/examples $ uname -a
Linux raspberrypi 3.10.25+ #622 PREEMPT Fri Jan 3 18:41:00 GMT 2014 armv6l GNU/Linux
pi@raspberrypi ~/Adafruit_Python_MPR121/examples $ cat /etc/os-release
PRETTY_NAME="Raspbian GNU/Linux 7 (wheezy)"
NAME="Raspbian GNU/Linux"
VERSION_ID="7"
VERSION="7 (wheezy)"
ID=raspbian
ID_LIKE=debian
ANSI_COLOR="1;31"
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
I've searched high and low but cannot find a fix.