Page 1 of 1

find specific wireless upon entering cell group

Posted: 13 Jun 2017 06:37
by g_BonE
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?

Re: find specific wireless upon entering cell group

Posted: 14 Jun 2017 19:09
by Martin
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

Re: find specific wireless upon entering cell group

Posted: 19 Jun 2017 06:41
by g_BonE
Thank You very much sir!