Skip to content

Added CHANGELOG.md and fixed AI output #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Change Log

## Version 1.2.x

### 1.2.1.0 (2023-Oct-06)
- Fixed AnalogInput to output valid value for Proprietary Property 512 + 4 by editing database.json [Issue/5](https://github.com/chipkin/BACnetServerExampleNodeJS/issues/5)
- Tested using BACnet Stack version 4.1.19.2330

### 1.2.0.0 (N/A)

- Inital release.
8 changes: 4 additions & 4 deletions database.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
"description": "AnalogInput Bronze description",
"units": "degreescelsius",

"proprietary_year": 0,
"proprietary_month": 0,
"proprietary_day": 0,
"proprietary_weekDay": 0,
"proprietary_year": 123,
"proprietary_month": 10,
"proprietary_day": 6,
"proprietary_weekday": 5,
"proprietary_hour": 0,
"proprietary_minute": 0,
"proprietary_second": 0,
Expand Down
2 changes: 1 addition & 1 deletion program.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const SETTING_IP_ADDRESS = []; // Set IP Address to use for BACnet, set to [] to
const SETTING_SUBNET_MASK = []; // Set Subnet Mask to use for BACnet, set to [] to discover

// Constants
const APPLICATION_VERSION = '1.2.0.0';
const APPLICATION_VERSION = '1.2.1.0';

// Globals
var fifoSendBuffer = new dequeue();
Expand Down