npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cordova-plugin-nordic-update

v0.1.0

Published

Use Nordic Semiconductor's Device Firmware Update (DFU) service to update a Bluetooth LE device

Downloads

16

Readme

Cordova Nordic DFU plugin

This plugin allows you to use the Nordic DFU service on your BLE devices to update the firmware. See the Nordic documentation for more details.

Supported

  • Android: fully supported
  • iOS: fully supported

Additionally, the device to update must follow the rules as defined in the DFU documentation.

Requirements

  • Cordova: at least version 9
  • Android: Cordova-android of at least 8.0.0

Installation

run: cordova plugin add cordova-plugin-nordic-update

API

The API is available as a global NordicUpdate object

Start update

NordicUpdate.updateFirmware(function successCallback, [function errorCallback], string fileURL, string deviceIdentifier);

Params:

  • successCallback: A function that takes a single argument object. See example later for what this looks like. This will be called multiple times during the update process with different statuses.
  • errorCallback (not required): A function that takes a single argument. The argument will be an error message or an error object.
  • fileURL: A string that is the path to the file to use in the update. It can be either in either cdvfile:// or file:// format. It must be a Zip file and end with .zip (iOS library requirement, Android doesn't have this issue)
  • deviceIdentifier: A string that contains the identifier for the Bluetooth LE device to update. It will either be a MAC address (on Android) or a UUID (on iOS).

Testing

To make it easier to test this plugin, there are two files in the test-files folder.

  1. Install the one ending in .hex on your nRF52-832 dev board by dragging on dropping it into the board's file system (like you would install any example from the nRF5 SDK).
  2. Put the file ending with .zip on your phone in a spot where you know the File URL.
  3. Get the MAC address of the dev board (use nRF Connect and look for a device called "Nordic_Buttonless")
  4. Use the File URL and MAC address with this plugin.
  5. It should start the DFU process and report progress to the success callback.

Credits

This plugin was inspired by the work on this plugin fork by @fxe-gear.

Thanks!