Search found 117 matches

by Capstan
Mon Mar 25, 2019 2:37 pm
Forum: ESP32 boards
Topic: powering ESP32 with a battery
Replies: 12
Views: 18845

Re: powering ESP32 with a battery

Thanks for sharing that info. Expensive battery! I am looking at some other alternatives like this; https://www.batteryspace.com/lifepo4-18650-rechargeable-cell-3-2v-1500-mah-4-5a-rate-4-8wh-with-iec-62133---un38-3-passed.aspx with similar capacity and a lot cheaper. Very possible that the charger I...
by Capstan
Sun Mar 24, 2019 1:55 pm
Forum: ESP32 boards
Topic: powering ESP32 with a battery
Replies: 12
Views: 18845

Re: powering ESP32 with a battery

Nice project!

I see that you are using a 18650 battery. What brand is the battery and where do you get them? Also curious to know how you are charging them. It's possible that the charger I am using damages the batteries.
by Capstan
Sat Mar 23, 2019 11:26 pm
Forum: ESP32 boards
Topic: powering ESP32 with a battery
Replies: 12
Views: 18845

powering ESP32 with a battery

I've got some use cases that require the ESP32 to hibernate most of the time in very-low-power mode running on a battery. Ideally the battery would last quite some time with a hibernation power draw of only ~15uA. Can anyone recommend some options for a good cheap rechargeable battery? I was hoping ...
by Capstan
Mon Oct 08, 2018 2:24 pm
Forum: ESP32 boards
Topic: interesting peripherals driver library
Replies: 1
Views: 2057

interesting peripherals driver library

I was looking at CircuitPython yesterday. Adafruit posted a ton of driver code for it. Probably could be adapted to other MicroPython versions.

https://circuitpython.readthedocs.io/en ... ivers.html
by Capstan
Tue Aug 14, 2018 3:16 am
Forum: ESP32 boards
Topic: Sparkfun ESP32 board
Replies: 9
Views: 5674

Re: Sparkfun ESP32 board

So it is working for you? What cued you to change the flashing options to those particular values?
by Capstan
Mon Aug 13, 2018 10:31 pm
Forum: ESP32 boards
Topic: Sparkfun ESP32 board
Replies: 9
Views: 5674

Re: Sparkfun ESP32 board

How are you flashing it?
by Capstan
Sat Jul 28, 2018 3:13 pm
Forum: ESP32 boards
Topic: Trying usocket on WROOM module
Replies: 6
Views: 4024

Re: Trying usocket on WROOM module

Now I need to figure out how to send an http request with the socket. Any quick reference? Have you tried the MicroWebCli? It appears to open and manage its own socket so you don't have to bother with that. All you have to do is connect to WiFi. Decodes responses so you can handle them conveniently...
by Capstan
Fri Jul 27, 2018 9:48 pm
Forum: ESP32 boards
Topic: Trying usocket on WROOM module
Replies: 6
Views: 4024

Re: Trying usocket on WROOM module

It has been working for me (though adding SSL/TLS does suck up considerable memory). import usocket as _socket def connect(secure, host, port): sock = _socket.socket() addr = _socket.getaddrinfo(host, port) sock.connect(addr[0][-1]) if secure is True: import ussl as ssl sock = ssl.wrap_socket(sock)
by Capstan
Fri Mar 30, 2018 7:03 pm
Forum: ESP32 boards
Topic: ESP32 power conditioning
Replies: 32
Views: 29329

Re: ESP32 power conditioning

Yes I did a number of current measurements in conjunction with deepsleep and other modes. If you would be able to take some similar measurements and post here I would appreciate it.
by Capstan
Fri Mar 30, 2018 2:50 pm
Forum: ESP32 boards
Topic: Question about 3v3 pin and Deep Sleep
Replies: 4
Views: 5097

Re: Question about 3v3 pin and Deep Sleep

It's a bit too deep for my level of understanding but from looking at some of the issue reporting it looks like a soft-reset doesn't give you a clean slate to work with as such - I pulled hair out over it for a bit because having a battery connected prevented a hard-reset happening :lol: I've been ...