Releases: ThingPulse/esp8266-weather-station
Releases · ThingPulse/esp8266-weather-station
v2.3.0
What's Changed
- Fix unused/uninitialized variable warnings by @luebbe in #214
- Add OWM lat/lon API by @marcelstoer in #220
New Contributors
Full Changelog: v2.2.0...v2.3.0
2.2.0 ESP32 support
Details v2.1.0...v2.2.0
2.1.0 OWM One Call API and clean-up
2.0.1 Change logic of reading HTTP response stream
Fix for #178
Details: v2.0.0...v2.0.1
2.0 Remove WU code and minor fixes
- Remove all deprecated WeatherUnderground code as announced in summer 2018, see https://github.com/ThingPulse/esp8266-weather-station#deprecation-notes
- Remove unmaintained MetOffice and oneDayForecaster examples
- Adjust HTTP client parse loop to be compliant with ESP8266 Arduino Core 2.6.x
- Minor fixes
Details: v1.6.6...v2.0.0
Fix memory leak in SunMoonCalc
See #144 for report and test case.
fmod instead of % for floating point modulo
The betas for ESP8266 Arduino-core 2.5 appear to no longer support %
for floating point modulo. Reported in #148.
Adjust TCP read loop to new paradigm for non-OWM
This addresses esp8266/Arduino#5257 for all non-OWM artifacts.
Adjust TCP read loop to new paradigm
This addresses esp8266/Arduino#5257 which caused problems for some uses when reading current weather data from OWM.
OWM parser famish fix
Add yield to the parse loop This is to avoid famishin the WiFi stack. Fixes #131