Search found 398 matches

by ESP_krzychb
Tue Apr 04, 2017 2:44 pm
Forum: General Discussion
Topic: Hi , can anyone say , how to configure the digital input and output in esp32 and how to read the digital input..?
Replies: 4
Views: 10562

Re: Hi , can anyone say , how to configure the digital input and output in esp32 and how to read the digital input..?

Hi Reeshma,

I suggest the following:

1. Install Arduino IDE
2. Get blink.ino example working.
3. Get another example (that shows how to read digital input) working.

At this point you should be able to write a program doing what you described.
by ESP_krzychb
Fri Mar 31, 2017 5:56 am
Forum: General Discussion
Topic: I use I2S DMA way to collect data from camera.More or less a pixel randomly occured when wifi is connecting.
Replies: 5
Views: 8490

Re: I use I2S DMA way to collect data from camera.More or less a pixel randomly occured when wifi is connecting.

I use I2S DMA way to collect data from camera. Wifi is connecting,according my investigation,when esp32 collects data from camera ,more or less a pixel occured randomly. I can almost guarantee you its the DMA controller. Same problem of random bytes being changed in the SPI Driver ONLY when used wi...
by ESP_krzychb
Sun Mar 19, 2017 7:34 pm
Forum: ESP32 Arduino
Topic: EEPROM
Replies: 4
Views: 20043

Re: EEPROM

@PeWosT, Sorry, I did not notice you have been posting in ESP32 Arduino forum. In Arduino, NVS is implemented with Preferences library. The library includes an example that shows how to save / read an integer counter. As you like to save strings, then adopt this example using putString / getString m...
by ESP_krzychb
Sun Mar 19, 2017 4:52 pm
Forum: ESP32 Arduino
Topic: EEPROM
Replies: 4
Views: 20043

Re: EEPROM

Hi PeWosT,

Check NVS (Non-Volatile Storage) https://github.com/espressif/esp-idf/tr ... s_rw_value
by ESP_krzychb
Sat Mar 04, 2017 9:04 pm
Forum: General Discussion
Topic: Should we "care" about old vs new silicon?
Replies: 8
Views: 13555

Re: Should we "care" about old vs new silicon?

For battery projects you probably want the new rev. For audio projects you probably want the new rev.
I would add camera projects to this list.
This is when processing of images above QVGA grey scale is required.

For my current projects I am more than happy with rev. 0.
by ESP_krzychb
Fri Mar 03, 2017 7:44 pm
Forum: General Discussion
Topic: Pulse Counting and sleeping
Replies: 20
Views: 34742

Re: Pulse Counting and sleeping

I have created an example which illustrates deep sleep'ing and counting low pulses on GPIO0:
Very informative, neat example.
Thank you!
by ESP_krzychb
Mon Feb 20, 2017 12:00 pm
Forum: ESP-IDF
Topic: http_request example - getting stuck
Replies: 1
Views: 5576

Re: http_request example - getting stuck

Hey @ManuelS,

Basing on randomness of output and when it happens, this looks like some h/w problem.

Did you manage to successfully run other examples?

I would try the following examples and check for healthy output on UART:
1. get-started/hello_world
2. protocols/sntp

Krzysztof
by ESP_krzychb
Wed Feb 08, 2017 10:00 am
Forum: General Discussion
Topic: Problem while writing into SD card
Replies: 4
Views: 8230

Re: Problem while writing into SD card

Hi @amalamal, Example of writing binary data to SD card using this very driver and fwrite is here . Basically you need to replace in your code fprintf with fwrite and provide this function with: 1. pointer to your jpeg image, 2. number of bytes of the jpeg image, 3. 1 - to write one set of the "numb...
by ESP_krzychb
Tue Jan 24, 2017 7:24 pm
Forum: News
Topic: ESP-IDF 2.0
Replies: 29
Views: 80403

Re: ESP-IDF 2.0

@Lurcher, I have checked spi_master example with esp-idf-v2.0-rc1. It compiles and works without any issues. For the issue you report I would try the following: 1. Get clean and complete copy of ESP-IDF from GitHub by executing git clone --recursive https://github.com/espressif/esp-idf.git 2. Build ...