├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bluetooth-scan.sh ├── customize-raspbian.sh ├── customize-ubuntu.sh ├── equality_test.sh ├── install-air-pi.sh ├── install-rpi-mjpg.sh ├── install-twython.sh ├── install-uv4l.sh ├── ip-location.py ├── ip_mailer.py ├── speedtest-ifttt.sh ├── speedtest.py ├── stockmonitor-neopixel.py ├── stockmonitor-sensehat.py ├── stockticker-ledboard.py ├── stockticker-sensehat.py └── take-photo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/README.md -------------------------------------------------------------------------------- /bluetooth-scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/bluetooth-scan.sh -------------------------------------------------------------------------------- /customize-raspbian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/customize-raspbian.sh -------------------------------------------------------------------------------- /customize-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/customize-ubuntu.sh -------------------------------------------------------------------------------- /equality_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/equality_test.sh -------------------------------------------------------------------------------- /install-air-pi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/install-air-pi.sh -------------------------------------------------------------------------------- /install-rpi-mjpg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/install-rpi-mjpg.sh -------------------------------------------------------------------------------- /install-twython.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/install-twython.sh -------------------------------------------------------------------------------- /install-uv4l.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/install-uv4l.sh -------------------------------------------------------------------------------- /ip-location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/ip-location.py -------------------------------------------------------------------------------- /ip_mailer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/ip_mailer.py -------------------------------------------------------------------------------- /speedtest-ifttt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/speedtest-ifttt.sh -------------------------------------------------------------------------------- /speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/speedtest.py -------------------------------------------------------------------------------- /stockmonitor-neopixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/stockmonitor-neopixel.py -------------------------------------------------------------------------------- /stockmonitor-sensehat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/stockmonitor-sensehat.py -------------------------------------------------------------------------------- /stockticker-ledboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/stockticker-ledboard.py -------------------------------------------------------------------------------- /stockticker-sensehat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/stockticker-sensehat.py -------------------------------------------------------------------------------- /take-photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoodford/raspberrypi/HEAD/take-photo.py --------------------------------------------------------------------------------