Search found 604 matches

by mikemoy
Tue Dec 24, 2019 4:55 am
Forum: General Discussion
Topic: Xmas 2019 and Happy New Year 2020
Replies: 1
Views: 2361

Re: Xmas 2019 and Happy New Year 2020

Thanks, and to you as well.
by mikemoy
Thu Dec 19, 2019 2:53 pm
Forum: ESP-ADF
Topic: MP3 Decoder cpu usage
Replies: 6
Views: 8495

Re: MP3 Decoder cpu usage

Its not off both cores. You can further prove that by pinning it to either core 0 or core 1. Also, Core 0 (IDLE0 13) is 100%-13% = 87% idle time. Also, Core 1 (IDLE1 25) is 100%-25% = 75% idle time. So you can see it's still pretty much spending most of its time twiddling its fingers waiting for som...
by mikemoy
Sun Dec 08, 2019 5:43 am
Forum: General Discussion
Topic: Still can't boot ESP32 Wroom
Replies: 3
Views: 3773

Re: Still can't boot ESP32 Wroom

I really doubt its a current inrush issue. I have seen on a few boards now from different people who improperly use the onboard serial chip to control the reset and GPIO0. What I would do, its take your scope or meter and make sure that GPIO0 is bulled up to 3.3v when you plug it in. If its low at p...
by mikemoy
Thu Dec 05, 2019 5:04 pm
Forum: Showcase
Topic: Esptools GUI
Replies: 5
Views: 25200

Re: Esptools GUI

Cool! thanks for sharing!
by mikemoy
Wed Dec 04, 2019 6:49 am
Forum: ESP32 Arduino
Topic: TinyPico ES32 - Serial Hardware interface
Replies: 1
Views: 3630

Re: TinyPico ES32 - Serial Hardware interface

Try
#define RXD2 16
#define TXD2 17


HardwareSerial Serial2(2);
Serial2.begin(115200, SERIAL_8N1, RXD2, TXD2);
by mikemoy
Tue Dec 03, 2019 2:57 pm
Forum: General Discussion
Topic: can ESP32 establish a HTTPS Access Point connection?
Replies: 4
Views: 3748

Re: can ESP32 establish a HTTPS Access Point connection?

@threeboys is right, His example does not work, nor does this one. It resets as well.
https://techtutorialsx.com/2019/04/07/e ... eb-server/
by mikemoy
Fri Nov 29, 2019 2:54 pm
Forum: General Discussion
Topic: Timer alarm triggers at wrong value
Replies: 2
Views: 2847

Re: Timer alarm triggers at wrong value

Why haven't you posted your code. How can we help if no one here has a clue what you have done, or what example you are trying to use.
by mikemoy
Fri Nov 29, 2019 5:28 am
Forum: ESP-IDF
Topic: Disabling & Re-enabling BLE
Replies: 3
Views: 7569

Re: Disabling & Re-enabling BLE

Have a look at this thread
viewtopic.php?f=2&t=13275