Android Open Source - wifiManager Global






From Project

Back to project page wifiManager.

License

The source code is released under:

Apache License

If you think the Android project wifiManager listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.txmcu.WifiManager;
//w w  w . j  av a  2 s.co  m
public class Global {

  public static int WIFI_CONNECTING = 0;

  public static int WIFI_CONNECTED = 1;

  public static int WIFI_CONNECT_FAILED = 2;

  public static String SSID = "WIFI_TEST";

  public static String PASSWORD = "1234567890";

  public static int WIFICIPHER_NOPASS = 1;

  public static int WIFICIPHER_WEP = 2;

  public static int WIFICIPHER_WPA = 3;

  public static String INT_SERVER_FAIL = "INTSERVER_FAIL";

  public static String INT_SERVER_SUCCESS = "INTSERVER_SUCCESS";

  public static String INT_CLIENT_FAIL = "INTCLIENT_FAIL";

  public static String INT_CLIENT_SUCCESS = "INTCLIENT_SUCCESS";

  public static String CONNECT_SUCESS = "connect_success";

  public static String CONNECT_FAIL = "connect_fail";

  // ??????????????
  public static final int IPMSG_SNEDCLIENTDATA = 0x00000050; // ??????????client???????ocket??????????????????

  public static final int IPMSG_SENDALLCLIENTS = 0x00000051; // ???????????????????Server
                                // ??????client??????????????????????????????????

  public static final int IPMSG_SENDROTARYDATA = 0x00000060; // ????????????????

  public static final int IPMSG_SENDROTARYRESULT = 0x00000061; // ???????????????????

  public static final int IPMSG_SENDCHANGECONTROLLER = 0x00000062; // ???????????????

  public static final int IPMSG_REQUESTCHANGECONTROLLER = 0x00000062; // ?????????????
  
  /**
     * ????????????
     * @param frequency
     * @return
     */
    public static int getChannel(int frequency)
    {
            int channel = 0;
            switch(frequency){
            case 2412:
                    channel = 1;
                    break;
            case 2417:
                    channel = 2;
                    break;
            case 2422:
                    channel = 3;
                    break;
            case 2427:
                    channel = 4;
                    break;
            case 2432:
                    channel = 5;
                    break;
            case 2437:
                    channel = 6;
                    break;
            case 2442:
                    channel = 7;
                    break;
            case 2447:
                    channel = 8;
                    break;
            case 2452:
                    channel = 9;
                    break;
            case 2457:
                    channel = 10;
                    break;
            case 2462:
                    channel = 11;
                    break;
            case 2467:
                    channel = 12;
                    break;
            case 2472:
                    channel = 13;
                    break;
            case 2484:
                    channel = 14;
                    break;
            }
            return channel;
    }

}




Java Source Code List

com.txmcu.WifiManager.Global.java
com.txmcu.WifiManager.WifiConnectBroadCast.java
com.txmcu.WifiManager.WifiHotAdmin.java
com.txmcu.WifiManager.WifiHotConfigAdmin.java
com.txmcu.WifiManager.WifiHotManager.java
com.txmcu.WifiManager.WifiScanRsultBroadCast.java
com.txmcu.WifiManager.WifiStateBroadCast.java
com.txmcu.wifimanagerdemo.AddDeviceActivity.java
com.txmcu.wifimanagerdemo.MainActivity.java
com.txmcu.wifimanagerdemo.SettingActivity.java
com.txmcu.wifimanagerdemo.XiaoXinAdapter.java
com.txmcu.wifimanagerdemo.XiaoxinInfo.java
com.txmcu.xiaoxin.Udpclient.java
com.txmcu.xiaoxin.XinStateManager.java