Difference between revisions of "Getting started with rpi serial and BitWizard expansion boards"

From BitWizard WIKI
Jump to: navigation, search
Line 3: Line 3:
  
 
* get raspian
 
* get raspian
* comment out the two lines in /etc/modprobe.d/raspi-blacklist.conf  
+
* comment out the two lines in /etc/modprobe.d/raspi-blacklist.conf (no longer necessary?)
 
* get bw_rpi_tools
 
* get bw_rpi_tools
 
  git clone https://github.com/rewolff/bw_rpi_tools.git
 
  git clone https://github.com/rewolff/bw_rpi_tools.git

Revision as of 11:35, 3 January 2013

Each of the following needs to be expanded. Please add a line or two if you can.

  • get raspian
  • comment out the two lines in /etc/modprobe.d/raspi-blacklist.conf (no longer necessary?)
  • get bw_rpi_tools
git clone https://github.com/rewolff/bw_rpi_tools.git
  • compile bw_tool
cd bw_rpi_tools/bw_tool/
make
  • install bw_tool
sudo make install 
  • get rpi-update (no longer necessary?)
  • run rpi-update (no longer necessary?)
  • reboot (no longer necessary?)
  • for the spi version, run
sudo bw_tool -t "hello world" 
  • for the i2c version on a rev 1 rasbperry pi, run
sudo modprobe i2c-dev
sudo bw_tool -I -t "hello world"
  • for the i2c version on a rev 2 raspberry pi, you need to specify the other I2C bus:
sudo bw_tool -I -D /dev/i2c-1 -t "hello world"

(the sample assumes the LCD and displays a text on it.) Try "-a <youraddress> -i" instead of the '-t "hello world" ' to identify your expansion board. Fill in the address from default addresses.