@ncd-io/node-red-enterprise-sensors 0.1.18 → 0.1.19
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/lib/WirelessGateway.js +3 -2
- package/package.json +1 -1
- package/wireless.html +1 -0
package/lib/WirelessGateway.js
CHANGED
|
@@ -2478,11 +2478,12 @@ function sensor_types(parent){
|
|
|
2478
2478
|
name: 'Wireless CO Sensor',
|
|
2479
2479
|
parse: (d) => {
|
|
2480
2480
|
return {
|
|
2481
|
-
|
|
2481
|
+
humidity: msbLsb(d[0], d[1])/100,
|
|
2482
|
+
temperature: signInt((msbLsb(d[2], d[3])), 16)/100,
|
|
2483
|
+
co_ppm: msbLsb(d[4], d[5])
|
|
2482
2484
|
};
|
|
2483
2485
|
}
|
|
2484
2486
|
},
|
|
2485
|
-
|
|
2486
2487
|
'77': {
|
|
2487
2488
|
name: '3 Channel SDI-12 Wireelss',
|
|
2488
2489
|
parse: (d) => {
|
package/package.json
CHANGED
package/wireless.html
CHANGED
|
@@ -1120,6 +1120,7 @@
|
|
|
1120
1120
|
<hr>
|
|
1121
1121
|
<div class="form-row ncd-active-check">
|
|
1122
1122
|
<strong>Mode</strong>
|
|
1123
|
+
<p>WARNING: If Mode is set to Raw it is recommended to also set the Destination Address configuration to the address of your Receiver/Gateway.</p>
|
|
1123
1124
|
<div>
|
|
1124
1125
|
<label for="node-input-mode_80_active"><i class="icon-tag"></i>Active:</label>
|
|
1125
1126
|
<input type="checkbox" id="node-input-mode_80_active" class="ncd-config-toggle" data-target-id="node-input-mode_80" value="1">
|