├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Concept.odg ├── Concept1.png ├── Concept2.png ├── Database ├── get-esp-data.php └── post-esp-data.php ├── IPMADownloader ├── readme.md ├── requirements.txt └── scripts │ ├── get_ipma_api_data.sh │ ├── load_stations.py │ ├── retrieve_station_data.py │ └── wanted_stations.txt ├── LICENSE ├── README.md ├── SI1145+GYML8511_combined_response.png ├── Sensor └── SensorWithSD │ ├── .gitignore │ ├── .vscode │ └── extensions.json │ ├── include │ ├── README │ └── main.hpp │ ├── lib │ ├── HTTP-Post │ │ ├── HTTPPost.cpp │ │ └── HTTPPost.hpp │ ├── README │ └── configReader │ │ ├── configReader.cpp │ │ ├── configReader.hpp │ │ └── examples │ │ └── ConnectWiFi │ │ └── ConnectWiFi.ino │ ├── platformio.ini │ ├── src │ └── main.cpp │ └── test │ └── README ├── img └── WeatherStationPrototype.jpg ├── prototype └── Weather station node - esphome.yaml ├── triband_pyranometer_test25_04_2021.png └── triband_pyranometer_test25_04_2021_mymodel1.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Concept.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Concept.odg -------------------------------------------------------------------------------- /Concept1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Concept1.png -------------------------------------------------------------------------------- /Concept2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Concept2.png -------------------------------------------------------------------------------- /Database/get-esp-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Database/get-esp-data.php -------------------------------------------------------------------------------- /Database/post-esp-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Database/post-esp-data.php -------------------------------------------------------------------------------- /IPMADownloader/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/IPMADownloader/readme.md -------------------------------------------------------------------------------- /IPMADownloader/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/IPMADownloader/requirements.txt -------------------------------------------------------------------------------- /IPMADownloader/scripts/get_ipma_api_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/IPMADownloader/scripts/get_ipma_api_data.sh -------------------------------------------------------------------------------- /IPMADownloader/scripts/load_stations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/IPMADownloader/scripts/load_stations.py -------------------------------------------------------------------------------- /IPMADownloader/scripts/retrieve_station_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/IPMADownloader/scripts/retrieve_station_data.py -------------------------------------------------------------------------------- /IPMADownloader/scripts/wanted_stations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/IPMADownloader/scripts/wanted_stations.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/README.md -------------------------------------------------------------------------------- /SI1145+GYML8511_combined_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/SI1145+GYML8511_combined_response.png -------------------------------------------------------------------------------- /Sensor/SensorWithSD/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Sensor/SensorWithSD/.gitignore -------------------------------------------------------------------------------- /Sensor/SensorWithSD/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Sensor/SensorWithSD/.vscode/extensions.json -------------------------------------------------------------------------------- /Sensor/SensorWithSD/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Sensor/SensorWithSD/include/README -------------------------------------------------------------------------------- /Sensor/SensorWithSD/include/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Sensor/SensorWithSD/include/main.hpp -------------------------------------------------------------------------------- /Sensor/SensorWithSD/lib/HTTP-Post/HTTPPost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Sensor/SensorWithSD/lib/HTTP-Post/HTTPPost.cpp -------------------------------------------------------------------------------- /Sensor/SensorWithSD/lib/HTTP-Post/HTTPPost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Sensor/SensorWithSD/lib/HTTP-Post/HTTPPost.hpp -------------------------------------------------------------------------------- /Sensor/SensorWithSD/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Sensor/SensorWithSD/lib/README -------------------------------------------------------------------------------- /Sensor/SensorWithSD/lib/configReader/configReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Sensor/SensorWithSD/lib/configReader/configReader.cpp -------------------------------------------------------------------------------- /Sensor/SensorWithSD/lib/configReader/configReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Sensor/SensorWithSD/lib/configReader/configReader.hpp -------------------------------------------------------------------------------- /Sensor/SensorWithSD/lib/configReader/examples/ConnectWiFi/ConnectWiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Sensor/SensorWithSD/lib/configReader/examples/ConnectWiFi/ConnectWiFi.ino -------------------------------------------------------------------------------- /Sensor/SensorWithSD/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Sensor/SensorWithSD/platformio.ini -------------------------------------------------------------------------------- /Sensor/SensorWithSD/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Sensor/SensorWithSD/src/main.cpp -------------------------------------------------------------------------------- /Sensor/SensorWithSD/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/Sensor/SensorWithSD/test/README -------------------------------------------------------------------------------- /img/WeatherStationPrototype.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/img/WeatherStationPrototype.jpg -------------------------------------------------------------------------------- /prototype/Weather station node - esphome.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/prototype/Weather station node - esphome.yaml -------------------------------------------------------------------------------- /triband_pyranometer_test25_04_2021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/triband_pyranometer_test25_04_2021.png -------------------------------------------------------------------------------- /triband_pyranometer_test25_04_2021_mymodel1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONEARMY/project-kamp-weather-station/HEAD/triband_pyranometer_test25_04_2021_mymodel1.png --------------------------------------------------------------------------------