├── .gitignore ├── LICENSE ├── Part_1 ├── .gitignore ├── README.md └── dht_read.py ├── Part_2 ├── .gitignore ├── README.md ├── dht_read.py └── model.py ├── Part_3 ├── .gitignore ├── README.md ├── dht_read.py ├── model.py ├── templates │ └── admin │ │ └── index.html └── webapp.py ├── Part_4 ├── .gitignore ├── README.md ├── dht_read.py ├── model.py ├── templates │ └── admin │ │ └── index.html └── webapp.py └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/LICENSE -------------------------------------------------------------------------------- /Part_1/.gitignore: -------------------------------------------------------------------------------- 1 | dht.db 2 | -------------------------------------------------------------------------------- /Part_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_1/README.md -------------------------------------------------------------------------------- /Part_1/dht_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_1/dht_read.py -------------------------------------------------------------------------------- /Part_2/.gitignore: -------------------------------------------------------------------------------- 1 | dht.db 2 | -------------------------------------------------------------------------------- /Part_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_2/README.md -------------------------------------------------------------------------------- /Part_2/dht_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_2/dht_read.py -------------------------------------------------------------------------------- /Part_2/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_2/model.py -------------------------------------------------------------------------------- /Part_3/.gitignore: -------------------------------------------------------------------------------- 1 | dht.db 2 | -------------------------------------------------------------------------------- /Part_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_3/README.md -------------------------------------------------------------------------------- /Part_3/dht_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_3/dht_read.py -------------------------------------------------------------------------------- /Part_3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_3/model.py -------------------------------------------------------------------------------- /Part_3/templates/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_3/templates/admin/index.html -------------------------------------------------------------------------------- /Part_3/webapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_3/webapp.py -------------------------------------------------------------------------------- /Part_4/.gitignore: -------------------------------------------------------------------------------- 1 | dht.db 2 | -------------------------------------------------------------------------------- /Part_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_4/README.md -------------------------------------------------------------------------------- /Part_4/dht_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_4/dht_read.py -------------------------------------------------------------------------------- /Part_4/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_4/model.py -------------------------------------------------------------------------------- /Part_4/templates/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_4/templates/admin/index.html -------------------------------------------------------------------------------- /Part_4/webapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/Part_4/webapp.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Raspberry_Pi_SQLite_Sensors/HEAD/README.md --------------------------------------------------------------------------------