├── .gitattributes ├── .gitignore ├── README.md ├── images ├── 1.jpg └── 2.jpg └── src ├── Adafruit_CharLCDPlate.py ├── Adafruit_I2C.py ├── Display.py ├── Monitor.py └── Weather.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blueve/RaspberryPiKit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blueve/RaspberryPiKit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blueve/RaspberryPiKit/HEAD/README.md -------------------------------------------------------------------------------- /images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blueve/RaspberryPiKit/HEAD/images/1.jpg -------------------------------------------------------------------------------- /images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blueve/RaspberryPiKit/HEAD/images/2.jpg -------------------------------------------------------------------------------- /src/Adafruit_CharLCDPlate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blueve/RaspberryPiKit/HEAD/src/Adafruit_CharLCDPlate.py -------------------------------------------------------------------------------- /src/Adafruit_I2C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blueve/RaspberryPiKit/HEAD/src/Adafruit_I2C.py -------------------------------------------------------------------------------- /src/Display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blueve/RaspberryPiKit/HEAD/src/Display.py -------------------------------------------------------------------------------- /src/Monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blueve/RaspberryPiKit/HEAD/src/Monitor.py -------------------------------------------------------------------------------- /src/Weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blueve/RaspberryPiKit/HEAD/src/Weather.py --------------------------------------------------------------------------------