Search found 606 matches

by mikemoy
Fri Jan 25, 2019 1:19 pm
Forum: Showcase
Topic: WiPhone (an ESP32 VoIP phone)
Replies: 10
Views: 19780

Re: WiPhone (an ESP32 VoIP phone)

Is the software going to be open source or for sale ?
by mikemoy
Thu Jan 24, 2019 12:39 pm
Forum: ESP-IDF
Topic: http_server, server_port overide settings
Replies: 2
Views: 4542

Re: http_server, server_port overide settings

No one has no idea why changing server ports does not work?
by mikemoy
Thu Jan 24, 2019 12:13 pm
Forum: Showcase
Topic: WiPhone (an ESP32 VoIP phone)
Replies: 10
Views: 19780

Re: WiPhone (an ESP32 VoIP phone)

I have a client that would very much be interested in this. What codecs does it currently support?
by mikemoy
Thu Jan 24, 2019 2:55 am
Forum: Showcase
Topic: ESP32-Wrover POE Board
Replies: 0
Views: 3628

ESP32-Wrover POE Board

More to come later, just finished hand soldering my new POE enabled ESP32-Wrover board. Its IEEE802.3af compliant POE. POE Input voltage range 36V to 57V on pins 4,5 & 7,8. Will accept either AC or DC POE. Has 5v Output from POE to header to power your own things up to 9W. Will accept external 5V DC...
by mikemoy
Tue Jan 22, 2019 2:17 pm
Forum: General Discussion
Topic: GPIO 27 Pullup not working
Replies: 2
Views: 3696

Re: GPIO 27 Pullup not working

I just tried the following, and confirmed with my logic probe, and it works fine for me. Tested both pull up and pull down. // Test Pulldown gpio_set_direction(GPIO_NUM_27, GPIO_MODE_INPUT); gpio_pulldown_en(GPIO_NUM_27); // Test Pullup gpio_set_direction(GPIO_NUM_27, GPIO_MODE_INPUT); gpio_pullup_e...
by mikemoy
Mon Jan 21, 2019 12:27 pm
Forum: General Discussion
Topic: Problem with powerbank with ESP32
Replies: 6
Views: 7842

Re: Problem with powerbank with ESP32

I am not saying this is the problem, but I have seen power banks that will not power up deices if the load is not high enough.
by mikemoy
Fri Jan 18, 2019 2:02 pm
Forum: General Discussion
Topic: How to erase flash memory from terminal
Replies: 5
Views: 40351

Re: How to erase flash memory from terminal

Well, I dont use a mac. There is a Flash Download Tool you can get from Espressif here: https://www.espressif.com/en/products/hardware/esp32/resources But its only for a PC. Another option is you install the toolchain following these directions: https://espressif-docs.readthedocs-hosted.com/projects...
by mikemoy
Wed Jan 16, 2019 5:09 am
Forum: ESP-IDF
Topic: http_server, server_port overide settings
Replies: 2
Views: 4542

http_server, server_port overide settings

Has anyone tried to change the server_port default vale of 80 to something else, and have it work? I have the following and if i leave config.server_port=80 it works just fine, however if i change config.server_port=8080 it wont work. httpd_config_t config = HTTPD_DEFAULT_CONFIG(); // Lets change th...
by mikemoy
Wed Jan 16, 2019 5:05 am
Forum: General Discussion
Topic: HTTPD_DEFAULT_CONFIG, overide settings
Replies: 1
Views: 6531

Re: HTTPD_DEFAULT_CONFIG, overide settings

Like this.

httpd_config_t config = HTTPD_DEFAULT_CONFIG();

// Lets bump up the stack size (default was 4096)
config.stack_size = 8192;

httpd_start(&OTA_server, &config)