Skip to content
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

Add note to documentation re deep sleep #2719

Open
sandybrownlee opened this issue May 18, 2024 · 1 comment
Open

Add note to documentation re deep sleep #2719

sandybrownlee opened this issue May 18, 2024 · 1 comment

Comments

@sandybrownlee
Copy link

Describe the problem you have/What new integration you would like

Add a note like this to the deep sleep component page:
some devices, e.g. D1 mini, need GPIO7 pulled high for deep sleep to function currently. This post:
[GeoX234 commented on Mar 27] suggests connecting GPIO7/SD0/MISO via 10k resistor to 3.3v as a fix. This worked for me.

Please describe your use case for this integration and alternatives you've tried:

The device won't wake up from deep sleep, though there is a dim flash of the blue activity LED at the time it should wake up. soldering the 10k resistor causes wake up to run correctly.

Additional context

@jkufner
Copy link

jkufner commented Sep 8, 2024

Something similar for M5 coreInk. It shutdowns completely in deep sleep and does not wake up. To prevent the loss of power, it requires to set the pin 12 to high, so that the power is not cut.

esphome:
  on_boot:
    then:
       - lambda: |-
          pinMode(GPIO_NUM_12, OUTPUT);
          digitalWrite(GPIO_NUM_12, HIGH);
          gpio_hold_en(GPIO_NUM_12);

It would be really nice to have in the docs. It would save me a lot of time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants