├── .gitignore ├── README.md ├── airpi.py ├── outputs.cfg ├── outputs ├── __init__.py ├── output.py ├── print.py └── xively.py ├── sensors.cfg ├── sensors ├── Adafruit_I2C.py ├── __init__.py ├── analogue.py ├── bmp085.py ├── bmpBackend.py ├── dht22.py ├── dhtreader.so ├── mcp3008.py └── sensor.py └── settings.cfg /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/README.md -------------------------------------------------------------------------------- /airpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/airpi.py -------------------------------------------------------------------------------- /outputs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/outputs.cfg -------------------------------------------------------------------------------- /outputs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outputs/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/outputs/output.py -------------------------------------------------------------------------------- /outputs/print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/outputs/print.py -------------------------------------------------------------------------------- /outputs/xively.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/outputs/xively.py -------------------------------------------------------------------------------- /sensors.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/sensors.cfg -------------------------------------------------------------------------------- /sensors/Adafruit_I2C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/sensors/Adafruit_I2C.py -------------------------------------------------------------------------------- /sensors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sensors/analogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/sensors/analogue.py -------------------------------------------------------------------------------- /sensors/bmp085.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/sensors/bmp085.py -------------------------------------------------------------------------------- /sensors/bmpBackend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/sensors/bmpBackend.py -------------------------------------------------------------------------------- /sensors/dht22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/sensors/dht22.py -------------------------------------------------------------------------------- /sensors/dhtreader.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/sensors/dhtreader.so -------------------------------------------------------------------------------- /sensors/mcp3008.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/sensors/mcp3008.py -------------------------------------------------------------------------------- /sensors/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/sensors/sensor.py -------------------------------------------------------------------------------- /settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhartley/AirPi/HEAD/settings.cfg --------------------------------------------------------------------------------