diff --git a/Documentation/Changelog.md b/Documentation/Changelog.md new file mode 100644 index 0000000..137347e --- /dev/null +++ b/Documentation/Changelog.md @@ -0,0 +1,66 @@ + +# Changelog + +
+ +## Version 2 + +**When:** `January 2020`
+**What:**     `Removes Wunderground Support` + +
+ +### Wunderground ➞ OpenWeatherMap + +*Weather Data Provider Replacement* + +
+ +**Wunderground**, the weather information provider
+we used so far, [stopped their free tier][No Free] without notice
+on `May 15, 2018` . + +This release adds support for `OpenWeatherMap.com` , an
+alternate provider with a free tier for weather information. + +The `WeatherStationDemo` has been adapted to use
+this new **API** through the `OpenWeatherMapCurrent`
+and `OpenWeatherMapForecast` **REST** clients. + +
+ +*Sadly **OpenWeatherMap** provides less*
+*information than **Wunderground** does.* + +
+ +If you are missing attributes in the response docs
+then please contact the **[OpenWeatherMap]** team. + +
+
+ +### OLED Library Upgrade + +
+ +The **ESP8266 OLED Library** changed
+a lot with the latest release of `v3.0.0` . + +We fixed many bugs, changed the **API**
+a little bit and improved performance. + +This means that you might have to adapt
+your ***Weather Station Code*** if you created
+it using older `2.x.x` versions. + +Either compare your code to the updated
+**WeatherStationDemo** or read the guide
+on how to **[Upgrade]**. + + + + +[Upgrade]: https://github.com/ThingPulse/esp8266-oled-ssd1306/blob/master/UPGRADE-3.0.md +[OpenWeatherMap]: https://openweathermap.desk.com/customer/portal/emails/new +[No Free]: https://thingpulse.com/weather-underground-no-longer-providing-free-api-keys/ diff --git a/Documentation/Design.md b/Documentation/Design.md new file mode 100644 index 0000000..bf4c0e6 --- /dev/null +++ b/Documentation/Design.md @@ -0,0 +1,29 @@ + +## Why A Library? + +I realized that more and more the **Weather Station**
+was becoming a general framework for displaying
+data over **WiFi** to one of these pretty displays. + +
+ +#### What Was Needed + +However everyone would have different ways or
+sources for data and as such, the important part
+of the library would rather be the classes that
+fetch the data, than the main class. + +
+ +#### Data Fetchers + +In case you wrote a data fetcher that might be
+of interest to others and you would like it to be
+integrated in this library, simply contact me. + +Otherwise you might also want to offer your code
+as extension library yourself and call it something
+like `ESP8266-Weather-Station-< Your Service >` + +***We will gladly list it as third party library.*** diff --git a/Documentation/Install.md b/Documentation/Install.md new file mode 100644 index 0000000..b91433d --- /dev/null +++ b/Documentation/Install.md @@ -0,0 +1,89 @@ + +# Installation + +
+ +## Arduino IDE + +### Setup + +Make sure you use a version of the **Arduino IDE**
+which is supported by the **ESP8266** platform. + +Please follow the **[Tutorial]** on our website. + +
+ +### Libraries + +Please install the following libraries: + +- `ESP8266 Weather Station` +- `JSON Streaming Parser by Daniel Eichhorn` +- `ESP8266 OLED Driver for SSD1306 display by Daniel Eichhorn` + + *Please use `v3.0.0+`* + +##### How To + +**Sketch**
+ › **Include Library**
+ › **Manage Libraries** + +
+ +### Preparation + +1. *[Create An API Key][API Key]* for **OpenWeatherMap**. + +2. Open the demo. + + **File**
+  › **Examples**
+  › **ESP8266 Weather Station**
+  › **Weather Station Demo** + +3. Insert the **OpenWeatherMap API Key**. + +4. Insert your **WiFi Credentials**. + +5. Adjust the location according to **OpenWeatherMap**. + + ↳ `Zurich, CH` + +6. Adjust the **UTC** offset. + + +
+ +--- + +
+ +## PlatformIO + +### Setup + +1. Choose one of the available IDE integration or the Atom based IDE. + +2. Install libraries: + - `561` + - `562` + - `563` + + With: + + ```sh + platformio lib install + ``` + +3. Adapt the [`WeatherStationDemo.ino`][Example] file to your
+ needs as show in the **Arduino** preparations. + + + + +[Tutorial]: https://docs.thingpulse.com/how-tos/Arduino-IDE-for-ESP8266/ +[API Key]: https://docs.thingpulse.com/how-tos/openweathermap-key/ +[Example]: examples/WeatherStationDemo/WeatherStationDemo.ino + diff --git a/Documentation/Modules.md b/Documentation/Modules.md new file mode 100644 index 0000000..9f35e47 --- /dev/null +++ b/Documentation/Modules.md @@ -0,0 +1,68 @@ + +# Modules + +*Modules Available In This Library* + +
+ +## Time Client + +A simple class that uses the header
+date and time to set the clock. + +
+ +## NTP Client + +A **NTP** based time class written by `Fabrice Weinberg`. + +
+ +## OpenWeatherMap Client + +A **REST** client for the `OpenWeatherMap.com`
+service, providing weather information. + +
+ +## Aeris Client + +A client for the service provided by `aerisweather.com`. + +*Fully functional initial version.* + +After the [Wunderground Incident][Changelog] we first targeted
+**Aeris** before we settled with **OpenWeatherMap**. + +*This code is **unmaintained** but will,*
+*for now, remain part of this library.* + +
+ +## Thingspeak Client + +Fetches data from **Thingspeak** which you might have
+collected with another sensor node and posted there. + +
+ +## Astronomy + +Algorithms to calculate current lunar phase and illumination. + +
+ +## SunMoonCalc + +A calculator for sun / moon properties
+for a given date, time and location. + +*This implementation is port of a* ***Java***
+*class by [T. Alonso Albi] from :es: **OAN**.* + + + + +[Changelog]: Changelog.md + +[T. Alonso Albi]: http://conga.oan.es/~alonso/doku.php?id=blog:sun_moon_position diff --git a/README.md b/README.md index c00807b..a1c6d7d 100644 --- a/README.md +++ b/README.md @@ -1,88 +1,130 @@ -# ThingPulse ESP8266 Weather Station +
-[![ThingPulse logo](https://thingpulse.com/assets/ThingPulse-w300.svg)](https://thingpulse.com) +[![Logo]][Website] +#### A ESP8266 Weather Station -This code works best with the NodeMCU V2 ESP8266 module and an 0.96" OLED display. -To get you up and running in no time we created a kit which contains all the necessary parts: -[https://thingpulse.com/product/esp8266-iot-electronics-starter-kit-weatherstation-planespotter-worldclock/](https://thingpulse.com/product/esp8266-iot-electronics-starter-kit-weatherstation-planespotter-worldclock/) +
-By buying this and [other kits](https://thingpulse.com/shop/) from us you are funding maintenance and development of this library. Thank you! +
+
-[![ThingPulse ESP8266 WeatherStation Classic Kit](resources/ThingPulse-ESP8266-Weather-Station.jpeg)](https://thingpulse.com/product/esp8266-iot-electronics-starter-kit-weatherstation-planespotter-worldclock/) +
+ +
-### Build Status +**Development**     [![Badge Master]][Actions]
+**Master**    [![Badge Master]][Actions] -| Branch | Status | -| ------------- | ------------- | -| master | [![PlatformIO CI](https://github.com/ThingPulse/esp8266-weather-station/actions/workflows/main.yml/badge.svg)](https://github.com/ThingPulse/esp8266-weather-station/actions) | -| development | [![PlatformIO CI](https://github.com/ThingPulse/esp8266-weather-station/actions/workflows/main.yml/badge.svg?branch=development)](https://github.com/ThingPulse/esp8266-weather-station/actions) | -## Service level promise -
-This is a ThingPulse prime project. See our open-source commitment declaration for what this means.
+--- -## Install and configure Arduino IDE +
-Make sure you use a version of the Arduino IDE which is supported by the ESP8266 platform. Follow the [tutorial on our documentation platform](https://docs.thingpulse.com/how-tos/Arduino-IDE-for-ESP8266/). +**⸢ [Shop] ⸥**  **⸢ [Install] ⸥**  **⸢ [Modules] ⸥**  **⸢ [Design] ⸥**  **⸢ [Changelog] ⸥**   -## Install libraries in Arduino IDE +
-Install the following libraries with your Arduino Library Manager in `Sketch` > `Include Library` > `Manage Libraries...` -* ESP8266 Weather Station -* JSON Streaming Parser by Daniel Eichhorn -* ESP8266 OLED Driver for SSD1306 display by Daniel Eichhorn. **Use Version 3.0.0 or higher!** +--- -## Prepare the software -* [Create an API Key](https://docs.thingpulse.com/how-tos/openweathermap-key/) for OpenWeatherMap -* In the Arduino IDE go to `File` > `Examples` > `ESP8266 Weather Station` > `Weather Station Demo` -* Enter the OpenWeatherMap API Key -* Enter your WiFi credentials -* Adjust the location according to OpenWeatherMap API, e.g. Zurich, CH -* Adjust UTC offset +
+
-## Setup for PlatformIO +
-If you are using the PlatformIO environment for building +## **[Kit][Kit]** -* choose one of the available IDE integration or the Atom based IDE -* install libraries 561, 562 and 563 with "platformio lib install" -* adapt the [WeatherStationDemo.ino](examples/WeatherStationDemo/WeatherStationDemo.ino) file to your needs (see details above) +
+
-## Available Modules -* **Time Client**: simple class which uses the header date and time to set the clock -* **NTP Client**: a NTP based time class written by Fabrice Weinberg -* **OpenWeatherMap Client**: A REST client for the OpenWeatherMap.com service, providing weather information -* **Aeris Client**: Client for the service provided by aerisweather.com. Fully functional initial version. After the Wunderground incident (see [upgrade notes](#upgrade-notes)) we first targeted Aeris before we settled with OpenWeatherMap. This code is unmaintained but will remain part of this library for the time being. -* **Thingspeak Client**: fetches data from Thingspeak which you might have collected with another sensor node and posted there. -* **Astronomy**: algorithms to calculate current lunar phase and illumination. -* **SunMoonCalc**: a calculator for sun and moon properties for a given date & time and location. This implementation is port of a [Java class by T. Alonso Albi](http://conga.oan.es/~alonso/doku.php?id=blog:sun_moon_position) from OAN (Spain). + -## Why Weather Station as a library? +This library works best with the **NodeMCU V2 ESP8266**
+module in combination with an `0.96"` **OLED** display. -I realized that more and more the Weather Station was becoming a general framework for displaying data over WiFi to one of these pretty displays. But everyone would have different ways or sources for data and having the important part of the library would rather be the classes which fetch the data then the main class. -So if you write data fetchers which might be of interest to others please contact me to integrate them here or offer your code as extension library yourself and call it something like esp8266-weather-station-. -We will gladly list it here as third party library... +To get you up and running in no time, we created
+this kit which contains all the parts you will need. -## Upgrade Notes +
+
+
+
-**Version 2, January 2020, removes WU support, see below** +
-**Replace Wunderground with OpenWeatherMap as weather data provider** +## **Service Level Promise** -The weather information provider we used so far (Wunderground) [recently stopped their free tier](https://thingpulse.com/weather-underground-no-longer-providing-free-api-keys/) without previous notice on May 15, 2018. This release adds support for a new provider with a free tier for weather information: OpenWeatherMap.com. The basic demo (WeatherStationDemo) has been adapted to use this new API through the OpenWeatherMapCurrent and OpenWeatherMapForecast REST clients. +
+ +
-Sadly OpenWeatherMap provides less information than Wunderground did (or still does). If you are missing attributes in the response documents then please [contact the OpenWeatherMap team](https://openweathermap.desk.com/customer/portal/emails/new). + + + + + +
+ + +
+ +
+ +This is a **ThingPulse Prime Project**. + +See our open-source **[Commitment]**
+declaration for what this means. + +
+
-**ESP8266 OLED Library upgrade** +
+
+
-The ESP8266 OLED Library changed a lot with the latest release of version 3.0.0. We fixed many bugs and improved performance and changed the API a little bit. This means that you might have to adapt your Weather Station Code if you created it using the older 2.x.x version of the library. Either compare your code to the updated WeatherStationDemo or read through the [upgrade guide](https://github.com/ThingPulse/esp8266-oled-ssd1306/blob/master/UPGRADE-3.0.md) +
-## Deprecation notes +## **Deprecation** + +
+ +| Announcement | Module | Removal | +|:----------------:|:-----------------------:|:-------------------------| +| `2018 / 06 / 13` | **[Wunderground Code]** | `January 2020` `v2.0.0` | + +
+ + + +[Badge Development]: https://github.com/ThingPulse/esp8266-weather-station/actions/workflows/main.yml/badge.svg?branch=development +[Badge Master]: https://github.com/ThingPulse/esp8266-weather-station/actions/workflows/main.yml/badge.svg + +[Changelog]: Documentation/Changelog.md +[Install]: Documentation/Install.md +[Modules]: Documentation/Modules.md +[Design]: Documentation/Design.md + +[Actions]: https://github.com/ThingPulse/esp8266-weather-station/actions +[Logo]: https://thingpulse.com/assets/ThingPulse-w300.svg + +[Commitment]: https://thingpulse.com/about/open-source-commitment/ +[Website]: https://thingpulse.com +[Shop]: https://thingpulse.com/shop/ + +[Kit]: https://thingpulse.com/product/esp8266-iot-electronics-starter-kit-weatherstation-planespotter-worldclock/ + +[Wunderground Code]: https://thingpulse.com/hello-openweathermap-bye-bye-wunderground/ -| Announcement | Module | Removal | -|---------------|---------|----------| -| 2018-06-13 | all **Wunderground** related code, see [our blog](https://thingpulse.com/hello-openweathermap-bye-bye-wunderground/) for details | January 2020, version 2.0.0 |