├── Adafruit_I2C.py ├── LICENSE ├── README.md ├── __init__.py ├── blinkled.py ├── blinky ├── blinky.py └── ds18b20.py ├── burnraspian.sh ├── ds18b20.py ├── ds18b20.pyc ├── google.py ├── luxreader.py ├── mini.jpg ├── readings.py ├── sensortests ├── AM2302 │ ├── AdafruitDHT.py │ ├── google_spreadsheet.py │ ├── simpletest.py │ └── test.sh ├── BMP180 │ └── simpletest.py ├── DS18B20 │ ├── check.sh │ └── test.py └── TSL2561 │ ├── Adafruit_I2C.py │ ├── Adafruit_I2C.pyc │ └── test.py └── texty ├── ds18b20.py └── texty.py /Adafruit_I2C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/Adafruit_I2C.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'jeremymorgan' 2 | -------------------------------------------------------------------------------- /blinkled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/blinkled.py -------------------------------------------------------------------------------- /blinky/blinky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/blinky/blinky.py -------------------------------------------------------------------------------- /blinky/ds18b20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/blinky/ds18b20.py -------------------------------------------------------------------------------- /burnraspian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/burnraspian.sh -------------------------------------------------------------------------------- /ds18b20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/ds18b20.py -------------------------------------------------------------------------------- /ds18b20.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/ds18b20.pyc -------------------------------------------------------------------------------- /google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/google.py -------------------------------------------------------------------------------- /luxreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/luxreader.py -------------------------------------------------------------------------------- /mini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/mini.jpg -------------------------------------------------------------------------------- /readings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/readings.py -------------------------------------------------------------------------------- /sensortests/AM2302/AdafruitDHT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/sensortests/AM2302/AdafruitDHT.py -------------------------------------------------------------------------------- /sensortests/AM2302/google_spreadsheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/sensortests/AM2302/google_spreadsheet.py -------------------------------------------------------------------------------- /sensortests/AM2302/simpletest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/sensortests/AM2302/simpletest.py -------------------------------------------------------------------------------- /sensortests/AM2302/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo python AdafruitDHT.py 2302 22 3 | -------------------------------------------------------------------------------- /sensortests/BMP180/simpletest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/sensortests/BMP180/simpletest.py -------------------------------------------------------------------------------- /sensortests/DS18B20/check.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd /sys/bus/w1/devices 4 | ls 5 | echo "cat w1_slave" 6 | 7 | -------------------------------------------------------------------------------- /sensortests/DS18B20/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/sensortests/DS18B20/test.py -------------------------------------------------------------------------------- /sensortests/TSL2561/Adafruit_I2C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/sensortests/TSL2561/Adafruit_I2C.py -------------------------------------------------------------------------------- /sensortests/TSL2561/Adafruit_I2C.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/sensortests/TSL2561/Adafruit_I2C.pyc -------------------------------------------------------------------------------- /sensortests/TSL2561/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/sensortests/TSL2561/test.py -------------------------------------------------------------------------------- /texty/ds18b20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/texty/ds18b20.py -------------------------------------------------------------------------------- /texty/texty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Weather_Station/HEAD/texty/texty.py --------------------------------------------------------------------------------