Search found 6 matches

by nmtrivedi
Fri Feb 03, 2017 5:38 am
Forum: General Discussion
Topic: WPS WPS_TYPE_PBC
Replies: 1
Views: 4122

Re: WPS WPS_TYPE_PBC

I assume you are initializing wifi before starting wps using esp_wifi_init() and you received SYSTEM_EVENT_STA_START event. You can also check whether all above APIs return ESP_OK or not.
by nmtrivedi
Wed Feb 01, 2017 8:49 am
Forum: General Discussion
Topic: Store and read static pages in flash
Replies: 9
Views: 13937

Re: Store and read static pages in flash

You could do it all inline in the one html file - css and js in their respective head tags, and images can be inlined using base64 encoding: <img alt="Embedded Image" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIA..." /> Base64 will of course increase the file size of the images a bit, so ...
by nmtrivedi
Wed Feb 01, 2017 7:39 am
Forum: General Discussion
Topic: Received SYSTEM_EVENT_STA_WPS_ER_SUCCESS event but can't access internet
Replies: 5
Views: 7835

Received SYSTEM_EVENT_STA_WPS_ER_SUCCESS event but can't access internet

Hi, I am working on ESP32_Core_board_v2. I am trying to connect my device with AP using WPS. I get SYSTEM_EVENT_STA_WPS_ER_SUCCESS event, but the device can't connect with internet afterwords. I am able to connect other devices with the AP and they are able to access internet successfully. Also ther...
by nmtrivedi
Fri Jan 27, 2017 2:00 pm
Forum: General Discussion
Topic: Store and read static pages in flash
Replies: 9
Views: 13937

Store and read static pages in flash

Hi, I am working on ESP32_Core_board_v2. I am developing an application in which I need to develop http web-server which presents static web pages when requested by http client. I followed discussion at http://www.esp32.com/viewtopic.php?t=676 and tried but didn't succeed. Need help regarding what I...
by nmtrivedi
Mon Jan 23, 2017 10:10 am
Forum: General Discussion
Topic: uart_write_bytes doesn't print anything on minicom when esp_wifi_init is called.
Replies: 1
Views: 3987

uart_write_bytes doesn't print anything on minicom when esp_wifi_init is called.

I am using ESP32_Core_board_v2. I am facing issue in uart_write_bytes API (using UART_NUM_0) that if I do esp_wifi_init before writing to UART, nothing is printed on the console. If I comment out esp_wifi_init then I can see uart prints. Below is the application I am using to test this. Please let m...
by nmtrivedi
Wed Jan 04, 2017 2:21 pm
Forum: General Discussion
Topic: Can I use "Boot" button as a GPIO push button after program is loaded onto flash in ESP32?
Replies: 5
Views: 17947

Can I use "Boot" button as a GPIO push button after program is loaded onto flash in ESP32?

I am new to ESP32 platform. I have ESP32_Core_board_v2 which doesn't have any dedicated Push Button GPIO on board. I can attach external switch with the GPIO pins but I want to use "Boot" button as push button GPIO meaning if I press it while the program is running, it will call registered call back...