Difference between revisions of "Raspberry Pi"

From YobiWiki
Jump to navigation Jump to search
Line 36: Line 36:
 
modprobe -r pn533
 
modprobe -r pn533
 
echo pn533 > /etc/modprobe.d/pn533-blacklist.conf
 
echo pn533 > /etc/modprobe.d/pn533-blacklist.conf
  +
==SPI==
  +
sudo modprobe spi_bcm2708
  +
Test:
  +
wget http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=blob_plain;f=Documentation/spi/spidev_test.c -O spidev_test.c
  +
gcc -o spidev_test spidev_test.c
  +
sudo ./spidev_test
  +
We should get some hex dump about dead beef and bad food ;-)
  +
<br>If test fails, see here for updating stuffs:
  +
* http://www.brianhensley.net/2012/07/getting-spi-working-on-raspberry-pi.html
  +
[https://lh3.ggpht.com/-zwM_OmpN_SM/UBCSOk1E1PI/AAAAAAAAAQY/GJ4EsfjFcgU/s1600/GPIOs.png GPIO pinout], see also [http://mitchtech.net/wp-content/uploads/2012/08/raspi_arduino_spi.png here]
  +
With Python:
  +
* http://hackaday.com/2013/01/06/hardware-spi-with-python-on-a-raspberry-pi/
  +
* http://louisthiery.com/spi-python-hardware-spi-for-raspi/

Revision as of 00:47, 23 March 2013

Links

Startup

Remotely: provide DHCP over Ethernet
Access via ssh, Username: pi Password: raspberry
First time, the device propose to run raspi-config

sudo raspi-config


Then, better to renew SSH server keys, see RPi remote access

sudo rm /etc/ssh/ssh_host_* && sudo dpkg-reconfigure openssh-server

Wi-Fi

Using Wi-Pi
See user manual for Raspbian.
Edit /etc/network/interfaces and add wlan0 section similar to:

auto wlan0
iface wlan0 inet dhcp
wpa-ssid <name of your WiFi network>
wpa-psk <password of your WiFi network>

Then

sudo /etc/init.d/networking restart

NFC

apt-get install git autoconf libtool gcc libusb-dev
apt-get install dpkg-dev debhelper dh-autoreconf
git clone https://code.google.com/p/libnfc/
cd libnfc
dpkg-buildpackage -b -uc -us
cd ..
dpkg -i *deb

For a SCL3711:

modprobe -r pn533
echo pn533 > /etc/modprobe.d/pn533-blacklist.conf

SPI

sudo modprobe spi_bcm2708

Test:

wget http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=blob_plain;f=Documentation/spi/spidev_test.c -O spidev_test.c
gcc -o spidev_test spidev_test.c
sudo ./spidev_test

We should get some hex dump about dead beef and bad food ;-)
If test fails, see here for updating stuffs:

GPIO pinout, see also here With Python: