aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ble/SimpleWeatherService.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Simple Weather Service : fix out of bounds access while creating Forecast ↵Jean-François Milants2023-12-231-2/+6
| | | | instance.
* SimpleWeather service : new weather implementationJean-François Milants2023-12-231-34/+37
| | | | Fix recovery firmware and code formatting.
* SimpleWeather service : new weather implementationJean-François Milants2023-12-231-0/+153
This new implementation of the weather feature provides a new BLE API and a new weather service. The API uses a single characteristic that allows companion apps to write the weather conditions (current and forecast for the next 5 days). The SimpleWeather service exposes those data as std::optional fields. This new implementation replaces the previous WeahterService. The API is documented in docs/SimpleWeatherService.md.