Search found 195 matches

by fasani
Sun Sep 12, 2021 5:13 am
Forum: Sample Code
Topic: Analog Interrupts
Replies: 1
Views: 15777

Re: Analog Interrupts

Hi there, interesting sensor. I was checking this instructable: https://diyi0t.com/mq2-gas-sensor-arduino-esp8266-esp32 And take care because it says the component requires 4.5 to 5 volts so make sure to power it with the 5V usb and not with the 3.3V pin. About the interrupt so far I only tried digi...
by fasani
Sun Sep 12, 2021 5:02 am
Forum: Sample Code
Topic: ESP-rain Maker App Modification
Replies: 1
Views: 12103

Re: ESP-rain Maker App Modification

Hi there, you can get more attention on this forum section that is Rainmaker specific: https://www.esp32.com/viewforum.php?f=41 I think RainMaker was designed with the cloud in mind, so you can interact with voice services such as Alexa or Google. But I’m quite sure apps are open source so I guess i...
by fasani
Sun Sep 12, 2021 4:57 am
Forum: Sample Code
Topic: S2 as sd card reader
Replies: 2
Views: 15611

Re: S2 as sd card reader

Repository deleted?
https://github.com/chegewara/EspTinyUSB ... les/sd_msc

I wanted to check the code but it’s not anymore there. Has it been replaced by another example?
by fasani
Sat Sep 11, 2021 6:00 pm
Forum: Sample Code
Topic: I2S0 Clock (master clock) up to 80MHz derived from APLL clock
Replies: 14
Views: 69239

Re: I2S0 Clock (master clock) up to 80MHz derived from APLL clock

Very interesting Gustavo,
Bookmarking this. I have to try it soon!
Thanks for your sharing it.
by fasani
Sat Sep 11, 2021 5:28 pm
Forum: ESP-IDF
Topic: Build program based on ESP-IDF examples
Replies: 1
Views: 2045

Re: Build program based on ESP-IDF examples

If you find it easy going and confortable to set it up I recommend as next step to read the Build system section and get accustomed to use CMake (CMakeLists config) and Kconfig to generate your own configuration menus for menuconfig. I don’t think it’s a good idea to use the examples as components s...
by fasani
Sat Sep 11, 2021 6:21 am
Forum: ESP-IDF
Topic: https request failed
Replies: 6
Views: 10166

Re: https request failed

Hello Axel,
You need to use events, just as the example uses, in order to get it working.
by fasani
Sat Sep 11, 2021 6:10 am
Forum: Sample Code
Topic: Statically-Allocated I2C Component
Replies: 1
Views: 11613

Re: Statically-Allocated I2C Component

Good job there! And interesting contribution.
I starred this in GitHub since may come in handy soon
by fasani
Tue Sep 07, 2021 11:38 am
Forum: General Discussion
Topic: WiFi.status() (Arduino function) alternative for esp-idf
Replies: 3
Views: 3686

Re: WiFi.status() (Arduino function) alternative for esp-idf

If I'm not mistaken, you can do the same having a: bool wifiConnected = false; And taking in account the WiFi events you can simply set in the event that global variable: WIFI_EVENT_STA_CONNECTED then wifiConnected = true WIFI_EVENT_STA_DISCONNECTED then wifiConnected = false If there is another way...
by fasani
Mon Sep 06, 2021 5:04 pm
Forum: ESP-IDF
Topic: Update HTTP server html object based on variable value in app_main.c
Replies: 1
Views: 1628

Re: Update HTTP server html object based on variable value in app_main.c

Hello,
Can you please specify with some code snippet or similar to describe better what you are trying to achieve?

At least me I fall short of understanding what is going on ;)
by fasani
Sun Sep 05, 2021 4:32 pm
Forum: ESP-IDF
Topic: Support for "bearer" authentication type in https client [solved]
Replies: 3
Views: 4060

Re: Support for "bearer" authentication type in https client

Hello, Unless I'm missing something with the existing toolset in IDF you could handle this. https://github.com/martinberlin/cale-idf/blob/master/main/cale.cpp#L411 Of course I don't know the internals of your particular OAuth but you could get a token and then pass it on every request as an authoriz...