├── README.md ├── alarm_clock ├── README.md ├── alarm.py └── buzzer.py ├── buffer-ph-adjuster ├── README.md ├── buffer-ph-range.py ├── buffer-ph.py └── calibrate.py ├── dna-flashing-led ├── RTT103.fasta ├── bioseq.py ├── nu_blink.py └── readme.md ├── ldn-bus-ticker ├── README.md ├── TfLAPI.py ├── TfLAPI.pyc ├── data │ └── tfl-bus-stops.csv ├── dist │ └── ldn-bus-ticker.tar.gz └── ldn-bus-ticker.py ├── led-matrix ├── LEDController │ ├── __init__.py │ ├── __init__.pyc │ ├── controller.pyc │ ├── functions.py │ └── functions.pyc ├── MANIFEST ├── README.md ├── dist │ └── LEDController-0.1.1.tar.gz ├── gui-matrix.ui ├── icon.ico ├── icon.png ├── led-controller-gui.py ├── london-underground-neopixel │ ├── README.md │ └── underground_status.py └── setup.py ├── london-underground-neopixel ├── README.md └── underground_status.py ├── neopixel-timer ├── README.md ├── neopixel-timer.py └── potentiometer.py ├── servo-temp ├── README.md ├── main.py └── temp.py └── streaming-temp-neopixel ├── README.md ├── config.json ├── main.py └── temp.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/README.md -------------------------------------------------------------------------------- /alarm_clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/alarm_clock/README.md -------------------------------------------------------------------------------- /alarm_clock/alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/alarm_clock/alarm.py -------------------------------------------------------------------------------- /alarm_clock/buzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/alarm_clock/buzzer.py -------------------------------------------------------------------------------- /buffer-ph-adjuster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/buffer-ph-adjuster/README.md -------------------------------------------------------------------------------- /buffer-ph-adjuster/buffer-ph-range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/buffer-ph-adjuster/buffer-ph-range.py -------------------------------------------------------------------------------- /buffer-ph-adjuster/buffer-ph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/buffer-ph-adjuster/buffer-ph.py -------------------------------------------------------------------------------- /buffer-ph-adjuster/calibrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/buffer-ph-adjuster/calibrate.py -------------------------------------------------------------------------------- /dna-flashing-led/RTT103.fasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/dna-flashing-led/RTT103.fasta -------------------------------------------------------------------------------- /dna-flashing-led/bioseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/dna-flashing-led/bioseq.py -------------------------------------------------------------------------------- /dna-flashing-led/nu_blink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/dna-flashing-led/nu_blink.py -------------------------------------------------------------------------------- /dna-flashing-led/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/dna-flashing-led/readme.md -------------------------------------------------------------------------------- /ldn-bus-ticker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/ldn-bus-ticker/README.md -------------------------------------------------------------------------------- /ldn-bus-ticker/TfLAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/ldn-bus-ticker/TfLAPI.py -------------------------------------------------------------------------------- /ldn-bus-ticker/TfLAPI.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/ldn-bus-ticker/TfLAPI.pyc -------------------------------------------------------------------------------- /ldn-bus-ticker/data/tfl-bus-stops.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/ldn-bus-ticker/data/tfl-bus-stops.csv -------------------------------------------------------------------------------- /ldn-bus-ticker/dist/ldn-bus-ticker.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/ldn-bus-ticker/dist/ldn-bus-ticker.tar.gz -------------------------------------------------------------------------------- /ldn-bus-ticker/ldn-bus-ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/ldn-bus-ticker/ldn-bus-ticker.py -------------------------------------------------------------------------------- /led-matrix/LEDController/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /led-matrix/LEDController/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/led-matrix/LEDController/__init__.pyc -------------------------------------------------------------------------------- /led-matrix/LEDController/controller.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/led-matrix/LEDController/controller.pyc -------------------------------------------------------------------------------- /led-matrix/LEDController/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/led-matrix/LEDController/functions.py -------------------------------------------------------------------------------- /led-matrix/LEDController/functions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/led-matrix/LEDController/functions.pyc -------------------------------------------------------------------------------- /led-matrix/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/led-matrix/MANIFEST -------------------------------------------------------------------------------- /led-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/led-matrix/README.md -------------------------------------------------------------------------------- /led-matrix/dist/LEDController-0.1.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/led-matrix/dist/LEDController-0.1.1.tar.gz -------------------------------------------------------------------------------- /led-matrix/gui-matrix.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/led-matrix/gui-matrix.ui -------------------------------------------------------------------------------- /led-matrix/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/led-matrix/icon.ico -------------------------------------------------------------------------------- /led-matrix/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/led-matrix/icon.png -------------------------------------------------------------------------------- /led-matrix/led-controller-gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/led-matrix/led-controller-gui.py -------------------------------------------------------------------------------- /led-matrix/london-underground-neopixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/led-matrix/london-underground-neopixel/README.md -------------------------------------------------------------------------------- /led-matrix/london-underground-neopixel/underground_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/led-matrix/london-underground-neopixel/underground_status.py -------------------------------------------------------------------------------- /led-matrix/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/led-matrix/setup.py -------------------------------------------------------------------------------- /london-underground-neopixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/london-underground-neopixel/README.md -------------------------------------------------------------------------------- /london-underground-neopixel/underground_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/london-underground-neopixel/underground_status.py -------------------------------------------------------------------------------- /neopixel-timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/neopixel-timer/README.md -------------------------------------------------------------------------------- /neopixel-timer/neopixel-timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/neopixel-timer/neopixel-timer.py -------------------------------------------------------------------------------- /neopixel-timer/potentiometer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/neopixel-timer/potentiometer.py -------------------------------------------------------------------------------- /servo-temp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/servo-temp/README.md -------------------------------------------------------------------------------- /servo-temp/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/servo-temp/main.py -------------------------------------------------------------------------------- /servo-temp/temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/servo-temp/temp.py -------------------------------------------------------------------------------- /streaming-temp-neopixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/streaming-temp-neopixel/README.md -------------------------------------------------------------------------------- /streaming-temp-neopixel/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/streaming-temp-neopixel/config.json -------------------------------------------------------------------------------- /streaming-temp-neopixel/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/streaming-temp-neopixel/main.py -------------------------------------------------------------------------------- /streaming-temp-neopixel/temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismailuddin/raspberrypi/HEAD/streaming-temp-neopixel/temp.py --------------------------------------------------------------------------------