Search found 64 matches

by kurtzweber
Tue Nov 07, 2017 10:11 am
Forum: General Discussion
Topic: Entering SSID and Password in ESP32
Replies: 2
Views: 8606

Re: Entering SSID and Password in ESP32

Hi

maybe you're looking for a "Wifi Manager" library, like:
https://github.com/zhouhan0126/WIFIMANAGER-ESP32
by kurtzweber
Mon Nov 06, 2017 2:09 pm
Forum: General Discussion
Topic: wifi connectivity after exiting light sleep mode (timer based)
Replies: 4
Views: 7815

Re: wifi connectivity after exiting light sleep mode (timer based)

Hi from the official documentation: WiFi can coexist with light sleep mode, allowing the chip to go into light sleep mode when there is no network activity, and waking up the chip from light sleep mode when required. However APIs described in this section can not be used for that purpose. esp_light_...
by kurtzweber
Mon Nov 06, 2017 1:51 pm
Forum: General Discussion
Topic: Select which partition to boot
Replies: 2
Views: 5561

Re: Select which partition to boot

Hi The default bootloader has its own "logic": http://esp-idf.readthedocs.io/en/latest/api-guides/partition-tables.html but you can develop a custom bootloader, give a look to the source code for the default one: https://github.com/espressif/esp-idf/blob/master/components/bootloader/subproject/main/...
by kurtzweber
Fri Oct 13, 2017 7:06 am
Forum: General Discussion
Topic: USB Host (MAX3421E)
Replies: 2
Views: 6653

Re: USB Host (MAX3421E)

Hi

why do you need an USB host to connect the esp32 to an arduino Mega? Couldn't you use a UART connection?
by kurtzweber
Tue Oct 03, 2017 11:56 am
Forum: General Discussion
Topic: i2c slave using esp-idf driver: interrupt when data available?
Replies: 0
Views: 2930

i2c slave using esp-idf driver: interrupt when data available?

Hi!

I'm implementing an i2c slave device with the esp32 chip, using the i2c driver included in the esp-idf framework. Is it possible to have interrupts when some "events" (like new data from master available...) happen? It's not clear for me the use of the method i2c_isr_register()

thanks
by kurtzweber
Fri Sep 01, 2017 7:50 am
Forum: General Discussion
Topic: esp32 does not connect via putty
Replies: 4
Views: 10457

Re: esp32 does not connect via putty

Hi

try to compile an example and upload on the board...
by kurtzweber
Wed Aug 30, 2017 11:44 am
Forum: General Discussion
Topic: Component repository/manager?
Replies: 2
Views: 4140

Re: Component repository/manager?

Hi glad to know that this feature is planned and you're working on it... I'm a developer of some Arduino libraries and I really like the way they are maintaining the list of the available libraries (github repository with a given structure + json file and issues to add libraries to the official repo...
by kurtzweber
Wed Aug 30, 2017 11:41 am
Forum: General Discussion
Topic: One task for many MQTT topics or one task just only for one MQTT topic
Replies: 1
Views: 3350

Re: One task for many MQTT topics or one task just only for one MQTT topic

Hi! "about 5" are not many tasks ;) anyway it depends on the "logic" you're going to use to send data to the topics... if you're going to read all the sensors (for example) and update all the topics every n seconds, you could use just one task to do all the job... but if you want to independently re...