Hi, when i execute the code in react native project, i return this error "no wifi connection".
i don't understand how to pass the ssid of the wifi network to the start method.
This is my code:
let connected_wifi_password = "mypassword";
let broadcast_type = 1; // 1: broadcast; 0: multicast
RNEsptouch.startSmartConfig(
connected_wifi_password
, broadcast_type
).then((res) => {
Hi, when i execute the code in react native project, i return this error "no wifi connection".
i don't understand how to pass the ssid of the wifi network to the start method.
This is my code: let connected_wifi_password = "mypassword"; let broadcast_type = 1; // 1: broadcast; 0: multicast RNEsptouch.startSmartConfig( connected_wifi_password , broadcast_type ).then((res) => {
Thanks