Search found 605 matches

by mikemoy
Tue Jan 16, 2024 12:43 pm
Forum: ESP-IDF
Topic: #includes are not always found
Replies: 1
Views: 17200

Re: #includes are not always found

what has worked for me is when I create a new project I typically get a Triangle in the lower right of the IDE.
Untitled.jpg
Untitled.jpg (21.11 KiB) Viewed 15709 times
Click on this, then you will get a popup on top, select the first one, and that fixes the issue (for me anyways)
Untitled1.jpg
Untitled1.jpg (46.8 KiB) Viewed 15709 times
by mikemoy
Mon Jan 15, 2024 8:35 pm
Forum: General Discussion
Topic: Schematic / PCB tutorials for beginners
Replies: 2
Views: 20001

Re: Schematic / PCB tutorials for beginners

It's not specifically geared towards your specific flavor of the ESP32, but it would not matter much at all.
https://learnesp32.com/videos/course-in ... troduction
by mikemoy
Mon Jan 15, 2024 5:56 pm
Forum: General Discussion
Topic: Esp32 + stepper motor
Replies: 5
Views: 25104

Re: Esp32 + stepper motor

Can you post your code?
by mikemoy
Mon Jan 08, 2024 2:16 am
Forum: General Discussion
Topic: Simple switch to turn on my fireplace with low voltage
Replies: 6
Views: 27315

Re: Simple switch to turn on my fireplace with low voltage

However, the actual manual switch on my fireplace runs with very little voltage. About 0.2v.
Something does not sound correct there. Maybe its AC and your reading with a DC meter ?

Best bet is to use a relay.
by mikemoy
Thu Dec 28, 2023 4:39 pm
Forum: General Discussion
Topic: Esp32-S3 with POE (w5500)?
Replies: 1
Views: 1061

Re: Esp32-S3 with POE (w5500)?

You need to use a RJ45 that supports POE. I.E. it brings out the POE pins.
something like ARJM11D7-114-AB-EW2
For the POE power supply I have use the AG9903-MTB.
by mikemoy
Tue Dec 19, 2023 5:45 am
Forum: Hardware
Topic: ESP32-S3 boot mode
Replies: 5
Views: 13850

Re: ESP32-S3 boot mode

He brings up a good idea. I dont know if it could be implemented in menuconfig. It would be a nice feature to enable/disable those bootstrap pins.
by mikemoy
Sun Dec 10, 2023 6:35 am
Forum: General Discussion
Topic: can't printf with ESP32-S2 ESP-IDF 5.1
Replies: 5
Views: 48044

Re: can't printf with ESP32-S2 ESP-IDF 5.1

As far as I know, printf will not work in Arduino frameworks. Rather it should be Serial.print()
FYI, printf works just fine in Arduino.
by mikemoy
Tue Dec 05, 2023 3:19 am
Forum: General Discussion
Topic: Espressif DSP Library help
Replies: 14
Views: 7416

Re: Espressif DSP Library help

I got it working. Thank you guys for the help!
by mikemoy
Mon Dec 04, 2023 2:51 pm
Forum: General Discussion
Topic: Espressif DSP Library help
Replies: 14
Views: 7416

Re: Espressif DSP Library help

Seems pretty trivial to me: the functions take int16_t types
FWIW, in the example this function " dsps_tone_gen_f32(x1, N, 1.0, 0.16, 0); "
fills x1 with float values from -1.0 to 1.0. Why do you say it takes int16_t types ?
by mikemoy
Mon Dec 04, 2023 12:50 pm
Forum: General Discussion
Topic: Espressif DSP Library help
Replies: 14
Views: 7416

Re: Espressif DSP Library help

I apologize if that is how my statement came off. It's intention was just to explain I am under the gun on something I know very little about, and could use some help in a big way is all. You'r expiation was very helpful. Embarrassing obvious now that it was pointed out. If I take the fft example as...