├── .gitattributes ├── .gitignore ├── ESP8266_APRS_6.apk ├── README.md ├── T5-Esp8266 ├── DHT-sensor-library │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── Adafruit_Sensor.h │ ├── DHT.cpp │ ├── DHT.h │ ├── DHT_U.cpp │ ├── DHT_U.h │ ├── README.md │ ├── examples │ │ ├── DHT_Unified_Sensor │ │ │ └── DHT_Unified_Sensor.ino │ │ └── DHTtester │ │ │ └── DHTtester.ino │ ├── keywords.txt │ └── library.properties ├── T5-Esp8266.bin ├── T5-Esp8266.ino └── cablage.jpg ├── Weather station.zip ├── bme_V06 └── bme_V06.ino ├── bme_V07.cpp.bin └── bme_V07 └── bme_V07.ino /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/.gitignore -------------------------------------------------------------------------------- /ESP8266_APRS_6.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/ESP8266_APRS_6.apk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/README.md -------------------------------------------------------------------------------- /T5-Esp8266/DHT-sensor-library/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/DHT-sensor-library/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /T5-Esp8266/DHT-sensor-library/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/DHT-sensor-library/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /T5-Esp8266/DHT-sensor-library/Adafruit_Sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/DHT-sensor-library/Adafruit_Sensor.h -------------------------------------------------------------------------------- /T5-Esp8266/DHT-sensor-library/DHT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/DHT-sensor-library/DHT.cpp -------------------------------------------------------------------------------- /T5-Esp8266/DHT-sensor-library/DHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/DHT-sensor-library/DHT.h -------------------------------------------------------------------------------- /T5-Esp8266/DHT-sensor-library/DHT_U.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/DHT-sensor-library/DHT_U.cpp -------------------------------------------------------------------------------- /T5-Esp8266/DHT-sensor-library/DHT_U.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/DHT-sensor-library/DHT_U.h -------------------------------------------------------------------------------- /T5-Esp8266/DHT-sensor-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/DHT-sensor-library/README.md -------------------------------------------------------------------------------- /T5-Esp8266/DHT-sensor-library/examples/DHT_Unified_Sensor/DHT_Unified_Sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/DHT-sensor-library/examples/DHT_Unified_Sensor/DHT_Unified_Sensor.ino -------------------------------------------------------------------------------- /T5-Esp8266/DHT-sensor-library/examples/DHTtester/DHTtester.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/DHT-sensor-library/examples/DHTtester/DHTtester.ino -------------------------------------------------------------------------------- /T5-Esp8266/DHT-sensor-library/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/DHT-sensor-library/keywords.txt -------------------------------------------------------------------------------- /T5-Esp8266/DHT-sensor-library/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/DHT-sensor-library/library.properties -------------------------------------------------------------------------------- /T5-Esp8266/T5-Esp8266.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/T5-Esp8266.bin -------------------------------------------------------------------------------- /T5-Esp8266/T5-Esp8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/T5-Esp8266.ino -------------------------------------------------------------------------------- /T5-Esp8266/cablage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/T5-Esp8266/cablage.jpg -------------------------------------------------------------------------------- /Weather station.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/Weather station.zip -------------------------------------------------------------------------------- /bme_V06/bme_V06.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/bme_V06/bme_V06.ino -------------------------------------------------------------------------------- /bme_V07.cpp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/bme_V07.cpp.bin -------------------------------------------------------------------------------- /bme_V07/bme_V07.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/Weather/HEAD/bme_V07/bme_V07.ino --------------------------------------------------------------------------------