Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raphaelbs/wifinder
WiFinder automatically connects your Espruino to one of your predefined networks.
https://github.com/raphaelbs/wifinder
espruino espruino-web-ide npm-package wifi
Last synced: 2 days ago
JSON representation
WiFinder automatically connects your Espruino to one of your predefined networks.
- Host: GitHub
- URL: https://github.com/raphaelbs/wifinder
- Owner: raphaelbs
- Created: 2017-02-09T17:50:30.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-09T17:55:20.000Z (almost 8 years ago)
- Last Synced: 2024-02-25T16:23:02.983Z (9 months ago)
- Topics: espruino, espruino-web-ide, npm-package, wifi
- Language: JavaScript
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wifinder
WiFinder automatically connects your Espruino to one of your predefined networks.
## Installation
### Option 1
1. Navigate to the Modules folder of your ESPRUINO WEB IDE
2. npm install wifinder
3. move the WiFinder.js to the Modules root folder### Option 2 (recomended)
1. Enable 'Load modules from NPM' inside the ESPRUINO WEB IDE (Settings > Communications)## Usage
```javascript
var WiFinder = require('WiFinder');
var wifis = [{ ssid : 'net1', pwd : 'netOne' },
{ ssid : 'net2', pwd : 'netTwo' }];
WiFinder(wifis, function(err, theConnectedAp){
... do something after connected or error
});
```## Dependencies
http
## License
MIT