node-red-contrib-knx-ultimate 1.4.7 → 1.4.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@
6
6
 
7
7
  # CHANGELOG
8
8
 
9
+ <p>
10
+ <b>Version 1.4.8</b> - November 2022<br/>
11
+ - NEW: added Datapoints 13.016, 13.1200, 13.1201.<br/>
12
+ </p>
9
13
  <p>
10
14
  <b>Version 1.4.7</b> - November 2022<br/>
11
15
  - NEW: added "Griesser Object" Custom Datapoint 6001.001. Thanks @croghostrider<br/>
@@ -77,10 +77,31 @@ exports.subtypes = {
77
77
  unit: 'kVARh'
78
78
  },
79
79
 
80
+ // 13.016 ActiveEnergy_MWh
81
+ '016': {
82
+ desc: 'ActiveEnergy_MWh',
83
+ name: 'Active Energy (MWh)',
84
+ unit: 'MWh'
85
+ },
86
+
80
87
  // 13.100 time lag(s)
81
88
  100: {
82
89
  desc: 'LongDeltaTimeSec',
83
90
  name: 'Time lag(s)',
84
91
  unit: 's'
92
+ },
93
+
94
+ // 13.1200 DeltaVolumeLiquid_Litre
95
+ 1200: {
96
+ desc: 'DeltaVolumeLiquid_Litre',
97
+ name: 'Delta Volume Liquid (litre)',
98
+ unit: 'l'
99
+ },
100
+
101
+ // 13.1201 DeltaVolume_m3
102
+ 1201: {
103
+ desc: 'DeltaVolume_m3',
104
+ name: 'Delta Volume m3',
105
+ unit: 'm3'
85
106
  }
86
107
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-knx-ultimate",
3
- "version": "1.4.7",
3
+ "version": "1.4.8",
4
4
  "description": "Control your KNX intallation via Node-Red! Single Node KNX IN/OUT with optional ETS group address importer. Easy to use and highly configurable.",
5
5
  "dependencies": {
6
6
  "mkdirp": "1.0.4",