Search found 140 matches

by kwiley
Wed May 20, 2020 9:12 pm
Forum: ESP8266 boards
Topic: D1 Clones
Replies: 13
Views: 8452

Re: D1 Clones

When you get your own issues sorted out, I would be very interested to know if you can confirm whether or not your D1 boards successfully wake from deep sleep with the RTC alarm. It is widely acknowledged on a number of forums, github issues, etc. that various ESP8266 systems, including bare ESP-12 ...
by kwiley
Wed May 20, 2020 2:30 pm
Forum: General Discussion and Questions
Topic: How to use a low-signaling sensor to trigger wake interrupt
Replies: 12
Views: 6779

Re: How to use a low-signaling sensor to trigger wake interrupt

Thanks for confirming my hunch that I probably just need the opposing transistor type. I suppose I could string two together as you suggested, although I admit that seems unnecessarily convoluted. Thanks again.
by kwiley
Wed May 20, 2020 2:28 pm
Forum: General Discussion and Questions
Topic: How to use a low-signaling sensor to trigger wake interrupt
Replies: 12
Views: 6779

Re: How to use a low-signaling sensor to trigger wake interrupt

I agree, and I'm aware of the behavior in which the board would not fully reset until after the sensor returns to its initial state. For some reason I'm not getting any reset behavior by sending the signal straight into reset regardless of whether the sensor settles down a moment later. I don't get ...
by kwiley
Wed May 20, 2020 2:00 am
Forum: General Discussion and Questions
Topic: How to use a low-signaling sensor to trigger wake interrupt
Replies: 12
Views: 6779

How to use a low-signaling sensor to trigger wake interrupt

I would have posted this in the ESP8266 forum, but it's really more of an electronics question, and probably a really basic one at that, given that I'm a software person with minimal electronics wherewithal. The ESP8266 and its support boards (such as the ESP-01S) can go into deep sleep and then awa...
by kwiley
Tue May 19, 2020 3:06 pm
Forum: ESP8266 boards
Topic: [SOLVED] General question regarding GPIOs of Wemos D1 mini
Replies: 3
Views: 2826

Re: [SOLVED] General question regarding GPIOs of Wemos D1 mini

Unrelatedly, I see you are using a D1 mini and you are using deep sleep. Does your D1 mini wake properly with a timer alarm (not a pushbutton or sensor interrupt)? If so, what D1 mini version is it and where did you get it? Thanks.
by kwiley
Tue May 19, 2020 12:35 am
Forum: ESP8266 boards
Topic: Who can confirm deep sleep alarm wake on D1 mini boards
Replies: 4
Views: 3904

Who can confirm deep sleep alarm wake on D1 mini boards

I'm trying to get a sense of how pervasive the D1 mini deep sleep error is, in which the D1 mini doesn't properly reset when waking with an alarm from deep sleep (described at https://github.com/esp8266/Arduino/issues/6007). How many people here have used MicroPython on a Wemos D1 of any model. Whic...
by kwiley
Mon May 18, 2020 5:47 pm
Forum: ESP8266 boards
Topic: Firmware support for D1 mini deep sleep problem
Replies: 2
Views: 2026

Re: Firmware support for D1 mini deep sleep problem

My apologies. Where I wrote GPIO0 above, I meant D0 on the D1 mini, which is GPIO16. Ugh. The pin aliases get confusing. I've edited my original post to correct the mistake. Moving on... Are you sure about hard-wiring GPIO16 to RESET? There are at least two levels of abstraction from the 8266 here. ...
by kwiley
Sun May 17, 2020 6:49 pm
Forum: ESP8266 boards
Topic: Firmware support for D1 mini deep sleep problem
Replies: 2
Views: 2026

Firmware support for D1 mini deep sleep problem

I have two D1 minis, obviously running MicroPython, which exhibit a widely experienced problem in which they don't properly wake from deep sleep. I am forced to physically press the reset switch twice to recover a REPL (curiously, if I tie D0/GPIO16 to RESET, then a single push to RESET does the tri...
by kwiley
Sat May 16, 2020 2:55 pm
Forum: ESP8266 boards
Topic: Is deactivating WLAN equivalent to depowering wifi?
Replies: 2
Views: 2495

Re: Is deactivating WLAN equivalent to depowering wifi?

Thanks. I expected as much, but I just wanted to confirm it.
by kwiley
Sat May 16, 2020 2:53 pm
Forum: ESP8266 boards
Topic: RTC memory
Replies: 2
Views: 2924

Re: RTC memory

Okay. I see that in the REPL now: >>> PYB: soft reboot MicroPython v1.10-8-g8b7039d7d on 2019-01-26; ESP module with ESP8266 Type "help()" for more information. >>> import machine >>> rtc = machine.RTC() >>> rtc.[TAB] __class__ ALARM0 alarm alarm_left datetime irq memory >>> rtc. It's worth noting t...