0.2.8 • Published 9 years ago

node-alljoyn v0.2.8

Weekly downloads
4
License
Apache-2.0
Repository
github
Last release
9 years ago

node-alljoyn

Node.js Integration for Alljoyn Service Functions

Installation

$ npm install node-alljoyn

Usage

We plan to provide three Alljoyn functions in this module.

  • Action Handler
  • Event Reader & Rule Engine
  • ControlPanel Client

Example

This sample prints the device name from your Alljoyn network.

var alljoyn = require('node-alljoyn');

var result = alljoyn.findAlljoynServices();
if (result == 0) {
  var dev_num = alljoyn.getDeviceName();
  
  for (var i=0; i < dev_num; i++) {
    console.log('Device Name [' + i + '] = "' + alljoyn.getDeviceName(i) + '"');
  }
}

Test Platform

  • Linux (Yocto 1.5)

Alljoyn Version

v14.06

  • The Alljoyn API integration is leveraged from alljoyn.

License

Copyright 2015 ADVANTECH Corp. under the Apache 2.0 license.

0.2.8

9 years ago

0.2.7

9 years ago

0.2.6

9 years ago

0.2.5

9 years ago

0.2.3

9 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago