FK

Results 12 comments of FK

Thanks for a quick revert. > What the meaning of the main or particular router? Is it an access point? Answering to your question: Main/particular router i mean AP [D-link...

This interpreation is correct! >- You have multiple access points that can be used. (they may be in the vicinity or far away) >- AutoConnect keeps the credentials of those...

I tried implementing the code. Its checking for SSID every 2mins and if found it tries to connect it and gets connected, however there are two issues which i am...

Hieromon is it possible to have a 2-3mins talk over skype where i can share my screen and update you my concern?

Hieromon, there is also one more issue to which i need your help: I want to save data of 5 input pins to remember the last know state into ESP32...

I tried as you said in order to read it, below is the code ``` void preferencecheck(){ Preferences preferences; preferences.begin("AC_CREDT", false); unsigned int data = preferences.getUInt("AC_CREDT", 0); Serial.printf("DATA: %d\n", data);...

I wanted to understand the whole AutoConnectCredential saving process so i wanted to see what all data is stored against which key. I understood your point > AutoConnect reserves AC_CREDT...

Yes i want to view all data stored to each value on my serial monitor. How can i get all data using `for loop`? How can i view all the...

To save and view my data i will use the below code: ``` void setup() { Serial.begin(115200); Serial.println(); preferences.begin("iotsharing", false); unsigned int reset_times = preferences.getUInt("reset_times", 0); reset_times++; Serial.printf("Number of restart...