Socket
Socket
Sign inDemoInstall

cordova-plugin-rssi

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cordova-plugin-rssi

Cordova plugin for reading WiFi RSSI


Version published
Weekly downloads
27
decreased by-46%
Maintainers
1
Install size
15.7 kB
Created
Weekly downloads
 

Readme

Source

Cordova RSSI Plugin

This plugin allows you to read WiFi RSSI from applications developed using Cordova 3.0 or newer.

Works on both Android and iOS platforms, but will not pass the Apple App Store Review process.

Tested on iOS Simulator devices: iPhone 5, 6, 7, 8, SE, X, XR, XS, XS Max

NOTE: Does not return any values for iPad at this time.

Installation

In your application project directory:

cordova plugin add cordova-plugin-rssi

Usage

const rssi = cordova.plugins.rssi;
rssi.read(success, failure)

Returns the device's current WiFi RSSI information via 3 parameters:

rssi.read(function success(data){
    console.log(data);
    // -> {rssi: -38, bars: 4, isIPhoneX: false}
});
  • rssi: WiFi Received Signal Strength Indicator
    • Availability: Android, iOS 10-12
    • Value: Integer or null if unavailable
    • Range: -100 ≤ x ≤ 0
  • bars: Number of visible bars in WiFi icon
    • Availability: Android, iOS
    • Value: Integer
    • Range: 0 ≤ x ≤ 4: *Range values only tested for Android
      • 4: RSSI -55+
      • 3: RSSI -56 - -66
      • 2: RSSI -67 - -77
      • 1: RSSI -78 - -88
      • 0: RSSI -89-

Browser / Development Usage

While developing in browser, a mock can be utilized to prevent errors. See an example Ionic 4 app at emcniece/ionic-cordova-rssi-demo.

References

Attribution

This open-source project was made possible by some fine people over at CNY Apps.

Licence

The MIT License

Changelog

Keywords

FAQs

Last updated on 25 Nov 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc