-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Power saving changes #1
Closed
Closed
Conversation
This file contains 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
…ay. If sleep == 0 then delay == yield. Else delay(x) is delay and yield.
arendst
added a commit
that referenced
this pull request
Jan 29, 2017
Closed
Closed
Closed
the-real-orca
pushed a commit
to the-real-orca/Sonoff-Tasmota
that referenced
this pull request
Jun 17, 2018
Stefan patch1
Closed
arendst
pushed a commit
that referenced
this pull request
Jul 28, 2018
Added support for MPU6050 gyro sensor
2 tasks
curzon01
pushed a commit
to curzon01/Tasmota
that referenced
this pull request
Sep 6, 2018
curzon01
pushed a commit
to curzon01/Tasmota
that referenced
this pull request
Sep 7, 2018
Updated to v6.1.0a
curzon01
pushed a commit
to curzon01/Tasmota
that referenced
this pull request
Sep 7, 2018
Added support for MPU6050 gyro sensor
2 tasks
wolfgangr
pushed a commit
to wolfgangr/Sonoff-Tasmota
that referenced
this pull request
Jan 14, 2019
Merge from Arendst
15 tasks
arendst
pushed a commit
that referenced
this pull request
Apr 12, 2020
merge latest changes from development
arendst
pushed a commit
that referenced
this pull request
Jul 12, 2020
Pull to match arendst/Tasmota
arendst
pushed a commit
that referenced
this pull request
Oct 1, 2020
add link to release notes and some formatting
arendst
pushed a commit
that referenced
this pull request
Apr 14, 2021
* Hlw8012/Bl0937 averages pulses over 200ms * Hlw8012/Bl0937 averages pulses over 200ms
14 tasks
mepunit
added a commit
to shivankittech/smart-home-base-firmware
that referenced
this pull request
Aug 19, 2021
arendst
pushed a commit
that referenced
this pull request
Oct 26, 2021
SteWers
added a commit
to SteWers/Tasmota
that referenced
this pull request
Jan 5, 2022
arendst
pushed a commit
that referenced
this pull request
Jan 8, 2022
Add NTP server capability to DS3231
This was referenced Apr 29, 2022
Closed
5 tasks
14 tasks
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.
Hi,
added power save disable (sleep = 0) during LED animation and change in usage of yield and delay. delay(0) equals yield() and each loop a yield is called ( esp8266/Arduino#2021 ). So calling delay(sleep) is sufficient at end of loop(). Solution for Sonoff POW could be to disable sleep when relay is on and enable delay when off.
Greetings,