Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
isuPatches committed Nov 5, 2016
2 parents 2c2cafd + 7ed8ed1 commit 71a7151
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ int result = mWiseFy.compareSignalLevel(-35, -70);
To connect to a network given an SSID:

```java
boolean connectedSuccessfully = mWiseFy.connectToNetwork("SSID To Reconnect To", 3000);
boolean connectedSuccessfully = mWiseFy.connectToNetwork("SSID To Reconnect To", 30000);
```

To disable wifi:
Expand Down Expand Up @@ -169,7 +169,7 @@ boolean isConnected = mWiseFy.isDeviceConnectedToSSID("SSID");
To check and see if the device is connected to a wifi network:

```java
boolean isConnected = mWiseFy.isDeviceConnectedToWifiNetwork("SSID");
boolean isConnected = mWiseFy.isDeviceConnectedToWifiNetwork();
```

To check and see if a given SSID is in the devices set of configured networks:
Expand Down Expand Up @@ -199,7 +199,7 @@ boolean removedSuccessfully = mWiseFy.removeNetwork("SSID To Remove");
To search for an SSID given a search string:

```java
String ssid = mWiseFy.searchForSSID("SSID To Search For", 3000);
String ssid = mWiseFy.searchForSSID("SSID To Search For", 30000);
```

## License ##
Expand All @@ -213,4 +213,4 @@ compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
or implied. See the License for the specific language governing permissions and limitations under
the License.
the License.

0 comments on commit 71a7151

Please sign in to comment.