Socket
Socket
Sign inDemoInstall

@vernier/godirect

Package Overview
Dependencies
0
Maintainers
4
Versions
22
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @vernier/godirect

A JavaScript library to easily interact with [Vernier Go Direct® Sensors](https://www.vernier.com/products/sensors/go-direct-sensors).


Version published
Weekly downloads
1.5K
increased by24.55%
Maintainers
4
Install size
335 kB
Created
Weekly downloads
 

Readme

Source

GODIRECT JS - Vernier Go Direct® Sensor Library

Build Status Dependabot

A JavaScript library to easily interact with Vernier Go Direct® Sensors.

Requirements

This library is currently only implemented using WebBluetooth and WebHID both of which have limited browser support

Partial WebHID functionality is available in Chrome 78 behind a flag on desktop OSes. You will need to enable the "Experimental Web Platform Features" flag (chrome://flags/#enable-experimental-web-platform-features) and restart Chrome.

Installation

Use the unpkg module version of library in your HTML document:

<script src="https://unpkg.com/@vernier/godirect/dist/godirect.min.umd.js"></script>

Use the library as a JavaScript module:

  1. Install the module via npm:
$ npm i @vernier/godirect
  1. Import the module into your JavaScript file:
import godirect from './node_modules/@vernier/godirect/dist/godirect.min.esm.js';

Example Usage

HTML

A user action is required to open the BLE device list in the browser (e.g. a user click event from a button). Create a button to initiate the request.

<button id="select_device">Select Go Direct Device</button>

JavaScript

Listen for the button click event.

const selectDeviceBtn = document.querySelector('#select_device');

selectDeviceBtn.addEventListener('click', async () => {
  // All following code will go here.
});

Open the browsers device list chooser. This call returns your selected device back. We'll assign the selected device to a constant called device;

NOTE: you cannot invoke godirect.selectDevice() outside of a user interaction, like a click event. This is part of the browser security model.

// opens the browser list of ble devices matching to GDX
const device = await godirect.selectDevice();

// Get a filtered array of only the enabled sensor(s).
const enabledSensors = device.sensors.filter(s => s.enabled);

// Loop through the array of `enabledSensors` and log the value changes.
enabledSensors.forEach(sensor => {
  sensor.on('value-changed', (sensor) => {
    // log the sensor name, new value, and units.
    console.log(`Sensor: ${sensor.name} value: ${sensor.value} units: ${sensor.unit}`);
  });
});

See this example and others (including our Python versions) at our examples repository: https://github.com/VernierST/godirect-examples or visit the live demos

License

BSD 3-Clause License.

Vernier products are designed for educational use. Our products are not designed nor are they recommended for any industrial, medical, or commercial process such as life support, patient diagnosis, control of a manufacturing process, or industrial testing of any kind.

Keywords

FAQs

Last updated on 27 Jun 2023

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