├── .gitignore ├── bme280_sensor.py ├── ds18b20_therm.py ├── readme.md ├── weather_station.py └── wind_direction.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoracle09/Weather-Station/HEAD/.gitignore -------------------------------------------------------------------------------- /bme280_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoracle09/Weather-Station/HEAD/bme280_sensor.py -------------------------------------------------------------------------------- /ds18b20_therm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoracle09/Weather-Station/HEAD/ds18b20_therm.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoracle09/Weather-Station/HEAD/readme.md -------------------------------------------------------------------------------- /weather_station.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoracle09/Weather-Station/HEAD/weather_station.py -------------------------------------------------------------------------------- /wind_direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoracle09/Weather-Station/HEAD/wind_direction.py --------------------------------------------------------------------------------