it looks like your problem isn't the rf_cal.
More likely it is some missing init of the wifi. Do you set the mode somewhere in the (not shown) code?
Explore... Chat... Share...
Moderator: igrr
//WIFI credentials go here
IPAddress ip(192, 168, 22, 1);
IPAddress gw(192, 168, 22, 123);
IPAddress nm(255, 255, 255, 0);
const char* ssid = "YOUR_SSID";
const char* password = "your_pwd";
const char* server = "184.106.153.149";
WiFiClient client;
...
WiFi.mode(WIFI_STA);
WiFi.config(ip, gw, nm, gw, gw);
WiFi.begin(ssid, password);
WiFi.mode(WIFI_STA);// set station/client mode
WiFi.persistent(false);
WiFi.begin((char*)SSID.c_str(), (char*)PSK.c_str());
It takes about 20-25 seconds for home assistant c[…]
I tried to upgrade tof my sonoff basic R2 with the[…]
a problem Perhaps you want to define "Probl[…]
Rebooting your router will not give you a faster I[…]
There are no other notifications from esptool.py i[…]
Using the Arduino IDE, you'll learn how to set up […]
In this project, you will post to Twitter using an[…]
In this project, we will build a water level contr[…]
I guess I'm late, but I had the same problem and f[…]
Last night I received my first D1 Minis for a lear[…]
Although I am aware that this is an old post, I fe[…]