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

huskylens

v0.0.6

Published

Johnny-Five plug in for the HuskyLens AI Vision Sensor

Downloads

26

Readme

HuskyLens

A Johnny-Five plug-in for the HuskyLens AI Vision Sensor. Learn more about the Huskeylens at DFRobot.

AI on robots doesn't get any easier than this.

HuskyLens Image courtesy DFRobot

To purchase the HuskyLens, go to dfrobot.com

This repo is not affiliated with DFRobot. Their HuskyLens stuff is here.

Example

const five = require("johnny-five");
const HuskyLens = require("../index.js")(five);

const board = new five.Board();

board.on("ready", () => {

  const lens = new HuskyLens({
    pins: { rx:11, tx:10 },
    mode: "OBJECT_RECOGNITION"
  });

  lens.on("ready", () => {
    console.log("The HuskyLens is connected and ready");
  });

  lens.on("block", block => {
    console.log(block);
  });

  lens.on("arrow", arrow => {
    console.log(arrow);
  });

});

See the examples folder for more, uh, examples.

Instantiation

const lens = new HuskyLens(opts);

The opts parameter can be an array of pins in [rx, tx] order or a complete options object.

If an object:

opts.pins - An array of pins in [rx, tx] order or a pins object { rx: 11, tx: 10 }.

opts.mode - A string selecting which mode to put the HuskyLens in at start (default: "FACE_RECOGNITION"). Recognized values are:

  • "FACE_RECOGNITION"
  • "OBJECT_TRACKING"
  • "OBJECT_RECOGNITION"
  • "LINE_TRACKING"
  • "COLOR_RECOGNITION"
  • "TAG_RECOGNITION"
  • "OBJECT_CLASSIFICATION"

opts.baud - The speed of serial communications between your device and the HuskyLens (default: 9600)

opts.freq - The frequency of data updates requested from the HuskyLens (default: 10hz)

Methods

lens.mode(<string> mode);

Change modes at run time. mode can be any of the values described in the "Instantiation" section. If no value is passed for mode, this method will return the current mode as a string.

lens.freq(<number> frequency);

Set the frequency (in hz) of data updates from the HuskyLens. If no value is passed for frequency, this method will return th current frequency.

lens.stop();

Stop requesting updates from the HuskyLens.

lens.start();

Resume requesting updates from the HuskyLens.

Events

The lens instance is an event emitter so you can simply set up listeners to take action when new information is reported.

// When any block is received
lens.on("block", data => {
  console.log(data);
});

// When block id:3 is received
lens.on("block-3", data => {
  console.log(data);
});

// When an arrow is received
lens.on("arrow", data => {
  console.log(data);
});

// When an arrow id:2 is received
lens.on("arrow-2", data => {
  console.log(data);
});