Search found 15 matches
- Thu Apr 25, 2024 6:09 am
- Forum: ESP32 Arduino
- Topic: HTTPClient Raw Mode
- Replies: 1
- Views: 718
HTTPClient Raw Mode
Is there a way when using the HTTPClient library to dump to the serial monitor the: actual data sent to a host via a GET raw data received in response to a GET before it is handled by the HTTPClient library? Setting the Core Debug Level to "Verbose" kind of does the second item but it is sent during...
- Tue Jan 23, 2024 6:12 pm
- Forum: Hardware
- Topic: ESP32 Dev Board LED Connection?
- Replies: 5
- Views: 14248
Re: ESP32 Dev Board LED Connection?
When powered up, the ESP sends a bunch of information out to the USB port via UART0, which is connected to the Serial/USB bridge chip. On this particular board, the designers chose to put an LED on the TXD line of UART0, I suppose to let the user know when the ESP32 is sending data. This was confirm...
- Sat May 27, 2023 3:00 pm
- Forum: ESP-IDF
- Topic: RMT Periperhal rmt translator set context?
- Replies: 2
- Views: 1396
Re: RMT Periperhal rmt translator set context?
Thank-you for the awesome answer. Very much appreciated. Have a great one .
- Fri May 26, 2023 10:52 pm
- Forum: ESP-IDF
- Topic: RMT Periperhal rmt translator set context?
- Replies: 2
- Views: 1396
RMT Periperhal rmt translator set context?
Can anyone explain, for the RMT peripheral, what the function:
rmt_translator_set_context()
does?
rmt_translator_set_context()
does?
- It is needed to transmit data using the RMT controller?
- How does it interact with the other RMT functions and structures?
- Fri Jan 28, 2022 6:17 pm
- Forum: ESP-IDF
- Topic: SPI CS Lines - Which GPIO Pins to Use?
- Replies: 0
- Views: 2482
SPI CS Lines - Which GPIO Pins to Use?
Seeking clarification on which GPIO pins to use for CS lines when multiple devices are connected to an SPI bus using the SPI Master driver. From this page in the docs: https://docs.espressif.com/projects/esp-idf/en/v3.3.6/api-reference/peripherals/spi_master.html#_CPPv417spi_host_device_t It states:...
- Fri Dec 17, 2021 1:58 am
- Forum: Hardware
- Topic: ESP32 Dev Board LED Connection?
- Replies: 5
- Views: 14248
Re: ESP32 Dev Board LED Connection?
Ah. There you go. Running the basic Blink program driving IO1 does indeed control the LED.
Of course that makes the serial monitor port kinda useless... Unless I flash the LED at 115200 baud !
Thanks Felix.
Of course that makes the serial monitor port kinda useless... Unless I flash the LED at 115200 baud !
Thanks Felix.
- Fri Dec 17, 2021 12:45 am
- Forum: Hardware
- Topic: ESP32 Dev Board LED Connection?
- Replies: 5
- Views: 14248
ESP32 Dev Board LED Connection?
I've picked up a number of 38 pin ESP32 dev boards from AliExpress & Amazon. The physical layout of the boards are identical. Near the header pin marked G2, there is a single red LED. Does anyone know, is this LED connected to a GPIO pin and if so, which one? The LED flickers initially during power-...
- Tue Nov 23, 2021 12:44 am
- Forum: ESP-IDF
- Topic: [IDF-4348] ESP-IDF Fails to Install
- Replies: 4
- Views: 6665
Re: [IDF-4348] ESP-IDF Fails to Install
Appreciate the help. Thanks. Running through the "Get Started" steps at: https://docs.espressif.com/projects/esp-idf/en/v4.3.1/esp32/get-started/index.html#step-4-set-up-the-environment-variables At Step 8 Build the Project, after running: ~/esp/hello_world % idf.py build things proceeded until the ...
- Thu Nov 18, 2021 6:52 pm
- Forum: ESP-IDF
- Topic: [IDF-4348] ESP-IDF Fails to Install
- Replies: 4
- Views: 6665
Re: ESP-IDF Fails to Install
Many thanks Roland. The reply is appreciated. unset python didn't work, had to unalias python to make it go. As background, before installing ESP-IDF, python3 was installed using Homebrew -- a fairly common method. Homebrew sets a few alias' as part of that install. Wondering -- since the export.sh ...
- Thu Nov 18, 2021 12:06 am
- Forum: ESP-IDF
- Topic: [IDF-4348] ESP-IDF Fails to Install
- Replies: 4
- Views: 6665
[IDF-4348] ESP-IDF Fails to Install
Trying to install the ESP-IDF on macOS Big Sur Version 11.6.1 (20G224) Following the instructions at: https://docs.espressif.com/projects/esp-idf/en/v4.3.1/esp32/get-started/index.html At Step 4, seems to be a path error that is not resolved by the export.sh script. The install.sh script runs fine, ...