All,
i could use some help with the following task: I want to look for the existence of a specific wireless network after entering predefined cell group (trigger network cell GSM) - and if found to change a global variable. so far the cell group trigger is working fine but i dont have a solution for the "find wireless with ssid XXX" part yet. also how can i make sure i use the correct wireless if there are two with the same SSID?
find specific wireless upon entering cell group
Moderator: Martin
Re: find specific wireless upon entering cell group
Hi,
You can use a condition WiFi Available to check for a particular WiFi network. The condition also provides a variable bssids that contains the list of available bssids. You could use a condition Expression: containdsElement(bssids, "11:22:33:44:55:66"); to check if the list of bssids contains the bssid of your choice.
Regards,
Martin
You can use a condition WiFi Available to check for a particular WiFi network. The condition also provides a variable bssids that contains the list of available bssids. You could use a condition Expression: containdsElement(bssids, "11:22:33:44:55:66"); to check if the list of bssids contains the bssid of your choice.
Regards,
Martin
Re: find specific wireless upon entering cell group
Thank You very much sir!