Difference between revisions of "BeagleBone"

From Robert-Depot
Jump to: navigation, search
(Hardware)
(Servo)
Line 24: Line 24:
 
*https://groups.google.com/forum/?fromgroups#!topic/beagleboard/wjbOVE6ItNg
 
*https://groups.google.com/forum/?fromgroups#!topic/beagleboard/wjbOVE6ItNg
 
**implementation in bonescript https://github.com/jadonk/bonescript/blob/master/node_modules/bonescript/index.js
 
**implementation in bonescript https://github.com/jadonk/bonescript/blob/master/node_modules/bonescript/index.js
 +
*by hand http://www.phys-x.org/rbots/index.php?option=com_content&view=article&id=106:lesson-3-beaglebone-black-pwm&catid=46:beaglebone-black&Itemid=81
  
 
=Serial Communication=
 
=Serial Communication=

Revision as of 07:00, 22 May 2013

Setup

Debugging

TTL Cable

954bbb_MED.jpg

(RED IS NOT CONNECTED)

ssh not working

Hardware

PyBBIO

GPIO

gpio - http://beaglebone.cameon.net/home/using-the-gpios

Servo

Serial Communication

Ubuntu

Angstrom

  • update opkg:
    • opkg update
  • install pyserial:
    • opkg install python-pyserial

Pockesphinx

Audio

  • purchase usb sound card.
  • connect stereo microphone.
  • arecord:
    • arecord -D sysdefault -t wav -c 2 -r 44100 -f S16_LE -v binaural2.wav
  • play:
    • aplay binaural2.wav
  • use the ALSA mixer to set recording levels, output levels, etc.
    • alsamixer

Debian

Installing Ubuntu

Curses

  • install python-curses:
    • opkg install python-curses

Other