B4R Question how to send string to softAP function (in line c)

mzelecom

Member
I want to set wifi ssid name and hide ssid by in line c.
i used this function but not compiled.
how can i send string to softAP function.
i want to save name in eeprom and change it sometimes.


B4X:
RunNative("softAP", "test")


#if C
void softAP(B4R::Object* o) {
   WiFi.softAP(o->data,"",1,1);
}
#end if
 

thetahsk

Active Member
Licensed User
Longtime User
I want to set wifi ssid name and hide ssid by in line c.
i used this function but not compiled.
how can i send string to softAP function.
i want to save name in eeprom and change it sometimes.


B4X:
RunNative("softAP", "test")


#if C
void softAP(B4R::Object* o) {
   WiFi.softAP(o->data,"",1,1);
}
#end if

take this
 
Upvote 0
Top