All Projects → fh1ch → Node Bacstack

fh1ch / Node Bacstack

Licence: mit
A BACnet protocol stack written in pure JavaScript

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Node Bacstack

Macbook Playbook
Ansible playbook to prepare and maintain macOS for development and desktop use
Stars: ✭ 117 (-6.4%)
Mutual labels:  automation
Instaposter
🖼 Instagram Auto-Posting BOT - Post Automatically to instagram
Stars: ✭ 120 (-4%)
Mutual labels:  automation
Foot traffic
Pure Ruby DSL for Chrome scripting based on Ferrum. No Selenium required. Works from any script. Simulate web app usage scenarios in production or locally.
Stars: ✭ 123 (-1.6%)
Mutual labels:  automation
Bash scripting
bash scripting thing !
Stars: ✭ 118 (-5.6%)
Mutual labels:  automation
Travis Scripts
🙅 DEPRECATED
Stars: ✭ 119 (-4.8%)
Mutual labels:  automation
Pipedream
Connect APIs, remarkably fast. Free for developers.
Stars: ✭ 2,068 (+1554.4%)
Mutual labels:  automation
Alternate Icons
iOS alternate app icons from Asset Catalogs
Stars: ✭ 117 (-6.4%)
Mutual labels:  automation
Aquatouch
Dynamic Custom Macros for your MacBook TouchBar! (Supports 40+ Apps and Websites)
Stars: ✭ 125 (+0%)
Mutual labels:  automation
Flow core
FlowCore is a Rails engine to help you build your automation or business process application.
Stars: ✭ 120 (-4%)
Mutual labels:  automation
Make Novice
Automation and Make
Stars: ✭ 122 (-2.4%)
Mutual labels:  automation
Cmpackager
Creates ConfigMgr Applications using XML Recipe Files
Stars: ✭ 119 (-4.8%)
Mutual labels:  automation
Ci Matters
Integration (comparison) of different continuous integration services on Android project
Stars: ✭ 119 (-4.8%)
Mutual labels:  automation
Terraform
Terraform automation for Cloud
Stars: ✭ 121 (-3.2%)
Mutual labels:  automation
Itunes store transporter
Upload and manage your assets in the iTunes Store using the iTunes Store’s Transporter (iTMSTransporter).
Stars: ✭ 117 (-6.4%)
Mutual labels:  automation
Chatter
internet monitoring osint telegram bot for windows
Stars: ✭ 123 (-1.6%)
Mutual labels:  automation
Kyua
Testing framework for infrastructure software
Stars: ✭ 117 (-6.4%)
Mutual labels:  automation
Awesome Puppeteer
A curated list of awesome puppeteer resources.
Stars: ✭ 1,728 (+1282.4%)
Mutual labels:  automation
Walkoff Apps
WALKOFF-enabled applications. #nsacyber
Stars: ✭ 125 (+0%)
Mutual labels:  automation
Robotn
Robotn, Native cross-platform GUI automation
Stars: ✭ 123 (-1.6%)
Mutual labels:  automation
Openflow
Scalable, secure workflow solution
Stars: ✭ 122 (-2.4%)
Mutual labels:  automation

Node BACstack

A BACnet protocol stack written in pure JavaScript. BACnet is a protocol to interact with building automation devices defined by ASHRAE.

Usage

Add Node BACstack to your project by using:

npm install --save bacstack

The API documentation is available under fh1ch.github.io/node-bacstack.

Features

The BACNET standard defines a wide variety of services as part of it's specification. While Node BACstack tries to be as complete as possible, following services are already supported at this point in time:

Service Execute Handle
Who Is yes yes
I Am yes¹ yes
Who Has yes¹ yes¹
I Have yes¹ yes¹
Time Sync yes yes
UTC Time Sync yes yes
Read Property yes yes¹
Read Property Multiple yes yes¹
Read Range yes¹ yes¹
Write Property yes yes¹
Write Property Multiple yes yes¹
Add List Element yes¹ yes¹
Remove List Element yes¹ yes¹
Create Object yes¹ yes¹
Delete Object yes¹ yes¹
Subscribe COV yes¹ yes¹
Subscribe Property yes¹ yes¹
Atomic Read File yes¹ yes¹
Atomic Write File yes¹ yes¹
Reinitialize Device yes yes¹
Device Communication Control yes yes¹
Get Alarm Summary yes¹ yes¹
Get Event Information yes¹ yes¹
Get Enrollment Summary yes¹ yes¹
Acknowledge Alarm yes¹ yes¹
Confirmed Event Notification yes¹ yes¹
Unconfirmed Event Notification yes¹ yes¹
Unconfirmed Private Transfer yes¹ yes¹
Confirmed Private Transfer yes¹ yes¹

¹ Support implemented as Beta (untested, undocumented, breaking interface)

Example

const bacnet = require('bacstack');

// Initialize BACStack
const client = new bacnet({apduTimeout: 6000});

// Discover Devices
client.on('iAm', (device) => {
  console.log('address: ', device.address);
  console.log('deviceId: ', device.deviceId);
  console.log('maxApdu: ', device.maxApdu);
  console.log('segmentation: ', device.segmentation);
  console.log('vendorId: ', device.vendorId);
});
client.whoIs();

// Read Device Object
const requestArray = [{
  objectId: {type: 8, instance: 4194303},
  properties: [{id: 8}]
}];
client.readPropertyMultiple('192.168.1.43', requestArray, (err, value) => {
  console.log('value: ', value);
});

Contributing

Implementing and maintaining a protocol stack is a lot of work, therefore any help is appreciated, from creating issues, to contributing documentation, fixing issues and adding new features.

Please follow the Contribution Guide when submitting any changes.

License

The MIT License

Copyright (c) 2017-2019 Fabio Huser [email protected]

Note: This is not an official product of the BACnet Advocacy Group. BACnet® is a registered trademark of American Society of Heating, Refrigerating and Air-Conditioning Engineers (ASHRAE).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].