Difference between revisions of "BeagleBone"

From Robert-Depot
Jump to: navigation, search
(Setup)
(Hardware)
Line 24: Line 24:
 
*https://groups.google.com/forum/#!msg/beagleboard/-iNTsNh94HI/faELHCJn_esJ
 
*https://groups.google.com/forum/#!msg/beagleboard/-iNTsNh94HI/faELHCJn_esJ
  
 +
=GPIO=
 +
==PyBBIO==
 +
*https://github.com/alexanderhiam/PyBBIO
 +
*https://github.com/alexanderhiam/PyBBIO/issues/18
 +
==other==
 +
gpio - http://beaglebone.cameon.net/home/using-the-gpios
 
=Hardware=
 
=Hardware=
 
==C920==
 
==C920==
Line 34: Line 40:
 
*http://zachhuff386.github.io/dashcam/
 
*http://zachhuff386.github.io/dashcam/
 
**BeagleBone Black (16gb/1080p/30fps/Logitech C920): 9 hrs 30 mins
 
**BeagleBone Black (16gb/1080p/30fps/Logitech C920): 9 hrs 30 mins
 
==PyBBIO==
 
*https://github.com/alexanderhiam/PyBBIO/issues/18
 
==GPIO==
 
gpio - http://beaglebone.cameon.net/home/using-the-gpios
 
 
==Servo==
 
==Servo==
 
*https://groups.google.com/forum/?fromgroups#!topic/beagleboard/NBm14riUIts
 
*https://groups.google.com/forum/?fromgroups#!topic/beagleboard/NBm14riUIts

Revision as of 07:52, 17 November 2013

<<< back to Wiki Home

Setup

What Kernel am I running

  • uname -a

other

Debugging

TTL Cable

954bbb_MED.jpg

(RED IS NOT CONNECTED)

ssh not working

want to allow processes to keep running?

GPIO

PyBBIO

other

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

Hardware

C920

=capture

streaming

dash cam

Servo

Serial Communication

Ubuntu

Angstrom

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

Pockesphinx

Audio

  • purchase usb sound card.
  • connect stereo microphone.
  • record audio with arecord:
    • arecord -D sysdefault -t wav -c 2 -r 44100 -f S16_LE -v binaural2.wav
  • play audio:
    • 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

Run a Script on Login (Start a Service)

http://www.nunoalves.com/open_source/?p=308 http://kezhong.wordpress.com/2011/11/19/creating-my-own-systemd-service-files-on-fedora-16x86_64/

Other