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

@hkraftno/han-onboarder

v2.0.0

Published

Functionality for onboarding HAN-devices

Downloads

13

Readme

HAN Device onboarding library

Use this library in a react-native app to run the onboarding process of a HAN Device.

Prerequesites

The library expects a bleManager object from the react-native-ble-plx library.

Known issues

  • The HAN-device require a new pairing process (reset button held for ~16 seconds until until both LEDs blink twice in a row) if you want to connect to it via bluetooth.
  • Once the onboarding is complete, there is no verification of wi-fi or client connection. To see if the process was successful, check the client's server for incoming data.

Example code

import { BleManager } from 'react-native-ble-plx';
import {
  HANOnboarder,
  OnboardingError,
  StrommeClientInfo,
  HANError,
  HANErrorCodes,
} from '@hkraftno/han-onboarder';

// Set up info for the onboarding API.
// Include query-params in url
const url =
  'https://theserveraddress.net/version/API?key=apikey&optionalparam=opt';
const headers: {
  Authorization: `Bearer token`;
  // Add other header fields here
};
const body = {}; // optional
var strommeClientInfo = new StrommeClientInfo(url, headers, body);

// Create a ble scanner and HAN onboarder
// IMPORTANT: Make these const and not recreate them, or bugs will happen!
const bleManager = new BleManager();
const hanOnboarder = new HANOnboarder(
  bleManager,
  strommeClientInfo,
  console.log
);

// Start scanning for nearby devices
hanOnboarder
  .StartScan(deviceDiscovered)
  .then(() => {
    console.log('Scan stopped');
  })
  .catch(error => {
    // This typically happens if the app is missing access to Bluetooth
    // and/or Location service (or if either is turned off)
    console.log('Scan error');
    console.log(error);
  });

async function deviceDiscovered(hanDevice) {
  // Optional, stop scanning for more devices
  // Note: In this example, this will prevent multiple devices from auto-connecting at once
  hanOnboarder.StopScan();

  // Connecting to the device
  try {
    // Connect to the HAN device, with a timeout parameter
    await hanDevice.Connect(15000);

    // Handle unexpected disconnections
    hanDevice.RegisterUnexpectedDisconnectHandler(
      deviceDisconnectedUnexpectedly
    );
  } catch (ex) {
    if (ex instanceof HANError) {
      log(ex);
      if (ex.InnerError) {
        log(ex.InnerError); // For BLE related errors, this will contain the inner error from ble-plx
      }

      if (ex.ErrorCode === HANErrorCodes.ReadMeterError) {
        // Read meter id failed (this happens during the Connect() call)
        log('Could not read meter id, is the han port opened?');
      } else if (ex.ErrorCode === HANErrorCodes.BLEConnetcionError) {
        // BLE error, see https://polidea.github.io/react-native-ble-plx/#bleerror
        log('Connection BLE error');
      } else {
        log('Unkown HAN error (this should not happen..)');
        log('Error code: ' + ex.ErrorCode);
      }
    } else {
      log('Connection error');
      log(ex);
    }
  }

  // Onboarding the device
  try {
    // Setup wifi
    await hanDevice.SetupWifi(mySSID, myWifiPassword);

    // Start the onboarding process (see docs for details)
    await this.StartOnboarding();

    // At this point the HAN device will reboot and thereby disconnect from
    // the phone (but not trigger the deviceDisconnectedUnexpectedly call
  } catch (ex) {
    log('Onboarding error');
    log(ex);
    if (ex.InnerError) {
      log(ex.InnerError);
    }
    if (ex instanceof HANError) {
      if (ex.ErrorCode === HANErrorCodes.SendWifiDataFailed) {
        log('Send wifi info to device failed');
      } else if (ex.ErrorCode === HANErrorCodes.ClientConnectionFailed) {
        log('Client connection failed');
      } else if (ex.ErrorCode === HANErrorCodes.ClientAuthenticationError) {
        log('Client authentication failed');
      } else if (ex.ErrorCode === HANErrorCodes.SendOnboardingKeysFailed) {
        log('Send onboard data to device failed');
      } else {
        log('Unkown HAN error (this should not happen..)');
        log('Error code: ' + ex.ErrorCode);
      }
    }
  }
}

// Handle disconnection. The bleError is documented here:
// https://polidea.github.io/react-native-ble-plx/#bleerror
// The disconnectedDevice is a reference to the HANDevice object.
// This usually happens if the device reboots unexpectedly, or the BLE connection is otherwise broken
function deviceDisconnectedUnexpectedly(bleError, disconnectedDevice) {
  console.log('Disconnected from ' + disconnectedDevice.GetId());
  if (bleError) {
    console.log('Disconnect error:');
    console.log(bleError);
  }
}