Search found 71 matches

by felmue
Wed Jan 15, 2025 1:49 pm
Forum: General Discussion
Topic: Forum super slow
Replies: 4
Views: 1692

Re: Forum super slow

Hi guys

yes, it's the same for me. It took about 30 seconds after clicking reply for the edit window to open.

Thanks
Felix
by felmue
Fri Sep 20, 2024 12:49 pm
Forum: General Discussion
Topic: Pull up does not work.
Replies: 2
Views: 2844

Re: Pull up does not work.

Hello @Saichander

have a look here: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/gpio.html . GPIO34 to GPIO39 don't have internal pull-up (or pull-down) capabilities.

Excerpt from that page: GPI: GPIO34-39 can only be set as input mode and do not have ...
by felmue
Thu Sep 14, 2023 6:26 pm
Forum: ESP-IDF
Topic: ESP32-C3 deep sleep GPIO wakeup reason
Replies: 2
Views: 5605

Re: ESP32-C3 deep sleep GPIO wakeup reason

Hello @andrewandroid

which ESP-IDF version are you using? Running the provided deep sleep example https://github.com/espressif/esp-idf/tree/master/examples/system/deep_sleep on my ESP32C3 works fine and I get the proper wake-up reason. I tried with the latest ESP-IDF from github, e.g. 5.2.x ...
by felmue
Sun Nov 13, 2022 1:51 pm
Forum: ESP-IDF
Topic: STAAP example
Replies: 2
Views: 2807

Re: STAAP example

Hello @sergiomarina

I think the esp-iot-bridge project is what you are looking for.

https://github.com/espressif/esp-iot-bridge

Thanks
Felix
by felmue
Sat Nov 05, 2022 5:52 pm
Forum: General Discussion
Topic: ESP32-C3 No serial communication on native USB
Replies: 5
Views: 5524

Re: ESP32-C3 No serial communication on native USB

Hello @Niklas Sommer

for Arduino maybe this post can help? https://github.com/espressif/arduino-es ... sions/6871

Thanks
Felix
by felmue
Sat Nov 05, 2022 3:07 am
Forum: General Discussion
Topic: ESP32-C3 No serial communication on native USB
Replies: 5
Views: 5524

Re: ESP32-C3 No serial communication on native USB

Hello @Niklas Sommer

this article describes how to enable serial communication over native USB.

https://docs.espressif.com/projects/esp ... nsole.html

Thanks
Felix
by felmue
Fri Nov 04, 2022 7:07 am
Forum: ESP32 Arduino
Topic: Interal Pulldown not working on GPIO19?
Replies: 4
Views: 7514

Re: Interal Pulldown not working on GPIO19?

Hello @sircastor

from the ESP32C3 datasheet: https://www.espressif.com/sites/default/files/documentation/esp32-c3_datasheet_en.pdf

USB - GPIO18 and GPIO19 are USB pins. The pull-up value of a USB pin is controlled by the pin’s pull-up
value together with USB pull-up value. If any of the two pull ...
by felmue
Fri Nov 04, 2022 6:49 am
Forum: Hardware
Topic: ESP32-C3-MINI-1 automatic upload mode
Replies: 4
Views: 3786

Re: ESP32-C3-MINI-1 automatic upload mode

Hello @ESP_Sprite

I think you meant to write `... same circuit but with IO0 replaced with IO9.`

Thanks
Felix
by felmue
Sun Oct 09, 2022 7:04 am
Forum: ESP32 Arduino
Topic: Unable tp ping remote host using ESP32 ping
Replies: 4
Views: 5101

Re: Unable tp ping remote host using ESP32 ping

Hello @kian79

have you tried to ping a different host? have you tried to connect to a different AP?

Thanks
Felix

P.S. the included ping example HostPing.ino works for me.
by felmue
Mon Sep 26, 2022 4:31 pm
Forum: ESP32 Arduino
Topic: countdown timer using interrupts
Replies: 5
Views: 8302

Re: countdown timer using interrupts

Hello @lannocm

the way I understand timers to work is like this:
- timer counting up: timer starts at 0 microseconds and when it reaches the alarm value (1000000 microseconds) the interrupt is triggered.
- timer counting down: timer starts at 1000000 microseconds and when it reaches the alarm value ...

Go to advanced search