Open
Conversation
- Add MQTTManager class for handling MQTT connections and subscriptions - Integrate PubSubClient library - Update Config to include MQTT broker settings - Modify main loop to fetch and display weather data from MQTT topic - Add mqtt_debug.py utility script - indicate MQTT update source in status message
61fa58c to
30f9c65
Compare
This makes the weather update look significantly faster. The screen is no longer blanked when retriving new weather information. Additionally, more debugging message is printed when the reset button is pressed.
ea4e2b6 to
211eff3
Compare
- Add LOW_BATTERY_THRESHOLD to constants.h - Implement drawLowBatteryWarning in display.cpp - Update displayWeather to check battery level and show warning if below threshold
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I really like your project. For my local use case, I have a local weather station. My local server polls the weather station, and publish the information using MQTT.
For more details on my local weather station set up, please refer to:
These changes PaperS3 to pull weather information from the local MQTT server.
I also changed the way the display gets updated, so it doesn't blank out for so long when waking from sleep. I also encountered the timezone error, I now force the timezone to be pulled from the web API.