├── .gitattributes ├── LICENSE ├── README.md ├── libraries ├── Adafruit-BMP085-Library-master │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── Adafruit_BMP085.cpp │ ├── Adafruit_BMP085.h │ ├── README.txt │ ├── examples │ │ └── BMP085test │ │ │ └── BMP085test.ino │ └── library.properties └── Low-Power-master │ ├── Examples │ ├── idleWakePeriodic │ │ └── idleWakePeriodic.ino │ ├── powerDownWakeExternalInterrupt │ │ └── powerDownWakeExternalInterrupt.ino │ ├── powerDownWakePeriodic │ │ └── powerDownWakePeriodic.ino │ └── standbyExternalInterruptSAMD21 │ │ └── standbyExternalInterruptSAMD21.ino │ ├── LowPower.cpp │ ├── LowPower.h │ ├── README.md │ ├── keywords.txt │ └── library.properties ├── scale_image ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg └── source.psd ├── scheme1.png ├── scheme2.png └── weather_predict_approx └── weather_predict_approx.ino /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/README.md -------------------------------------------------------------------------------- /libraries/Adafruit-BMP085-Library-master/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Adafruit-BMP085-Library-master/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /libraries/Adafruit-BMP085-Library-master/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Adafruit-BMP085-Library-master/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /libraries/Adafruit-BMP085-Library-master/Adafruit_BMP085.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Adafruit-BMP085-Library-master/Adafruit_BMP085.cpp -------------------------------------------------------------------------------- /libraries/Adafruit-BMP085-Library-master/Adafruit_BMP085.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Adafruit-BMP085-Library-master/Adafruit_BMP085.h -------------------------------------------------------------------------------- /libraries/Adafruit-BMP085-Library-master/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Adafruit-BMP085-Library-master/README.txt -------------------------------------------------------------------------------- /libraries/Adafruit-BMP085-Library-master/examples/BMP085test/BMP085test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Adafruit-BMP085-Library-master/examples/BMP085test/BMP085test.ino -------------------------------------------------------------------------------- /libraries/Adafruit-BMP085-Library-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Adafruit-BMP085-Library-master/library.properties -------------------------------------------------------------------------------- /libraries/Low-Power-master/Examples/idleWakePeriodic/idleWakePeriodic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Low-Power-master/Examples/idleWakePeriodic/idleWakePeriodic.ino -------------------------------------------------------------------------------- /libraries/Low-Power-master/Examples/powerDownWakeExternalInterrupt/powerDownWakeExternalInterrupt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Low-Power-master/Examples/powerDownWakeExternalInterrupt/powerDownWakeExternalInterrupt.ino -------------------------------------------------------------------------------- /libraries/Low-Power-master/Examples/powerDownWakePeriodic/powerDownWakePeriodic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Low-Power-master/Examples/powerDownWakePeriodic/powerDownWakePeriodic.ino -------------------------------------------------------------------------------- /libraries/Low-Power-master/Examples/standbyExternalInterruptSAMD21/standbyExternalInterruptSAMD21.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Low-Power-master/Examples/standbyExternalInterruptSAMD21/standbyExternalInterruptSAMD21.ino -------------------------------------------------------------------------------- /libraries/Low-Power-master/LowPower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Low-Power-master/LowPower.cpp -------------------------------------------------------------------------------- /libraries/Low-Power-master/LowPower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Low-Power-master/LowPower.h -------------------------------------------------------------------------------- /libraries/Low-Power-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Low-Power-master/README.md -------------------------------------------------------------------------------- /libraries/Low-Power-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Low-Power-master/keywords.txt -------------------------------------------------------------------------------- /libraries/Low-Power-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/libraries/Low-Power-master/library.properties -------------------------------------------------------------------------------- /scale_image/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/scale_image/1.jpg -------------------------------------------------------------------------------- /scale_image/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/scale_image/2.jpg -------------------------------------------------------------------------------- /scale_image/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/scale_image/3.jpg -------------------------------------------------------------------------------- /scale_image/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/scale_image/4.jpg -------------------------------------------------------------------------------- /scale_image/source.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/scale_image/source.psd -------------------------------------------------------------------------------- /scheme1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/scheme1.png -------------------------------------------------------------------------------- /scheme2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/scheme2.png -------------------------------------------------------------------------------- /weather_predict_approx/weather_predict_approx.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/WeatherPredict/HEAD/weather_predict_approx/weather_predict_approx.ino --------------------------------------------------------------------------------