Difference between revisions of "GPIO"
(→I2C) |
|||
Line 4: | Line 4: | ||
==I2C== | ==I2C== | ||
+ | |||
+ | <pre> | ||
+ | i2c-dev | ||
+ | i2c-bcm2708 | ||
+ | </pre> | ||
+ | |||
+ | <pre> | ||
+ | sudo nano /etc/modules | ||
+ | </pre> | ||
+ | |||
+ | <pre> | ||
+ | # /etc/modules: kernel modules to load at boot time. | ||
+ | # | ||
+ | # This file contains the names of kernel modules that should be loaded | ||
+ | # at boot time, one per line. Lines beginning with "#" are ignored. | ||
+ | # Parameters can be specified after the module name. | ||
+ | |||
+ | snd-bcm2835 | ||
+ | i2c-dev | ||
+ | i2c-bcm2708 | ||
+ | </pre> | ||
+ | |||
+ | in case blacklisted | ||
+ | |||
+ | <pre> | ||
+ | sudo nano /etc/modprobe.d/raspi-blacklist.conf | ||
+ | </pre> | ||
+ | |||
+ | <pre> | ||
+ | sudo i2cdetect -y 1 | ||
+ | </pre> | ||
+ | |||
+ | <pre> | ||
+ | sudo i2cdetect -y 0 | ||
+ | </pre> | ||
+ | |||
+ | <pre> | ||
+ | pi@raspberrypi ~ $ sudo i2cdetect -y 1 | ||
+ | 0 1 2 3 4 5 6 7 8 9 a b c d e f | ||
+ | 00: -- -- -- -- -- -- -- -- -- -- -- -- -- | ||
+ | 10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | ||
+ | 20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | ||
+ | 30: -- -- -- -- -- -- -- -- -- 39 -- -- -- -- -- -- | ||
+ | 40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | ||
+ | 50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | ||
+ | 60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- | ||
+ | 70: -- -- -- -- -- -- -- -- | ||
+ | </pre> | ||
==SPI== | ==SPI== |
Revision as of 16:19, 6 November 2014
GPIO
I2C
i2c-dev i2c-bcm2708
sudo nano /etc/modules
# /etc/modules: kernel modules to load at boot time. # # This file contains the names of kernel modules that should be loaded # at boot time, one per line. Lines beginning with "#" are ignored. # Parameters can be specified after the module name. snd-bcm2835 i2c-dev i2c-bcm2708
in case blacklisted
sudo nano /etc/modprobe.d/raspi-blacklist.conf
sudo i2cdetect -y 1
sudo i2cdetect -y 0
pi@raspberrypi ~ $ sudo i2cdetect -y 1 0 1 2 3 4 5 6 7 8 9 a b c d e f 00: -- -- -- -- -- -- -- -- -- -- -- -- -- 10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 30: -- -- -- -- -- -- -- -- -- 39 -- -- -- -- -- -- 40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 70: -- -- -- -- -- -- -- --