Search found 396 matches

by ESP_krzychb
Tue Apr 24, 2018 11:05 am
Forum: Sample Code
Topic: why does esp32-lyrat running a2dp_sink example without output ?
Replies: 6
Views: 11219

Re: why does esp32-lyrat running a2dp_sink example without output ?

Hi mkseven32,
mkseven32 wrote:when bt linked to smartphone, while playing muisc, there is a log shows bt is works fine, but there is not any voice out!
The ES8388 codec on board of ESP32 LyratT requires configuration.

Have you tried pipeline_bt_sink example instead?
by ESP_krzychb
Wed Apr 18, 2018 3:18 pm
Forum: Hardware
Topic: Digital To Analogue Converter Characteristics
Replies: 7
Views: 12734

Re: Digital To Analogue Converter Characteristics

Hello mlibby, Hello, does any one know what is the DAC maximum output value? http://esp-idf.readthedocs.io/en/latest/api-reference/peripherals/dac.html#_CPPv218dac_output_voltage13dac_channel_t7uint8_t And for ADC what is the maximum input value? http://esp-idf.readthedocs.io/en/latest/api-reference...
by ESP_krzychb
Sat Apr 14, 2018 10:11 am
Forum: ESP-IDF
Topic: Configure GPIO4 as ADC Input
Replies: 5
Views: 7420

Re: Configure GPIO4 as ADC Input

GPIO12 is also one of dedicated JTAG pins.
If you plan to use JTAG then its operation will interfere with an application toggling DTR.
Apart from that I do not see issues with using GPIO12 as an output.
by ESP_krzychb
Fri Apr 13, 2018 2:31 pm
Forum: ESP-IDF
Topic: Configure GPIO4 as ADC Input
Replies: 5
Views: 7420

Re: Configure GPIO4 as ADC Input

Do you mean DTR (Data Terminal Ready) input to control serial communication? GPIO12 or MTDI is one of Strapping Pins and should be either pulled down or pulled up on power-on reset. External device connected to GPIO12 should not pull in opposite direction on power on reset, or ESP32 will likely fail...
by ESP_krzychb
Fri Apr 13, 2018 12:25 pm
Forum: ESP-IDF
Topic: Configure GPIO4 as ADC Input
Replies: 5
Views: 7420

Re: Configure GPIO4 as ADC Input

Hello kishan patel,

Yes, you can but there are some restrictions.
by ESP_krzychb
Thu Apr 12, 2018 1:44 pm
Forum: General Discussion
Topic: ESP_LOG(I/W/E) vs printf for debug
Replies: 6
Views: 20753

Re: ESP_LOG(I/W/E) vs printf for debug

Is this just a matter of preference, or is there a logical reason to use ESP_LOG(I/W/E) over "I've seen it done so that's why I do it" type mentality. Hi mikemoy, I think that for most of ad hoc debuging this it is a matter of preference with indication to use printf. ESP_LOG(I/W/E) are intended to...
by ESP_krzychb
Tue Apr 10, 2018 8:00 am
Forum: Hardware
Topic: Unable to flash ESP32-WROOM - Getting RAM errors
Replies: 7
Views: 9622

Re: Unable to flash ESP32-WROOM - Getting RAM errors

There is a 4.7uF and a 100nF capacitor on the power rails... I would also add bigger uF value decoupling capacitors following Espressif's reference designs, see ESP32-DevKitC Reference Design . The design contains 22uF and 100nF capacitors for the ESP32 module, not counting 22uF nearby on the outpu...
by ESP_krzychb
Mon Apr 02, 2018 7:22 pm
Forum: General Discussion
Topic: read ADC result will trigger other GPIO Pin's interrupt
Replies: 2
Views: 4993

Re: read ADC result will trigger other GPIO Pin's interrupt

Hi adherent,
adherent wrote:Any idea or hint will be highly appreciated!
Ref: https://github.com/espressif/esp-idf/issues/1096
by ESP_krzychb
Sun Mar 18, 2018 11:13 am
Forum: ESP32 Arduino
Topic: Advice needed for vibration analysis project comms.
Replies: 6
Views: 9428

Re: Advice needed for vibration analysis project comms.

Hi Steve, The data would comprise four arrays of 32768 Int numbers representing the voltages. These would be collected at rates up to 15000 samples per second. The STM32F103 doesn’t have the capacity to store this amount of data so it is sent directly to the PC via USB at 512000 bps. I don’t know if...
by ESP_krzychb
Sat Mar 17, 2018 12:43 pm
Forum: ESP32 Arduino
Topic: Advice needed for vibration analysis project comms.
Replies: 6
Views: 9428

Re: Advice needed for vibration analysis project comms.

Hi BaartCM, The code for this is here https://github.com/BaartCM/FFT-Analyser I have modified the code to work with the ESP32 and it is functioning fine. Nice project! If you like to make it internet enabled then you are in the right place :D Ideally, I see a hub like a Raspberry Pi connecting to se...