-
Notifications
You must be signed in to change notification settings - Fork 307
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added deep sleep support for ESP32 #600
Commits on May 2, 2019
-
Configuration menu - View commit details
-
Copy full SHA for e2e25bb - Browse repository at this point
Copy the full SHA e2e25bbView commit details
Commits on May 3, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 58a5e93 - Browse repository at this point
Copy the full SHA 58a5e93View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ec2edd - Browse repository at this point
Copy the full SHA 2ec2eddView commit details
Commits on May 10, 2019
-
Configuration menu - View commit details
-
Copy full SHA for bbead88 - Browse repository at this point
Copy the full SHA bbead88View commit details
Commits on May 20, 2019
-
Configuration menu - View commit details
-
Copy full SHA for e36b18b - Browse repository at this point
Copy the full SHA e36b18bView commit details -
Configuration menu - View commit details
-
Copy full SHA for c98eae2 - Browse repository at this point
Copy the full SHA c98eae2View commit details
Commits on May 21, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 1e157d4 - Browse repository at this point
Copy the full SHA 1e157d4View commit details
Commits on Jul 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 51aa5a6 - Browse repository at this point
Copy the full SHA 51aa5a6View commit details
Commits on Aug 3, 2019
-
Fixed device not reconnecting after MQTT connection loss (#611)
* Fixed device not reconnecting after MQTT connection loss * formatting (cherry picked from commit edb5d62)
Configuration menu - View commit details
-
Copy full SHA for 80556f7 - Browse repository at this point
Copy the full SHA 80556f7View commit details
Commits on Aug 10, 2019
-
SSL support for MQTT connection (#577)
* TLS support + fingerprint attribute in config file ( #399 ) Credit @adriancuzman (cherry picked from commit 00843f3) (cherry picked from commit c63aeb6) * Refactor SSL to only compile when enabled (`#if ASYNC_TCP_SSL_ENABLED`) (cherry picked from commit 2a8a8f1) (cherry picked from commit 050cc8b) * corrected string and char array length (cherry picked from commit 107fbdf) * documented how to use SSL encryption for MQTT (cherry picked from commit ebac43a) * replaced board esp01 with esp01_1m due to failing CI builds because of growing image size
Configuration menu - View commit details
-
Copy full SHA for 9db189f - Browse repository at this point
Copy the full SHA 9db189fView commit details -
Config: fix buffer overflow when loading json config (#617)
When the configSize is MAX_JSON_CONFIG_FILE_SIZE the '\0' is written after the buffers end. Don't load config files with a size >= MAX_JSON_CONFIG_FILE_SIZE. Signed-off-by: Philipp Rosenberger <code@iluminat23.org>
Configuration menu - View commit details
-
Copy full SHA for 88201f7 - Browse repository at this point
Copy the full SHA 88201f7View commit details
Commits on Oct 1, 2019
-
Migrate to ArduinoJson version 6 (#622)
* Migrate the code from ArduinoJson v5 to v6 * Resolve memory allocation issues resulting from the migration * Reduce unnecessary copying of some JSON related strings * Change to StaticJsonBuffer if possible * Use C++ casts instead of C-style casts * Remove unnecessary comments * Serialize JsonDocument instead of JsonObject
Configuration menu - View commit details
-
Copy full SHA for 67d6452 - Browse repository at this point
Copy the full SHA 67d6452View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3a52ecc - Browse repository at this point
Copy the full SHA 3a52eccView commit details
Commits on Oct 10, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 9ce06e2 - Browse repository at this point
Copy the full SHA 9ce06e2View commit details
Commits on Nov 1, 2019
-
Fix potential MQTT topic buffer overflow (#633)
* Fix wrong MQTT topic buffer size calulation which might lead to a buffer overflow
Configuration menu - View commit details
-
Copy full SHA for 71a766b - Browse repository at this point
Copy the full SHA 71a766bView commit details
Commits on Nov 14, 2019
-
Subscribing to messages using Homie.getMqttClient() is not reliable: …
…topic is truncated (#526) * Declare _mqttTopicCopy in BootNormal.hpp * Using _mqttTopicCopy to manage subscribed topics * Removed leading spaces
Configuration menu - View commit details
-
Copy full SHA for 91e9b63 - Browse repository at this point
Copy the full SHA 91e9b63View commit details
Commits on Dec 2, 2019
-
Calling ESP.getSketchMD5() at BootNormal constructor crashes on ESP32 (…
Configuration menu - View commit details
-
Copy full SHA for 661bd74 - Browse repository at this point
Copy the full SHA 661bd74View commit details -
Fix semicolon after define statement in LightOnOff example (#643)
Signed-off-by: Aitor Iturrioz <riturrioz@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7818c73 - Browse repository at this point
Copy the full SHA 7818c73View commit details
Commits on Dec 7, 2019
-
* Simplify JSON lookups * Remove unnecessary lookups * Add null checks for JSON strings before calling strlen()
Configuration menu - View commit details
-
Copy full SHA for 2093ce8 - Browse repository at this point
Copy the full SHA 2093ce8View commit details
Commits on Dec 15, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 7b15526 - Browse repository at this point
Copy the full SHA 7b15526View commit details
Commits on Dec 19, 2019
-
Fix topic copying for chunked messages (#645)
Only copy the topic on the first message chunk. Otherwise the old copy will be destroyed on subsequent calls to `_onMqttMessage()` for the same message, while the copy is still being referenced by `_mqttTopicLevels`. This leads to undefined behaviour.
Configuration menu - View commit details
-
Copy full SHA for 104a09c - Browse repository at this point
Copy the full SHA 104a09cView commit details
Commits on Dec 27, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 50e37c3 - Browse repository at this point
Copy the full SHA 50e37c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 201a9aa - Browse repository at this point
Copy the full SHA 201a9aaView commit details -
Configuration menu - View commit details
-
Copy full SHA for f9e25f8 - Browse repository at this point
Copy the full SHA f9e25f8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6757c64 - Browse repository at this point
Copy the full SHA 6757c64View commit details -
Configuration menu - View commit details
-
Copy full SHA for a12b8e0 - Browse repository at this point
Copy the full SHA a12b8e0View commit details -
Merge branch 'develop-v3' of https://github.com/EinfachArne/homie-esp…
…8266 into develop-v3
Configuration menu - View commit details
-
Copy full SHA for b1023ec - Browse repository at this point
Copy the full SHA b1023ecView commit details