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

tessel-apple-remote

v0.1.1

Published

An event-emitter interface to an Apple IR Remote using the Tessel IR Module

Downloads

5

Readme

tessel-apple-remote

An event-emitter interface to an Apple IR Remote using the Tessel IR Module

This module takes the burden off of processing the infared byte buffers and extends the events from ir-attx4 to provide a higher-level API for programming against Apple remotes. This module supports both the first and second generation of remotes.

usage

var tessel = require('tessel');
var port = tessel.port['A'];
var apple = require('tessel-apple-remote')(port);

apple.on('menu', function() {
    console.log('menu');
});

events

Simple button presses:

  • menu
  • center
  • up
  • down
  • right
  • left
  • play

Each event name has a corresponding [name].long event for long presses:

  • menu.long
  • center.long
  • up.long
  • down.long
  • right.long
  • left.long
  • play.long

NOTE: both play and play.long only apply to the 2nd Generation remote.

id

Each Apple Remote sends along a simple remote ID between 0-255 (0xFF). To differentiate between remotes, you can prefix both the command events and continuation events with that id. For example, if your remote had the ID of 50

apple.on('50.menu', function() {
    console.log('my remote clicked "menu"');
});

To enable discovery on the fly of remote IDs, an id event is emitted, with a value of the new id. This event will only be emitted the first time that ID is encountered.

apple.on('id', function(id) {
    console.log('a new challenger appears', id);
});

To test this, you can either use two remotes, or you can first press a button on the remote, notice the id event fires, then change your remote's ID by pressing and holding the menu + center buttons for about 10 seconds. After your remote's ID is changed, another id event will be emitted on the next button press. See examples/lockout.js for an example of how to isolate your code to the first remote to send an event.

data

The standard data event is unmodified.

apple.on('data', function(data) {
    // access to the low-level duration stream
    console.log(data.toString('hex'));
});
error

The standard error event is unmodified.

apple.on('error', function(error) {
    console.log(error);
});

examples

  1. Plug the IR module into Port A on your Tessel, then connect via USB
  2. tessel run [script] to test scripts in examples folder.
  3. Click buttons on your remote and commence mad science.

notes

Helpful reference material on the implemenation:

hardware

You need: