How To Create Kiosk Mode https://github.com/MobilityLab/TransitScreen/wiki/Raspberry-Pi Running chromium in kiosk mode http://lokir.wordpress.com/2012/09/16/raspberry-pi-kiosk-mode-with-chromium/
All posts by
Good resources
Antiloquax Raspberry Pi Assembly Code Blog
Audio Input
The RPi doesn't have an audio input, you need to use I2S via the IO pins or a USB sound card. Sound Cards For The Raspberry Pi Wolfson Pi Audio Card USB Sound Card Resources kb9mwr.blogspot.co.uk
VLC Player
Installing VLC Player sudo apt-get install vlc
omxplayer
Omxplayer is a command line player which is part of XBMC. It is a video player specifically made for the Raspberry PI's GPU. Installing Omxplayer is included with the Rasbioan operating system, but if you need to install it you can use: sudo apt-get install omxplayer Resources http://elinux.org/Omxplayer Key Bindings: 1 Increase Speed 2 Decrease Speed […]
Delays
Linux Functions usleep sleep BCM2835 Library The bcm2835 library by Mike McCauley includes some useful delay functions:
Problems With Old Projects
Can't compile things to check Library file changes Are you using a library like the bcm2835 IO library by Mike McCauley? If so have you updated the library since last working on this project and need to copy the new header file into your project source? Can't run things to check Using eclipse and putty Delete […]
RPi As Wifi Access Point
Compatible USB WiFi Adaptors You need a wifi dongle that supports "managed" mode. Guides www.pi-point.co.uk Fixing the onboard WiFi to be wlan0 Will be needed if you will be plugging in USB WiFi dongles. See here: https://raspberry-projects.com/pi/pi-operating-systems/raspbian/network-settings/multiple-network-adaptors
USB Commands
List USB Devices lsusb
rand()
Geneate Random Value Note: RAND_MAX is not RANDOM_MAX Example functions
