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

aquila-client

v0.0.3

Published

Biblioteca para aplicaciones cliente de la API Aquila en node.js. Facilita la creación de aplicaciones que consuman esta API.

Downloads

7

Readme

Aquila Client

Biblioteca para aplicaciones cliente de la API Aquila en node.js. Facilita la creación de aplicaciones que consuman esta API.

Funcionalidades

  • Permite conectarse a un hub Aquila con usuario y contraseña.
  • Listar los dispositivos en la red Aquila, así como filtrarlos por clase, nombre, dirección e id.
  • Ejecutar acciones en cualquier dispositivo.
  • Escuchar eventos de cualquier dispositivo e inscribir funciones a éstos.
  • Obtener y modificar la PAN de la red del hub.
  • Ordenar al hub a que recargue o descubra nuevos dispositivos.

Instalación

npm install aquila-client

Uso

var Aquila = require("aquila-client");
// specify your hub url
aq = new Aquila("http://localhost:8080");

// make connection and login
aq.login("Your Username", "Your secure password", function(err)
	{
		// attend any error on connection
		if(err) return console.log(err.message);

		// do your stuff...

		var things;

		// get all devices
		things = aq.devices();
		// filter by name
		things = aq.devices("#Device Name");
		// filter by class
		things = aq.devices(".mx.makerlab.deviceClass");
		// filter by address
		things = aq.devices([252,194,61,0,0,5,178,228]);
		// filter by id
		things = aq.devices("544987f20e027eb259a88a6f");

		// execute action by number
		things.action(0);
		// execute action by name, with param 255
		things.action("Turn On", 255);

		// subscribe function to an event
		things.on("Button Pressed", function(param) {
				console.log("Got event 'Button Pressed' with param ", param);
			});

		// discover nearby devices
		aq.discover();

		// reload all devices
		aq.reload();

		// get PAN
		aq.getPAN(function(err, pan){
				console.log(pan);
			});

		// set PAN
		var newPAN = 0xCA5A;
		aq.setPAN(newPAN, function(err, pan) {
				if(err) console.log("Error setting PAN");
				console.log("PAN set OK and is now: ", pan);
			});
	});

Métodos

aq.login(user, password, callback)

Realiza la conexión con el hub y llama a callback al terminar, pasándole como parámetro un error en caso de haberlo.

Nota: no se debe usar ninguna otra función de esta biblioteca sin antes haber realizado la conexión.

aq.devices(filter)

retorna una especie de arreglo especial con dispositivos según el filtro usado.

Sintaxis del filtro:

  • Si no hay filtro, o es "*", se retornan todos los dispositivos.
  • Si el filtro empieza con "#", se busca por nombre.
  • Si el filtro empieza con ".", se busca por clase.
  • Si el filtro es un arreglo, se busca por dirección.
  • Si el filtro es un string y ninguno de los anteriores, se busca por id.

dispositivo.action(action, param)

Ejecuta una acción en uno o varios dispositivos (el objeto retornado por aq.devices()).

  • action puede ser un número de acción o su nombre.
  • param es opcional y es un número de 0 a 255.

dispositivo.on(event, function)

Inscribe una función a un evento.

  • event es el nombre del evento.
  • function recibe param, que puede ser null o un número de 0 a 255.

aq.discover(callback)

Empieza a descubrir dispositivos cercanos. Al terminar, ejecuta callback.

aq.reload(callback)

Olvida todo y empieza a descubrir dispositivos cercanos. Al terminar, ejecuta callback.

aq.getPAN(callback)

Obtiene la PAN del hub y ejecuta callback con err (error, si hay) y pan.

aq.setPAN(pan, callback)

Cambia la PAN del hub y ejecuta callback con err (error, si hay) y pan.