forked from juniorug/libsensorPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
49 lines (32 loc) · 1.16 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
LibsensorPy
An extendable python library to manipulate sensors coupled to the Raspberry Pi
WHAT IS NEEDED BEFORE INSTALL?
1) Configure and enable SPI and I2C ports on raspperry:
$ sudo apt-get install python-smbus
$ sudo apt-get install i2c-tools
2.1) For Raspbian users, check /etc/modprobe.d/raspi-blacklist.conf and comment "blacklist i2c-bcm2708" and "blacklist spi-bcm2708" by running
$ sudo nano /etc/modprobe.d/raspi-blacklist.conf
and adding a # (if its not there).
# blacklist i2c-bcm2708
# blacklist spi-bcm2708
2.2) For Wheezy or something-other-than-Occidentalis, add the following lines to /etc/modules:
i2c-dev
i2c-bcm2708
spi-bcm2708
and then reboot.
3) Install pigpio:
$ wget abyz.co.uk/rpi/pigpio/pigpio.zip
$ unzip pigpio.zip
$ cd PIGPIO
$ sudo make
$ sudo make install
4) Install setuptools:
sudo apt-get install python-setuptools
How to download and install LibsensorPy:
1) Via pip:
sudo pip install libsensorPy
2) Via wget:
$ wget https://pypi.python.org/packages/source/l/libsensorPy/libsensorPy-0.0.4.tar.gz
$ tar -zxvf libsensorPy-0.0.4.tar.gz
$ cd libsensorPy-0.0.4/
$ sudo python setup.py install