├── .travis.yml ├── README.md ├── interface ├── .DS_Store ├── app.js ├── public │ ├── css │ │ └── demo.css │ └── js │ │ ├── ajaxq.js │ │ └── demo.js └── views │ └── interface.jade ├── sensor_test └── sensor_test.ino └── wifi_weather_station └── wifi_weather_station.ino /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makecademy/wifi-weather-station/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makecademy/wifi-weather-station/HEAD/README.md -------------------------------------------------------------------------------- /interface/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makecademy/wifi-weather-station/HEAD/interface/.DS_Store -------------------------------------------------------------------------------- /interface/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makecademy/wifi-weather-station/HEAD/interface/app.js -------------------------------------------------------------------------------- /interface/public/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makecademy/wifi-weather-station/HEAD/interface/public/css/demo.css -------------------------------------------------------------------------------- /interface/public/js/ajaxq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makecademy/wifi-weather-station/HEAD/interface/public/js/ajaxq.js -------------------------------------------------------------------------------- /interface/public/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makecademy/wifi-weather-station/HEAD/interface/public/js/demo.js -------------------------------------------------------------------------------- /interface/views/interface.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makecademy/wifi-weather-station/HEAD/interface/views/interface.jade -------------------------------------------------------------------------------- /sensor_test/sensor_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makecademy/wifi-weather-station/HEAD/sensor_test/sensor_test.ino -------------------------------------------------------------------------------- /wifi_weather_station/wifi_weather_station.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makecademy/wifi-weather-station/HEAD/wifi_weather_station/wifi_weather_station.ino --------------------------------------------------------------------------------