@ncd-io/node-red-enterprise-sensors 1.1.3 → 1.1.5
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 +271 -91
- package/package.json +1 -1
- package/wireless.html +711 -278
- package/wireless.js +88 -50
package/wireless.html
CHANGED
|
@@ -146,6 +146,19 @@
|
|
|
146
146
|
return int >= l && int <= h;
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
|
+
if(property_name === 'acceleration_interrupt_threshold_84'){
|
|
150
|
+
return function(v){
|
|
151
|
+
var int = parseInt(v, base);
|
|
152
|
+
if(this.acceleration_interrupt_threshold_84 == 0){
|
|
153
|
+
console.log('ERROR: Invalid property detect. Setting smart_threshold_110 to default value');
|
|
154
|
+
$("#node-input-acceleration_interrupt_threshold_84").val(0);
|
|
155
|
+
return true;
|
|
156
|
+
} else if(v == undefined){
|
|
157
|
+
return true;
|
|
158
|
+
}
|
|
159
|
+
return int >= l && int <= h;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
149
162
|
if(base == 'decimal'){
|
|
150
163
|
return function(v){
|
|
151
164
|
var n = parseFloat(v);
|
|
@@ -324,11 +337,6 @@
|
|
|
324
337
|
led_velocity_threshold_84_active: {value: ""},
|
|
325
338
|
led_velocity_threshold_84: {},
|
|
326
339
|
|
|
327
|
-
acceleration_interrupt_threshold_p1_84_active: {value: ""},
|
|
328
|
-
acceleration_interrupt_threshold_p1_84: {},
|
|
329
|
-
acceleration_interrupt_threshold_p2_84_active: {value: ""},
|
|
330
|
-
acceleration_interrupt_threshold_p2_84: {},
|
|
331
|
-
|
|
332
340
|
set_rtc_101:{value:0},
|
|
333
341
|
set_rtc_202:{value:0},
|
|
334
342
|
|
|
@@ -619,9 +627,54 @@
|
|
|
619
627
|
number_of_samples_thermocouple:{value:0},
|
|
620
628
|
measurement_type_thermocouple_active:{value: ""},
|
|
621
629
|
measurement_type_thermocouple:{value:0},
|
|
622
|
-
|
|
630
|
+
|
|
623
631
|
mode_97_active: {value: ""},
|
|
624
|
-
mode_97: {value: 0}
|
|
632
|
+
mode_97: {value: 0},
|
|
633
|
+
|
|
634
|
+
pressure_sensor_type_21_active: {value: ""},
|
|
635
|
+
pressure_sensor_type_21: {value: 0},
|
|
636
|
+
|
|
637
|
+
thermocouple_type_112_active: {value:""},
|
|
638
|
+
thermocouple_type_112: {value: 0},
|
|
639
|
+
filter_thermocouple_112_active: {value: ""},
|
|
640
|
+
filter_thermocouple_112: {value:0},
|
|
641
|
+
cold_junction_thermocouple_112_active: {value: ""},
|
|
642
|
+
cold_junction_thermocouple_112: {value:0},
|
|
643
|
+
sample_resolution_thermocouple_112_active: {value: ""},
|
|
644
|
+
sample_resolution_thermocouple_112: {value:0},
|
|
645
|
+
number_of_samples_thermocouple_112_active: {value: ""},
|
|
646
|
+
number_of_samples_thermocouple_112: {value:0},
|
|
647
|
+
operation_mode_thermocouple_112_active: {value: ""},
|
|
648
|
+
operation_mode_thermocouple_112: {value: 0},
|
|
649
|
+
measurement_type_thermocouple_112_active: {value: ""},
|
|
650
|
+
measurement_type_thermocouple_112: {value:0},
|
|
651
|
+
enable_rpm_calculate_status_110_active: {value: ""},
|
|
652
|
+
enable_rpm_calculate_status_110: {value:0},
|
|
653
|
+
|
|
654
|
+
odr_p1_110_active: {value: ""},
|
|
655
|
+
odr_p1_110: {value:0},
|
|
656
|
+
odr_p2_110_active: {value: ""},
|
|
657
|
+
odr_p2_110: {value:0},
|
|
658
|
+
sampling_duration_p1_110_active: {value: ""},
|
|
659
|
+
sampling_duration_p1_110: {value: 1, validate: NCD_validators.number_range(1, 100)},
|
|
660
|
+
sampling_duration_p2_110_active: {value: ""},
|
|
661
|
+
sampling_duration_p2_110: {value: 1, validate: NCD_validators.number_range(1, 100)},
|
|
662
|
+
low_pass_filter_p1_110_active: {value: ""},
|
|
663
|
+
low_pass_filter_p1_110: {value:0},
|
|
664
|
+
low_pass_filter_p2_110_active: {value: ""},
|
|
665
|
+
low_pass_filter_p2_110: {value:0},
|
|
666
|
+
high_pass_filter_p1_110_active: {value: ""},
|
|
667
|
+
high_pass_filter_p1_110: {value:0},
|
|
668
|
+
high_pass_filter_p2_110_active: {value: ""},
|
|
669
|
+
high_pass_filter_p2_110: {value:0},
|
|
670
|
+
|
|
671
|
+
acceleration_interrupt_threshold_84_active: {value: ""},
|
|
672
|
+
acceleration_interrupt_threshold_84: {value: 0, validate: NCD_validators.number_range(0, 40, 10, 'acceleration_interrupt_threshold_84')},
|
|
673
|
+
|
|
674
|
+
motion_detect_threshold_p1_110_active: {value: ""},
|
|
675
|
+
motion_detect_threshold_p1_110: {value: 0, validate: NCD_validators.number_range(0, 40)},
|
|
676
|
+
motion_detect_threshold_p2_110_active: {value: ""},
|
|
677
|
+
motion_detect_threshold_p2_110: {value: 0, validate: NCD_validators.number_range(0, 40)},
|
|
625
678
|
},
|
|
626
679
|
inputs: 0,
|
|
627
680
|
outputs: 1,
|
|
@@ -1060,7 +1113,7 @@
|
|
|
1060
1113
|
<label for="node-input-auto_config"><i class="icon-tag"></i> Auto Config</label>
|
|
1061
1114
|
<input class="section-control" type="checkbox" id="node-input-auto_config" value="1">
|
|
1062
1115
|
</div>
|
|
1063
|
-
<div class="form-row ncd-dependent" data-sensor-23 data-sensor-26 data-sensor-32 data-sensor-33 data-sensor-39 data-sensor-44 data-sensor-45 data-sensor-48 data-sensor-52 data-sensor-53 data-sensor-58 data-sensor-74 data-sensor-76 data-sensor-78 data-sensor-79 data-sensor-80 data-sensor-81 data-sensor-82 data-sensor-84 data-sensor-87 data-sensor-88 data-sensor-89 data-sensor-90 data-sensor-97 data-sensor-98 data-sensor-91 data-sensor-101 data-sensor-102 data-sensor-105 data-sensor-106 data-sensor-107 data-sensor-108 data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114 data-sensor-118 data-sensor-180 data-sensor-181 data-sensor-202 data-sensor-519 data-sensor-520 data-sensor-521 data-sensor-531 data-sensor-535 data-sensor-537 data-sensor-538 data-sensor-539 data-sensor-540 data-sensor-1010 data-sensor-1011>
|
|
1116
|
+
<div class="form-row ncd-dependent" data-sensor-23 data-sensor-26 data-sensor-32 data-sensor-33 data-sensor-39 data-sensor-44 data-sensor-45 data-sensor-48 data-sensor-52 data-sensor-53 data-sensor-56 data-sensor-58 data-sensor-74 data-sensor-76 data-sensor-78 data-sensor-79 data-sensor-80 data-sensor-81 data-sensor-82 data-sensor-84 data-sensor-87 data-sensor-88 data-sensor-89 data-sensor-90 data-sensor-97 data-sensor-98 data-sensor-91 data-sensor-101 data-sensor-102 data-sensor-105 data-sensor-106 data-sensor-107 data-sensor-108 data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114 data-sensor-118 data-sensor-180 data-sensor-181 data-sensor-202 data-sensor-519 data-sensor-520 data-sensor-521 data-sensor-531 data-sensor-535 data-sensor-537 data-sensor-538 data-sensor-539 data-sensor-540 data-sensor-1010 data-sensor-1011>
|
|
1064
1117
|
<hr>
|
|
1065
1118
|
<label for="node-input-on_the_fly_enable"><i class="icon-tag"></i> OTF Config*</label>
|
|
1066
1119
|
<input type="checkbox" id="node-input-on_the_fly_enable" value="1">
|
|
@@ -1561,6 +1614,66 @@
|
|
|
1561
1614
|
</div>
|
|
1562
1615
|
</div>
|
|
1563
1616
|
</div>
|
|
1617
|
+
<div class="ncd-dependent" data-sensor-84 data-sensor-519 data-sensor-537>
|
|
1618
|
+
<div class="form-row ncd-active-check">
|
|
1619
|
+
<div>
|
|
1620
|
+
<strong>Set Acceleration Wake/Interrupt Threshold</strong>
|
|
1621
|
+
<p>Set a breakpoint for sensor to wake up and broadcast readings. This is an interrupt based configuration ideal for devices with minimal workload/uptime.</p>
|
|
1622
|
+
<p>This will be an integer value that increments the interrupt threshold by 50mg. A value of 1 wakes the sensor if acceleration is above 50mg, 2 means 100mg, etc.</p>
|
|
1623
|
+
<p>Valid Input Range: 0 - 40<br>
|
|
1624
|
+
A value of 0 will disable this feature.<br>
|
|
1625
|
+
Only applies to sensor with firmware version 24 and above.</p>
|
|
1626
|
+
</div>
|
|
1627
|
+
<div>
|
|
1628
|
+
<label for="node-input-acceleration_interrupt_threshold_84_active"><i class="icon-tag"></i> Auto Config</label>
|
|
1629
|
+
<input type="checkbox" id="node-input-acceleration_interrupt_threshold_84_active" class="ncd-config-toggle" data-target-id="node-input-acceleration_interrupt_threshold_84" value="1">
|
|
1630
|
+
</div>
|
|
1631
|
+
<div>
|
|
1632
|
+
<label for="node-input-acceleration_interrupt_threshold_84"><i class="icon-tag"></i> Value</label>
|
|
1633
|
+
<input type="text" id="node-input-acceleration_interrupt_threshold_84" placeholder="10" value="10">
|
|
1634
|
+
</div>
|
|
1635
|
+
</div>
|
|
1636
|
+
</div>
|
|
1637
|
+
<div class="ncd-dependent" data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114>
|
|
1638
|
+
<div class="form-row ncd-active-check">
|
|
1639
|
+
<div>
|
|
1640
|
+
<strong>Probe 1: Set Acceleration Wake/Interrupt Threshold</strong>
|
|
1641
|
+
<p>Set a breakpoint for sensor to wake up and broadcast readings. This is an interrupt based configuration ideal for devices with minimal workload/uptime.</p>
|
|
1642
|
+
<p>This will be an integer value that increments the interrupt threshold by 50mg. A value of 1 wakes the sensor if acceleration is above 50mg, 2 means 100mg, etc.</p>
|
|
1643
|
+
<p>Valid Input Range: 0 - 40<br>
|
|
1644
|
+
A value of 0 will disable this feature.<br>
|
|
1645
|
+
Only applies to sensor with firmware version 24 and above.</p>
|
|
1646
|
+
</div>
|
|
1647
|
+
<div>
|
|
1648
|
+
<label for="node-input-motion_detect_threshold_p1_110_active"><i class="icon-tag"></i> Auto Config</label>
|
|
1649
|
+
<input type="checkbox" id="node-input-motion_detect_threshold_p1_110_active" class="ncd-config-toggle" data-target-id="node-input-motion_detect_threshold_p1_110" value="1">
|
|
1650
|
+
</div>
|
|
1651
|
+
<div>
|
|
1652
|
+
<label for="node-input-motion_detect_threshold_p1_110"><i class="icon-tag"></i> Value</label>
|
|
1653
|
+
<input type="text" id="node-input-motion_detect_threshold_p1_110" placeholder="10" value="10">
|
|
1654
|
+
</div>
|
|
1655
|
+
</div>
|
|
1656
|
+
</div>
|
|
1657
|
+
<div class="ncd-dependent" data-sensor-111>
|
|
1658
|
+
<div class="form-row ncd-active-check">
|
|
1659
|
+
<div>
|
|
1660
|
+
<strong>Probe 2: Set Acceleration Wake/Interrupt Threshold</strong>
|
|
1661
|
+
<p>Set a breakpoint for sensor to wake up and broadcast readings. This is an interrupt based configuration ideal for devices with minimal workload/uptime.</p>
|
|
1662
|
+
<p>This will be an integer value that increments the interrupt threshold by 50mg. A value of 1 wakes the sensor if acceleration is above 50mg, 2 means 100mg, etc.</p>
|
|
1663
|
+
<p>Valid Input Range: 0 - 40<br>
|
|
1664
|
+
A value of 0 will disable this feature.<br>
|
|
1665
|
+
Only applies to sensor with firmware version 24 and above.</p>
|
|
1666
|
+
</div>
|
|
1667
|
+
<div>
|
|
1668
|
+
<label for="node-input-motion_detect_threshold_p2_110_active"><i class="icon-tag"></i> Auto Config</label>
|
|
1669
|
+
<input type="checkbox" id="node-input-motion_detect_threshold_p2_110_active" class="ncd-config-toggle" data-target-id="node-input-motion_detect_threshold_p2_110" value="1">
|
|
1670
|
+
</div>
|
|
1671
|
+
<div>
|
|
1672
|
+
<label for="node-input-motion_detect_threshold_p2_110"><i class="icon-tag"></i> Value</label>
|
|
1673
|
+
<input type="text" id="node-input-motion_detect_threshold_p2_110" placeholder="10" value="10">
|
|
1674
|
+
</div>
|
|
1675
|
+
</div>
|
|
1676
|
+
</div>
|
|
1564
1677
|
<div class="ncd-dependent" data-sensor-84 data-sensor-114 data-sensor-519 data-sensor-537>
|
|
1565
1678
|
<hr>
|
|
1566
1679
|
<div class="form-row ncd-active-check">
|
|
@@ -1578,6 +1691,8 @@
|
|
|
1578
1691
|
</select>
|
|
1579
1692
|
</div>
|
|
1580
1693
|
</div>
|
|
1694
|
+
</div>
|
|
1695
|
+
<div class="ncd-dependent" data-sensor-84 data-sensor-114 data-sensor-519 data-sensor-537>
|
|
1581
1696
|
<div class="form-row ncd-active-check">
|
|
1582
1697
|
<div>
|
|
1583
1698
|
<strong>LED Accelerometer Threshold</strong>
|
|
@@ -1607,41 +1722,6 @@
|
|
|
1607
1722
|
</div>
|
|
1608
1723
|
</div>
|
|
1609
1724
|
</div>
|
|
1610
|
-
<div class="ncd-dependent" data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114>
|
|
1611
|
-
<hr>
|
|
1612
|
-
<div class="form-row ncd-active-check">
|
|
1613
|
-
<div>
|
|
1614
|
-
<strong>Set Acceleration Wake/Interrupt Threshold</strong>
|
|
1615
|
-
<p>Set a breakpoint for sensor to wake up and broadcast readings. This is an interrupt based configuration ideal for devices with minimal workload/uptime.</p>
|
|
1616
|
-
<p>This will be an integer value that increments the interrupt threshold by 50mg. A value of 1 means turn the wake the sensor if acceleration is above 50mg, 2 means 100mg, etc.</p>
|
|
1617
|
-
</div>
|
|
1618
|
-
<div>
|
|
1619
|
-
<label for="node-input-acceleration_interrupt_threshold_p1_84_active"><i class="icon-tag"></i> Auto Config</label>
|
|
1620
|
-
<input type="checkbox" id="node-input-acceleration_interrupt_threshold_p1_84_active" class="ncd-config-toggle" data-target-id="node-input-acceleration_interrupt_threshold_p1_84" value="1">
|
|
1621
|
-
</div>
|
|
1622
|
-
<div>
|
|
1623
|
-
<label for="node-input-acceleration_interrupt_threshold_p1_84"><i class="icon-tag"></i> Value</label>
|
|
1624
|
-
<input type="text" id="node-input-acceleration_interrupt_threshold_p1_84" placeholder="10" value="10">
|
|
1625
|
-
</div>
|
|
1626
|
-
</div>
|
|
1627
|
-
</div>
|
|
1628
|
-
<div class="ncd-dependent" data-sensor-111>
|
|
1629
|
-
<div class="form-row ncd-active-check">
|
|
1630
|
-
<div>
|
|
1631
|
-
<strong>Set Acceleration Wake/Interrupt Threshold Probe 2</strong>
|
|
1632
|
-
<p>Set a breakpoint for sensor to wake up and broadcast readings. This is an interrupt based configuration ideal for devices with minimal workload/uptime.</p>
|
|
1633
|
-
<p>This will be an integer value that increments the interrupt threshold by 50mg. A value of 1 means turn the wake the sensor if acceleration is above 50mg, 2 means 100mg, etc.</p>
|
|
1634
|
-
</div>
|
|
1635
|
-
<div>
|
|
1636
|
-
<label for="node-input-acceleration_interrupt_threshold_p2_84_active"><i class="icon-tag"></i> Auto Config</label>
|
|
1637
|
-
<input type="checkbox" id="node-input-acceleration_interrupt_threshold_p2_84_active" class="ncd-config-toggle" data-target-id="node-input-acceleration_interrupt_threshold_p2_84" value="1">
|
|
1638
|
-
</div>
|
|
1639
|
-
<div>
|
|
1640
|
-
<label for="node-input-acceleration_interrupt_threshold_p2_84"><i class="icon-tag"></i> Value</label>
|
|
1641
|
-
<input type="text" id="node-input-acceleration_interrupt_threshold_p2_84" placeholder="10" value="10">
|
|
1642
|
-
</div>
|
|
1643
|
-
</div>
|
|
1644
|
-
</div>
|
|
1645
1725
|
<div class="ncd-dependent" data-sensor-80 data-sensor-81 data-sensor-82 data-sensor-84 data-sensor-180 data-sensor-181 data-sensor-519 data-sensor-537 data-sensor-538>
|
|
1646
1726
|
<hr>
|
|
1647
1727
|
<div class="form-row ncd-active-check">
|
|
@@ -1661,26 +1741,6 @@
|
|
|
1661
1741
|
</div>
|
|
1662
1742
|
</div>
|
|
1663
1743
|
</div>
|
|
1664
|
-
<div class="ncd-dependent" data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114>
|
|
1665
|
-
<hr>
|
|
1666
|
-
<div class="form-row ncd-active-check">
|
|
1667
|
-
<strong>Mode</strong>
|
|
1668
|
-
<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>
|
|
1669
|
-
<div>
|
|
1670
|
-
<label for="node-input-mode_110_active"><i class="icon-tag"></i>Active:</label>
|
|
1671
|
-
<input type="checkbox" id="node-input-mode_110_active" class="ncd-config-toggle" data-target-id="node-input-mode_110" value="1">
|
|
1672
|
-
</div>
|
|
1673
|
-
<div>
|
|
1674
|
-
<label for="node-input-mode_110"><i class="icon-tag"></i>Value:</label>
|
|
1675
|
-
<select id="node-input-mode_110">
|
|
1676
|
-
<option value="0">Processed</option>
|
|
1677
|
-
<option value="1">Raw</option>
|
|
1678
|
-
<option value="2">Processed + Raw on demand</option>
|
|
1679
|
-
<option value="3">Smart</option>
|
|
1680
|
-
</select>
|
|
1681
|
-
</div>
|
|
1682
|
-
</div>
|
|
1683
|
-
</div>
|
|
1684
1744
|
<div class="ncd-dependent" data-sensor-80 data-sensor-81 data-sensor-82 data-sensor-84 data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114 data-sensor-180 data-sensor-181 data-sensor-519 data-sensor-537 data-sensor-538>
|
|
1685
1745
|
<div class="form-row ncd-active-check">
|
|
1686
1746
|
<strong>Measurement Mode</strong>
|
|
@@ -1698,6 +1758,7 @@
|
|
|
1698
1758
|
</div>
|
|
1699
1759
|
<div class="form-row ncd-active-check">
|
|
1700
1760
|
<strong>Set On Request Timeout in seconds</strong>
|
|
1761
|
+
<p>Set how long device will stay awake and wait for RAW time domain request from command.</p>
|
|
1701
1762
|
<div>
|
|
1702
1763
|
<label for="node-input-on_request_timeout_80_active">Active:</label>
|
|
1703
1764
|
<input type="checkbox" id="node-input-on_request_timeout_80_active" class="ncd-config-toggle" data-target-id="node-input-on_request_timeout_80" value="1">
|
|
@@ -1708,7 +1769,7 @@
|
|
|
1708
1769
|
</div>
|
|
1709
1770
|
</div>
|
|
1710
1771
|
</div>
|
|
1711
|
-
<div class="ncd-dependent" data-sensor-80 data-sensor-82 data-sensor-84 data-sensor-101 data-sensor-102 data-sensor-
|
|
1772
|
+
<div class="ncd-dependent" data-sensor-80 data-sensor-82 data-sensor-84 data-sensor-101 data-sensor-102 data-sensor-180 data-sensor-519 data-sensor-537 data-sensor-538>
|
|
1712
1773
|
<hr>
|
|
1713
1774
|
<div class="form-row ncd-active-check">
|
|
1714
1775
|
<strong>Set Sampling Duration 1= 50msec, 2= 100msec</strong>
|
|
@@ -1746,30 +1807,7 @@
|
|
|
1746
1807
|
</div>
|
|
1747
1808
|
</div>
|
|
1748
1809
|
</div>
|
|
1749
|
-
|
|
1750
|
-
<hr>
|
|
1751
|
-
<div class="form-row ncd-active-check">
|
|
1752
|
-
<strong>Sampling Interval</strong>
|
|
1753
|
-
<div>
|
|
1754
|
-
<label for="node-input-sampling_interval_110_active">Active: </label>
|
|
1755
|
-
<input type="checkbox" id="node-input-sampling_interval_110_active" class="ncd-config-toggle" data-target-id="node-input-sampling_interval_110" value="1">
|
|
1756
|
-
</div>
|
|
1757
|
-
<div>
|
|
1758
|
-
<label for="node-input-sampling_interval_110"><i class="icon-tag"></i>Value:</label>
|
|
1759
|
-
<select id="node-input-sampling_interval_110">
|
|
1760
|
-
<option value="8">1 Minute</option>
|
|
1761
|
-
<option value="0">5 Minutes</option>
|
|
1762
|
-
<option value="1">10 Minutes</option>
|
|
1763
|
-
<option value="2">15 Minutes</option>
|
|
1764
|
-
<option value="3">20 Minutes</option>
|
|
1765
|
-
<option value="4">30 Minutes</option>
|
|
1766
|
-
<option value="5">60 Minutes</option>
|
|
1767
|
-
<option value="6">120 Minutes</option>
|
|
1768
|
-
<option value="7">180 Minutes</option>
|
|
1769
|
-
</select>
|
|
1770
|
-
</div>
|
|
1771
|
-
</div>
|
|
1772
|
-
</div>
|
|
1810
|
+
|
|
1773
1811
|
<div class="ncd-dependent" data-sensor-80 data-sensor-81 data-sensor-82 data-sensor-84 data-sensor-101 data-sensor-102 data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114 data-sensor-180 data-sensor-181 data-sensor-519 data-sensor-537 data-sensor-538>
|
|
1774
1812
|
<div class="form-row ncd-active-check">
|
|
1775
1813
|
<strong>Set RTC</strong>
|
|
@@ -1823,7 +1861,7 @@
|
|
|
1823
1861
|
</div>
|
|
1824
1862
|
</div>
|
|
1825
1863
|
|
|
1826
|
-
<div class="ncd-dependent" data-sensor-81
|
|
1864
|
+
<div class="ncd-dependent" data-sensor-81 data-sensor-181>
|
|
1827
1865
|
<hr>
|
|
1828
1866
|
<div class="form-row ncd-active-check">
|
|
1829
1867
|
<strong>Probe 1: Output Data Rate</strong>
|
|
@@ -1893,7 +1931,7 @@
|
|
|
1893
1931
|
</div>
|
|
1894
1932
|
</div>
|
|
1895
1933
|
|
|
1896
|
-
<div class="ncd-dependent" data-sensor-80 data-sensor-82 data-sensor-84 data-sensor-102 data-sensor-
|
|
1934
|
+
<div class="ncd-dependent" data-sensor-80 data-sensor-82 data-sensor-84 data-sensor-102 data-sensor-180 data-sensor-519 data-sensor-537 data-sensor-538>
|
|
1897
1935
|
<hr>
|
|
1898
1936
|
<div class="form-row ncd-active-check">
|
|
1899
1937
|
<strong>Output Data Rate</strong>
|
|
@@ -1991,7 +2029,7 @@
|
|
|
1991
2029
|
</div>
|
|
1992
2030
|
</div>
|
|
1993
2031
|
|
|
1994
|
-
<div class="ncd-dependent" data-sensor-80 data-sensor-81 data-sensor-82 data-sensor-84 data-sensor-
|
|
2032
|
+
<div class="ncd-dependent" data-sensor-80 data-sensor-81 data-sensor-82 data-sensor-84 data-sensor-180 data-sensor-181 data-sensor-519 data-sensor-537 data-sensor-538>
|
|
1995
2033
|
<div class="form-row ncd-active-check">
|
|
1996
2034
|
<strong>Set Filtering</strong>
|
|
1997
2035
|
<div>
|
|
@@ -2062,7 +2100,7 @@
|
|
|
2062
2100
|
</div>
|
|
2063
2101
|
</div>
|
|
2064
2102
|
|
|
2065
|
-
<div class="ncd-dependent" data-sensor-81 data-sensor-
|
|
2103
|
+
<div class="ncd-dependent" data-sensor-81 data-sensor-181>
|
|
2066
2104
|
<div class="form-row ncd-active-check">
|
|
2067
2105
|
<strong>Set Low Pass Filter Probe 2</strong>
|
|
2068
2106
|
<p>
|
|
@@ -2160,6 +2198,7 @@
|
|
|
2160
2198
|
<div class="ncd-dependent" data-sensor-80 data-sensor-81 data-sensor-82 data-sensor-84 data-sensor-101 data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114 data-sensor-180 data-sensor-181 data-sensor-519 data-sensor-537 data-sensor-538>
|
|
2161
2199
|
<div class="form-row ncd-active-check">
|
|
2162
2200
|
<strong>Set Dead Band in mg</strong>
|
|
2201
|
+
<p>Filters out acceleration values below the dead band threshold, treating them as noise.</p>
|
|
2163
2202
|
<div>
|
|
2164
2203
|
<label for="node-input-deadband_80_active">Active:</label>
|
|
2165
2204
|
<input type="checkbox" id="node-input-deadband_80_active" class="ncd-config-toggle" data-target-id="node-input-deadband_80" value="35">
|
|
@@ -2785,124 +2824,589 @@
|
|
|
2785
2824
|
</div>
|
|
2786
2825
|
</div>
|
|
2787
2826
|
</div>
|
|
2788
|
-
<div class="ncd-dependent" data-sensor-
|
|
2789
|
-
<hr>
|
|
2827
|
+
<div class="ncd-dependent" data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114>
|
|
2790
2828
|
<div class="form-row ncd-active-check">
|
|
2791
|
-
<strong>
|
|
2829
|
+
<strong>Probe 1: Output Data Rate</strong>
|
|
2792
2830
|
<div>
|
|
2793
|
-
<label for="node-input-
|
|
2794
|
-
<input type="checkbox" id="node-input-
|
|
2831
|
+
<label for="node-input-odr_p1_110_active"><i class="icon-tag"></i>Active:</label>
|
|
2832
|
+
<input type="checkbox" id="node-input-odr_p1_110_active" class="ncd-config-toggle" data-target-id="node-input-odr_p1_110" value="1">
|
|
2795
2833
|
</div>
|
|
2796
2834
|
<div>
|
|
2797
|
-
<label for="node-input-
|
|
2798
|
-
<select id="node-input-
|
|
2799
|
-
<option
|
|
2800
|
-
<option value="
|
|
2801
|
-
<option value="
|
|
2802
|
-
<option value="
|
|
2803
|
-
<option value="
|
|
2804
|
-
<option value="
|
|
2805
|
-
<option value="
|
|
2806
|
-
<option value="
|
|
2835
|
+
<label for="node-input-odr_p1_110"><i class="icon-tag"></i>Value:</label>
|
|
2836
|
+
<select id="node-input-odr_p1_110">
|
|
2837
|
+
<!-- <option value="6">50Hz</option> -->
|
|
2838
|
+
<option value="7">100Hz</option>
|
|
2839
|
+
<option value="8">200Hz</option>
|
|
2840
|
+
<option value="9">400Hz</option>
|
|
2841
|
+
<option value="10">800Hz</option>
|
|
2842
|
+
<option value="11">1600Hz</option>
|
|
2843
|
+
<option value="12">3200Hz</option>
|
|
2844
|
+
<option value="13">6400Hz</option>
|
|
2845
|
+
<option value="14">12800Hz</option>
|
|
2846
|
+
<option value="15">25600Hz</option>
|
|
2807
2847
|
</select>
|
|
2808
2848
|
</div>
|
|
2809
2849
|
</div>
|
|
2850
|
+
</div>
|
|
2851
|
+
<div class="ncd-dependent" data-sensor-111>
|
|
2810
2852
|
<div class="form-row ncd-active-check">
|
|
2811
|
-
<strong>
|
|
2853
|
+
<strong>Probe 2: Output Data Rate</strong>
|
|
2812
2854
|
<div>
|
|
2813
|
-
<label for="node-input-
|
|
2814
|
-
<input type="checkbox" id="node-input-
|
|
2855
|
+
<label for="node-input-odr_p2_110_active"><i class="icon-tag"></i>Active:</label>
|
|
2856
|
+
<input type="checkbox" id="node-input-odr_p2_110_active" class="ncd-config-toggle" data-target-id="node-input-odr_p2_110" value="1">
|
|
2815
2857
|
</div>
|
|
2816
2858
|
<div>
|
|
2817
|
-
<label for="node-input-
|
|
2818
|
-
<select id="node-input-
|
|
2819
|
-
<option
|
|
2820
|
-
<option value="
|
|
2821
|
-
<option value="
|
|
2822
|
-
<option value="
|
|
2823
|
-
<option value="
|
|
2824
|
-
<option value="
|
|
2825
|
-
<option value="
|
|
2826
|
-
<option value="
|
|
2859
|
+
<label for="node-input-odr_p2_110"><i class="icon-tag"></i>Value:</label>
|
|
2860
|
+
<select id="node-input-odr_p2_110">
|
|
2861
|
+
<option value="7">100Hz</option>
|
|
2862
|
+
<option value="8">200Hz</option>
|
|
2863
|
+
<option value="9">400Hz</option>
|
|
2864
|
+
<option value="10">800Hz</option>
|
|
2865
|
+
<option value="11">1600Hz</option>
|
|
2866
|
+
<option value="12">3200Hz</option>
|
|
2867
|
+
<option value="13">6400Hz</option>
|
|
2868
|
+
<option value="14">12800Hz</option>
|
|
2869
|
+
<option value="15">25600Hz</option>
|
|
2827
2870
|
</select>
|
|
2828
2871
|
</div>
|
|
2829
2872
|
</div>
|
|
2873
|
+
</div>
|
|
2874
|
+
<div class="ncd-dependent" data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114>
|
|
2830
2875
|
<div class="form-row ncd-active-check">
|
|
2831
|
-
<strong>
|
|
2876
|
+
<strong>Probe 1: Sampling Duration 1= 50msec, 2= 100msec</strong>
|
|
2877
|
+
<p>
|
|
2878
|
+
Valid range: 1 - 100.
|
|
2879
|
+
</p>
|
|
2832
2880
|
<div>
|
|
2833
|
-
<label for="node-input-
|
|
2834
|
-
<input type="checkbox" id="node-input-
|
|
2881
|
+
<label for="node-input-sampling_duration_p1_110_active">Active:</label>
|
|
2882
|
+
<input type="checkbox" id="node-input-sampling_duration_p1_110_active" class="ncd-config-toggle" data-target-id="node-input-sampling_duration_p1_110" value="1">
|
|
2835
2883
|
</div>
|
|
2836
2884
|
<div>
|
|
2837
|
-
<label for="node-input-
|
|
2838
|
-
<
|
|
2839
|
-
<option selected="selected" value="0">0.0625⁰C</option>
|
|
2840
|
-
<option value="128">0.25⁰C</option>
|
|
2841
|
-
</select>
|
|
2885
|
+
<label for="node-input-sampling_duration_p1_110"><i class="icon-tag"></i>Value:</label>
|
|
2886
|
+
<input type="text" id="node-input-sampling_duration_p1_110">
|
|
2842
2887
|
</div>
|
|
2843
2888
|
</div>
|
|
2889
|
+
</div>
|
|
2890
|
+
<div class="ncd-dependent" data-sensor-111>
|
|
2844
2891
|
<div class="form-row ncd-active-check">
|
|
2845
|
-
<strong>
|
|
2892
|
+
<strong>Probe 2: Sampling Duration 1= 50msec, 2= 100msec</strong>
|
|
2893
|
+
<p>
|
|
2894
|
+
Valid range: 1 - 100.
|
|
2895
|
+
</p>
|
|
2846
2896
|
<div>
|
|
2847
|
-
<label for="node-input-
|
|
2848
|
-
<input type="checkbox" id="node-input-
|
|
2897
|
+
<label for="node-input-sampling_duration_p2_110_active">Active:</label>
|
|
2898
|
+
<input type="checkbox" id="node-input-sampling_duration_p2_110_active" class="ncd-config-toggle" data-target-id="node-input-sampling_duration_p2_110" value="1">
|
|
2849
2899
|
</div>
|
|
2850
2900
|
<div>
|
|
2851
|
-
<label for="node-input-
|
|
2852
|
-
<
|
|
2853
|
-
<option selected="selected" value="0">18 Bits</option>
|
|
2854
|
-
<option value="32">16 Bits</option>
|
|
2855
|
-
<option value="64">14 Bits</option>
|
|
2856
|
-
<option value="96">12 Bits</option>
|
|
2857
|
-
</select>
|
|
2901
|
+
<label for="node-input-sampling_duration_p2_110"><i class="icon-tag"></i>Value:</label>
|
|
2902
|
+
<input type="text" id="node-input-sampling_duration_p2_110">
|
|
2858
2903
|
</div>
|
|
2859
2904
|
</div>
|
|
2905
|
+
</div>
|
|
2906
|
+
<div class="ncd-dependent" data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114>
|
|
2860
2907
|
<div class="form-row ncd-active-check">
|
|
2861
|
-
<strong>Set
|
|
2908
|
+
<strong>Probe 1: Set Low Pass Filter</strong>
|
|
2909
|
+
<p>
|
|
2910
|
+
This setting will set the LPF freq to ODR divided by Selected Value<br>
|
|
2911
|
+
Example: ODR = 800 and Filter Coefficient = 4<br>
|
|
2912
|
+
LPF freq = 800/4 = 200Hz
|
|
2913
|
+
</p>
|
|
2862
2914
|
<div>
|
|
2863
|
-
<label for="node-input-
|
|
2864
|
-
<input type="checkbox" id="node-input-
|
|
2915
|
+
<label for="node-input-low_pass_filter_p1_110_active">Active:</label>
|
|
2916
|
+
<input type="checkbox" id="node-input-low_pass_filter_p1_110_active" class="ncd-config-toggle" data-target-id="node-input-low_pass_filter_p1_110" value="1">
|
|
2865
2917
|
</div>
|
|
2866
2918
|
<div>
|
|
2867
|
-
<label for="node-input-
|
|
2868
|
-
<select id="node-input-
|
|
2869
|
-
<option
|
|
2870
|
-
<option value="
|
|
2871
|
-
<option value="
|
|
2872
|
-
<option value="
|
|
2873
|
-
<option value="
|
|
2874
|
-
<option value="
|
|
2875
|
-
<option value="
|
|
2876
|
-
<option value="
|
|
2919
|
+
<label for="node-input-low_pass_filter_p1_110"><i class="icon-tag"></i>Value:</label>
|
|
2920
|
+
<select id="node-input-low_pass_filter_p1_110">
|
|
2921
|
+
<option value="0">4</option>
|
|
2922
|
+
<option value="1">8</option>
|
|
2923
|
+
<option value="2">16</option>
|
|
2924
|
+
<option value="3">32</option>
|
|
2925
|
+
<option value="4">64</option>
|
|
2926
|
+
<option value="5">128</option>
|
|
2927
|
+
<option value="6">256</option>
|
|
2928
|
+
<option value="7">512</option>
|
|
2929
|
+
<option value="8">1024</option>
|
|
2930
|
+
<option value="9">2048</option>
|
|
2877
2931
|
</select>
|
|
2878
2932
|
</div>
|
|
2879
2933
|
</div>
|
|
2934
|
+
</div>
|
|
2935
|
+
<div class="ncd-dependent" data-sensor-111>
|
|
2880
2936
|
<div class="form-row ncd-active-check">
|
|
2881
|
-
<strong>Set
|
|
2937
|
+
<strong>Probe 2: Set Low Pass Filter</strong>
|
|
2938
|
+
<p>
|
|
2939
|
+
This setting will set the LPF freq to ODR divided by Selected Value<br>
|
|
2940
|
+
Example: ODR = 800 and Filter Coefficient = 4<br>
|
|
2941
|
+
LPF freq = 800/4 = 200Hz
|
|
2942
|
+
</p>
|
|
2882
2943
|
<div>
|
|
2883
|
-
<label for="node-input-
|
|
2884
|
-
<input type="checkbox" id="node-input-
|
|
2944
|
+
<label for="node-input-low_pass_filter_p2_110_active">Active:</label>
|
|
2945
|
+
<input type="checkbox" id="node-input-low_pass_filter_p2_110_active" class="ncd-config-toggle" data-target-id="node-input-low_pass_filter_p2_110" value="1">
|
|
2885
2946
|
</div>
|
|
2886
2947
|
<div>
|
|
2887
|
-
<label for="node-input-
|
|
2888
|
-
<select id="node-input-
|
|
2889
|
-
<option
|
|
2890
|
-
<option value="1">
|
|
2891
|
-
<option value="2">
|
|
2948
|
+
<label for="node-input-low_pass_filter_p2_110"><i class="icon-tag"></i>Value:</label>
|
|
2949
|
+
<select id="node-input-low_pass_filter_p2_110">
|
|
2950
|
+
<option value="0">4</option>
|
|
2951
|
+
<option value="1">8</option>
|
|
2952
|
+
<option value="2">16</option>
|
|
2953
|
+
<option value="3">32</option>
|
|
2954
|
+
<option value="4">64</option>
|
|
2955
|
+
<option value="5">128</option>
|
|
2956
|
+
<option value="6">256</option>
|
|
2957
|
+
<option value="7">512</option>
|
|
2958
|
+
<option value="8">1024</option>
|
|
2959
|
+
<option value="9">2048</option>
|
|
2892
2960
|
</select>
|
|
2893
2961
|
</div>
|
|
2894
2962
|
</div>
|
|
2895
2963
|
</div>
|
|
2896
|
-
<div class="ncd-dependent" data-sensor-
|
|
2897
|
-
<hr>
|
|
2964
|
+
<div class="ncd-dependent" data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114>
|
|
2898
2965
|
<div class="form-row ncd-active-check">
|
|
2899
|
-
<strong>
|
|
2966
|
+
<strong>Probe 1: Set High Pass Filter</strong>
|
|
2967
|
+
<p>
|
|
2968
|
+
This setting will set the HPF freq to ODR divided by Selected Value<br>
|
|
2969
|
+
Example: ODR = 800 and Filter Coefficient = 64<br>
|
|
2970
|
+
HPF freq = 800/64 = 12.5Hz
|
|
2971
|
+
</p>
|
|
2900
2972
|
<div>
|
|
2901
|
-
<label for="node-input-
|
|
2902
|
-
<input type="checkbox" id="node-input-
|
|
2973
|
+
<label for="node-input-high_pass_filter_p1_110_active">Active:</label>
|
|
2974
|
+
<input type="checkbox" id="node-input-high_pass_filter_p1_110_active" class="ncd-config-toggle" data-target-id="node-input-high_pass_filter_p1_110" value="1">
|
|
2903
2975
|
</div>
|
|
2904
2976
|
<div>
|
|
2905
|
-
<label for="node-input-
|
|
2977
|
+
<label for="node-input-high_pass_filter_p1_110"><i class="icon-tag"></i>Value:</label>
|
|
2978
|
+
<select id="node-input-high_pass_filter_p1_110">
|
|
2979
|
+
<option value="0">4</option>
|
|
2980
|
+
<option value="1">8</option>
|
|
2981
|
+
<option value="2">16</option>
|
|
2982
|
+
<option value="3">32</option>
|
|
2983
|
+
<option value="4">64</option>
|
|
2984
|
+
<option value="5">128</option>
|
|
2985
|
+
<option value="6">256</option>
|
|
2986
|
+
<option value="7">512</option>
|
|
2987
|
+
<option value="8">1024</option>
|
|
2988
|
+
<option value="9">2048</option>
|
|
2989
|
+
</select>
|
|
2990
|
+
</div>
|
|
2991
|
+
</div>
|
|
2992
|
+
</div>
|
|
2993
|
+
<div class="ncd-dependent" data-sensor-111>
|
|
2994
|
+
<div class="form-row ncd-active-check">
|
|
2995
|
+
<strong>Probe 2: Set High Pass Filter</strong>
|
|
2996
|
+
<p>
|
|
2997
|
+
This setting will set the HPF freq to ODR divided by Selected Value<br>
|
|
2998
|
+
Example: ODR = 800 and Filter Coefficient = 64<br>
|
|
2999
|
+
HPF freq = 800/64 = 12.5Hz
|
|
3000
|
+
</p>
|
|
3001
|
+
<div>
|
|
3002
|
+
<label for="node-input-high_pass_filter_p2_110_active">Active:</label>
|
|
3003
|
+
<input type="checkbox" id="node-input-high_pass_filter_p2_110_active" class="ncd-config-toggle" data-target-id="node-input-high_pass_filter_p2_110" value="1">
|
|
3004
|
+
</div>
|
|
3005
|
+
<div>
|
|
3006
|
+
<label for="node-input-high_pass_filter_p2_110"><i class="icon-tag"></i>Value:</label>
|
|
3007
|
+
<select id="node-input-high_pass_filter_p2_110">
|
|
3008
|
+
<option value="0">4</option>
|
|
3009
|
+
<option value="1">8</option>
|
|
3010
|
+
<option value="2">16</option>
|
|
3011
|
+
<option value="3">32</option>
|
|
3012
|
+
<option value="4">64</option>
|
|
3013
|
+
<option value="5">128</option>
|
|
3014
|
+
<option value="6">256</option>
|
|
3015
|
+
<option value="7">512</option>
|
|
3016
|
+
<option value="8">1024</option>
|
|
3017
|
+
<option value="9">2048</option>
|
|
3018
|
+
</select>
|
|
3019
|
+
</div>
|
|
3020
|
+
</div>
|
|
3021
|
+
</div>
|
|
3022
|
+
<div class="ncd-dependent" data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114>
|
|
3023
|
+
<hr>
|
|
3024
|
+
<div class="form-row ncd-active-check">
|
|
3025
|
+
<strong>Mode</strong>
|
|
3026
|
+
<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>
|
|
3027
|
+
<div>
|
|
3028
|
+
<label for="node-input-mode_110_active"><i class="icon-tag"></i>Active:</label>
|
|
3029
|
+
<input type="checkbox" id="node-input-mode_110_active" class="ncd-config-toggle" data-target-id="node-input-mode_110" value="1">
|
|
3030
|
+
</div>
|
|
3031
|
+
<div>
|
|
3032
|
+
<label for="node-input-mode_110"><i class="icon-tag"></i>Value:</label>
|
|
3033
|
+
<select id="node-input-mode_110">
|
|
3034
|
+
<option value="0">Processed</option>
|
|
3035
|
+
<option value="1">Raw</option>
|
|
3036
|
+
<option value="2">Processed + Raw on demand</option>
|
|
3037
|
+
<option value="3">Smart</option>
|
|
3038
|
+
</select>
|
|
3039
|
+
</div>
|
|
3040
|
+
</div>
|
|
3041
|
+
<div class="form-row ncd-active-check">
|
|
3042
|
+
<strong>Sampling Interval</strong>
|
|
3043
|
+
<div>
|
|
3044
|
+
<label for="node-input-sampling_interval_110_active">Active: </label>
|
|
3045
|
+
<input type="checkbox" id="node-input-sampling_interval_110_active" class="ncd-config-toggle" data-target-id="node-input-sampling_interval_110" value="1">
|
|
3046
|
+
</div>
|
|
3047
|
+
<div>
|
|
3048
|
+
<label for="node-input-sampling_interval_110"><i class="icon-tag"></i>Value:</label>
|
|
3049
|
+
<select id="node-input-sampling_interval_110">
|
|
3050
|
+
<option value="8">1 Minute</option>
|
|
3051
|
+
<option value="0">5 Minutes</option>
|
|
3052
|
+
<option value="1">10 Minutes</option>
|
|
3053
|
+
<option value="2">15 Minutes</option>
|
|
3054
|
+
<option value="3">20 Minutes</option>
|
|
3055
|
+
<option value="4">30 Minutes</option>
|
|
3056
|
+
<option value="5">60 Minutes</option>
|
|
3057
|
+
<option value="6">120 Minutes</option>
|
|
3058
|
+
<option value="7">180 Minutes</option>
|
|
3059
|
+
</select>
|
|
3060
|
+
</div>
|
|
3061
|
+
</div>
|
|
3062
|
+
<div class="form-row ncd-active-check">
|
|
3063
|
+
<strong>Clear Probe Uptimers</strong>
|
|
3064
|
+
<div>
|
|
3065
|
+
<label for="node-input-clear_probe_uptimers_110"><i class="icon-tag"></i>Active:</label>
|
|
3066
|
+
<input type="checkbox" id="node-input-clear_probe_uptimers_110" value="1">
|
|
3067
|
+
</div>
|
|
3068
|
+
</div>
|
|
3069
|
+
<div class="form-row ncd-active-check">
|
|
3070
|
+
<strong>Set Auto Raw Interval</strong>
|
|
3071
|
+
<p>The interval is determined by the sample interval. If the value is set to 1 and the sample interval is 10 minutes, raw data will be sent every 10 minutes. If the value is set to 5, raw data will be sent every 50 minutes.</p>
|
|
3072
|
+
<div>
|
|
3073
|
+
<label for="node-input-auto_raw_interval_110_active">Active:</label>
|
|
3074
|
+
<input type="checkbox" id="node-input-auto_raw_interval_110_active" class="ncd-config-toggle" data-target-id="node-input-auto_raw_interval_110" value="1">
|
|
3075
|
+
</div>
|
|
3076
|
+
<div>
|
|
3077
|
+
<label for="node-input-auto_raw_interval_110"><i class="icon-tag"></i>Value:</label>
|
|
3078
|
+
<input type="text" id="node-input-auto_raw_interval_110" value="0">
|
|
3079
|
+
</div>
|
|
3080
|
+
</div>
|
|
3081
|
+
<div class="form-row ncd-active-check">
|
|
3082
|
+
<strong>Set Auto Raw Destination Address</strong>
|
|
3083
|
+
<div>
|
|
3084
|
+
<label for="node-input-auto_raw_destination_110_active">Active:</label>
|
|
3085
|
+
<input type="checkbox" id="node-input-auto_raw_destination_110_active" class="ncd-config-toggle" data-target-id="node-input-auto_raw_destination_110" value="1">
|
|
3086
|
+
</div>
|
|
3087
|
+
<div>
|
|
3088
|
+
<label for="node-input-auto_raw_destination_110"><i class="icon-tag"></i>Address:</label>
|
|
3089
|
+
<input type="text" id="node-input-auto_raw_destination_110" value="0000FFFF">
|
|
3090
|
+
</div>
|
|
3091
|
+
<p class="caption">
|
|
3092
|
+
Default value: 0000FFFF for Broadcast Mode<br>
|
|
3093
|
+
Example of targeted address: 41D5EC37
|
|
3094
|
+
</p>
|
|
3095
|
+
</div>
|
|
3096
|
+
<div class="form-row ncd-active-check">
|
|
3097
|
+
<strong>Probe 1: Set Smart Mode Threshold</strong>
|
|
3098
|
+
<p>If RMS acceleration is above this in any axis, it will send data. This will be an integer value that increments the interrupt threshold by 50 mg. A value of 1 means to wake the sensor if acceleration is above 50 mg, 2 means 100 mg, etc.</p>
|
|
3099
|
+
<div>
|
|
3100
|
+
<label for="node-input-smart_threshold_110_active">Active:</label>
|
|
3101
|
+
<input type="checkbox" id="node-input-smart_threshold_110_active" class="ncd-config-toggle" data-target-id="node-input-smart_threshold_110" value="1">
|
|
3102
|
+
</div>
|
|
3103
|
+
<div>
|
|
3104
|
+
<label for="node-input-smart_threshold_110"><i class="icon-tag"></i>Value:</label>
|
|
3105
|
+
<input type="text" id="node-input-smart_threshold_110" value="1">
|
|
3106
|
+
</div>
|
|
3107
|
+
</div>
|
|
3108
|
+
</div>
|
|
3109
|
+
<div class="ncd-dependent" data-sensor-111>
|
|
3110
|
+
<div class="form-row ncd-active-check">
|
|
3111
|
+
<strong>Probe 2: Set Smart Mode Threshold</strong>
|
|
3112
|
+
<p>If RMS acceleration is above this in any axis, it will send data. This will be an integer value that increments the interrupt threshold by 50 mg. A value of 1 means to wake the sensor if acceleration is above 50 mg, 2 means 100 mg, etc.</p>
|
|
3113
|
+
<div>
|
|
3114
|
+
<label for="node-input-smart_threshold_p2_110_active">Active:</label>
|
|
3115
|
+
<input type="checkbox" id="node-input-smart_threshold_p2_110_active" class="ncd-config-toggle" data-target-id="node-input-smart_threshold_p2_110" value="1">
|
|
3116
|
+
</div>
|
|
3117
|
+
<div>
|
|
3118
|
+
<label for="node-input-smart_threshold_p2_110"><i class="icon-tag"></i>Value:</label>
|
|
3119
|
+
<input type="text" id="node-input-smart_threshold_p2_110" value="1">
|
|
3120
|
+
</div>
|
|
3121
|
+
</div>
|
|
3122
|
+
</div>
|
|
3123
|
+
<div class="ncd-dependent" data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114>
|
|
3124
|
+
<div class="form-row ncd-active-check">
|
|
3125
|
+
<strong>Set Smart Mode Skip Interval</strong>
|
|
3126
|
+
<p>Sensor will skip sending data this many times if vibration is below the smart threshold.</p>
|
|
3127
|
+
<div>
|
|
3128
|
+
<label for="node-input-smart_interval_110_active">Active:</label>
|
|
3129
|
+
<input type="checkbox" id="node-input-smart_interval_110_active" class="ncd-config-toggle" data-target-id="node-input-smart_interval_110" value="1">
|
|
3130
|
+
</div>
|
|
3131
|
+
<div>
|
|
3132
|
+
<label for="node-input-smart_interval_110"><i class="icon-tag"></i>Value:</label>
|
|
3133
|
+
<input type="text" id="node-input-smart_interval_110" value="1">
|
|
3134
|
+
</div>
|
|
3135
|
+
</div>
|
|
3136
|
+
<div class="form-row ncd-active-check">
|
|
3137
|
+
<strong>Set FLY Interval</strong>
|
|
3138
|
+
<div>
|
|
3139
|
+
<label for="node-input-fly_interval_110_active">Active:</label>
|
|
3140
|
+
<input type="checkbox" id="node-input-fly_interval_110_active" class="ncd-config-toggle" data-target-id="node-input-fly_interval_110" value="1">
|
|
3141
|
+
</div>
|
|
3142
|
+
<div>
|
|
3143
|
+
<label for="node-input-fly_interval_110"><i class="icon-tag"></i>Value:</label>
|
|
3144
|
+
<select id="node-input-fly_interval_110">
|
|
3145
|
+
<option value="60">1 Hour</option>
|
|
3146
|
+
<option value="120">2 Hours</option>
|
|
3147
|
+
<option value="240">4 Hours</option>
|
|
3148
|
+
<option value="480">8 Hours</option>
|
|
3149
|
+
<option value="720">12 Hours</option>
|
|
3150
|
+
<option value="1080">18 Hours</option>
|
|
3151
|
+
<option value="1440">24 Hours</option>
|
|
3152
|
+
</select>
|
|
3153
|
+
</div>
|
|
3154
|
+
</div>
|
|
3155
|
+
<div class="form-row ncd-active-check">
|
|
3156
|
+
<strong>Enable RPM Calculate Status</strong>
|
|
3157
|
+
<div>
|
|
3158
|
+
<label for="node-input-enable_rpm_calculate_status_110_active"><i class="icon-tag"></i>Active:</label>
|
|
3159
|
+
<input type="checkbox" id="node-input-enable_rpm_calculate_status_110_active" class="ncd-config-toggle" data-target-id="node-input-enable_rpm_calculate_status_110" value="1">
|
|
3160
|
+
</div>
|
|
3161
|
+
<div>
|
|
3162
|
+
<label for="node-input-enable_rpm_calculate_status_110"><i class="icon-tag"></i>Value:</label>
|
|
3163
|
+
<select id="node-input-enable_rpm_calculate_status_110">
|
|
3164
|
+
<option selected="selected" value="0">Enabled</option>
|
|
3165
|
+
<option value="1">Disabled</option>
|
|
3166
|
+
</select>
|
|
3167
|
+
</div>
|
|
3168
|
+
</div>
|
|
3169
|
+
</div>
|
|
3170
|
+
<div class="ncd-dependent" data-sensor-112>
|
|
3171
|
+
<div class="form-row ncd-active-check">
|
|
3172
|
+
<strong>Set MCP Thermocouple Type</strong>
|
|
3173
|
+
<div>
|
|
3174
|
+
<label for="node-input-thermocouple_type_112_active">Active:</label>
|
|
3175
|
+
<input type="checkbox" id="node-input-thermocouple_type_112_active" class="ncd-config-toggle" data-target-id="node-input-thermocouple_type_112" value="1">
|
|
3176
|
+
</div>
|
|
3177
|
+
<div>
|
|
3178
|
+
<label for="node-input-thermocouple_type_112"><i class="icon-tag"></i>Value:</label>
|
|
3179
|
+
<select id="node-input-thermocouple_type_112">
|
|
3180
|
+
<option selected="selected" value="0">Type K</option>
|
|
3181
|
+
<option value="16">Type J</option>
|
|
3182
|
+
<option value="32">Type T</option>
|
|
3183
|
+
<option value="48">Type N</option>
|
|
3184
|
+
<option value="64">Type S</option>
|
|
3185
|
+
<option value="80">Type E</option>
|
|
3186
|
+
<option value="96">Type B</option>
|
|
3187
|
+
<option value="112">Type R</option>
|
|
3188
|
+
</select>
|
|
3189
|
+
</div>
|
|
3190
|
+
</div>
|
|
3191
|
+
<div class="form-row ncd-active-check">
|
|
3192
|
+
<strong>Set MCP Filter Level</strong>
|
|
3193
|
+
<div>
|
|
3194
|
+
<label for="node-input-filter_thermocouple_112_active">Active:</label>
|
|
3195
|
+
<input type="checkbox" id="node-input-filter_thermocouple_112_active" class="ncd-config-toggle" data-target-id="node-input-filter_thermocouple_112" value="1">
|
|
3196
|
+
</div>
|
|
3197
|
+
<div>
|
|
3198
|
+
<label for="node-input-filter_thermocouple_112"><i class="icon-tag"></i>Value:</label>
|
|
3199
|
+
<select id="node-input-filter_thermocouple_112">
|
|
3200
|
+
<option selected="selected" value="0">Level 0</option>
|
|
3201
|
+
<option value="1">Level 1</option>
|
|
3202
|
+
<option value="2">Level 2</option>
|
|
3203
|
+
<option value="3">Level 3</option>
|
|
3204
|
+
<option value="4">Level 4</option>
|
|
3205
|
+
<option value="5">Level 5</option>
|
|
3206
|
+
<option value="6">Level 6</option>
|
|
3207
|
+
<option value="7">Level 7</option>
|
|
3208
|
+
</select>
|
|
3209
|
+
</div>
|
|
3210
|
+
</div>
|
|
3211
|
+
<div class="form-row ncd-active-check">
|
|
3212
|
+
<strong>Set MCP Cold Junction Resolution</strong>
|
|
3213
|
+
<div>
|
|
3214
|
+
<label for="node-input-cold_junction_thermocouple_112_active">Active:</label>
|
|
3215
|
+
<input type="checkbox" id="node-input-cold_junction_thermocouple_112_active" class="ncd-config-toggle" data-target-id="node-input-cold_junction_thermocouple_112" value="1">
|
|
3216
|
+
</div>
|
|
3217
|
+
<div>
|
|
3218
|
+
<label for="node-input-cold_junction_thermocouple_112"><i class="icon-tag"></i>Value:</label>
|
|
3219
|
+
<select id="node-input-cold_junction_thermocouple_112">
|
|
3220
|
+
<option selected="selected" value="0">0.0625⁰C</option>
|
|
3221
|
+
<option value="128">0.25⁰C</option>
|
|
3222
|
+
</select>
|
|
3223
|
+
</div>
|
|
3224
|
+
</div>
|
|
3225
|
+
<div class="form-row ncd-active-check">
|
|
3226
|
+
<strong>Set MCP ADC Resolution</strong>
|
|
3227
|
+
<div>
|
|
3228
|
+
<label for="node-input-sample_resolution_thermocouple_112_active">Active:</label>
|
|
3229
|
+
<input type="checkbox" id="node-input-sample_resolution_thermocouple_112_active" class="ncd-config-toggle" data-target-id="node-input-sample_resolution_thermocouple_112" value="1">
|
|
3230
|
+
</div>
|
|
3231
|
+
<div>
|
|
3232
|
+
<label for="node-input-sample_resolution_thermocouple_112"><i class="icon-tag"></i>Value:</label>
|
|
3233
|
+
<select id="node-input-sample_resolution_thermocouple_112">
|
|
3234
|
+
<option selected="selected" value="0">18 Bits</option>
|
|
3235
|
+
<option value="32">16 Bits</option>
|
|
3236
|
+
<option value="64">14 Bits</option>
|
|
3237
|
+
<option value="96">12 Bits</option>
|
|
3238
|
+
</select>
|
|
3239
|
+
</div>
|
|
3240
|
+
</div>
|
|
3241
|
+
<div class="form-row ncd-active-check">
|
|
3242
|
+
<strong>Set MCP Number of Samples</strong>
|
|
3243
|
+
<div>
|
|
3244
|
+
<label for="node-input-number_of_samples_thermocouple_112_active">Active:</label>
|
|
3245
|
+
<input type="checkbox" id="node-input-number_of_samples_thermocouple_112_active" class="ncd-config-toggle" data-target-id="node-input-number_of_samples_thermocouple_112" value="1">
|
|
3246
|
+
</div>
|
|
3247
|
+
<div>
|
|
3248
|
+
<label for="node-input-number_of_samples_thermocouple_112"><i class="icon-tag"></i>Value:</label>
|
|
3249
|
+
<select id="node-input-number_of_samples_thermocouple_112">
|
|
3250
|
+
<option selected="selected" value="0">1 Sample</option>
|
|
3251
|
+
<option value="4">2 Samples</option>
|
|
3252
|
+
<option value="8">4 Samples</option>
|
|
3253
|
+
<option value="12">8 Samples</option>
|
|
3254
|
+
<option value="16">16 Samples</option>
|
|
3255
|
+
<option value="20">32 Samples</option>
|
|
3256
|
+
<option value="24">64 Samples</option>
|
|
3257
|
+
<option value="28">128 Samples</option>
|
|
3258
|
+
</select>
|
|
3259
|
+
</div>
|
|
3260
|
+
</div>
|
|
3261
|
+
<div class="form-row ncd-active-check">
|
|
3262
|
+
<strong>Set MCP Measurement Type</strong>
|
|
3263
|
+
<div>
|
|
3264
|
+
<label for="node-input-measurement_type_thermocouple_112_active">Active:</label>
|
|
3265
|
+
<input type="checkbox" id="node-input-measurement_type_thermocouple_112_active" class="ncd-config-toggle" data-target-id="node-input-measurement_type_thermocouple_112" value="1">
|
|
3266
|
+
</div>
|
|
3267
|
+
<div>
|
|
3268
|
+
<label for="node-input-measurement_type_thermocouple_112"><i class="icon-tag"></i>Value:</label>
|
|
3269
|
+
<select id="node-input-measurement_type_thermocouple_112">
|
|
3270
|
+
<option selected="selected" value="0">Cold Junction</option>
|
|
3271
|
+
<option value="1">Hot Junction</option>
|
|
3272
|
+
<option value="2">Delta</option>
|
|
3273
|
+
</select>
|
|
3274
|
+
</div>
|
|
3275
|
+
</div>
|
|
3276
|
+
<div class="form-row ncd-active-check">
|
|
3277
|
+
<strong>Set MCP Operation Mode</strong>
|
|
3278
|
+
<div>
|
|
3279
|
+
<label for="node-input-operation_mode_thermocouple_112_active">Active:</label>
|
|
3280
|
+
<input type="checkbox" id="node-input-operation_mode_thermocouple_112_active" class="ncd-config-toggle" data-target-id="node-input-operation_mode_thermocouple_112" value="1">
|
|
3281
|
+
</div>
|
|
3282
|
+
<div>
|
|
3283
|
+
<label for="node-input-operation_mode_thermocouple_112"><i class="icon-tag"></i>Value:</label>
|
|
3284
|
+
<select id="node-input-operation_mode_thermocouple_112">
|
|
3285
|
+
<option selected="selected" value="0">Normal Operation</option>
|
|
3286
|
+
<option value="1">Shutdown Mode</option>
|
|
3287
|
+
<option value="2">Burst Mode</option>
|
|
3288
|
+
</select>
|
|
3289
|
+
</div>
|
|
3290
|
+
</div>
|
|
3291
|
+
</div>
|
|
3292
|
+
<div class="ncd-dependent" data-sensor-4 data-sensor-12 data-sensor-23>
|
|
3293
|
+
<hr>
|
|
3294
|
+
<div class="form-row ncd-active-check">
|
|
3295
|
+
<strong>Set MCP Thermocouple Type</strong>
|
|
3296
|
+
<div>
|
|
3297
|
+
<label for="node-input-thermocouple_type_23_active">Active:</label>
|
|
3298
|
+
<input type="checkbox" id="node-input-thermocouple_type_23_active" class="ncd-config-toggle" data-target-id="node-input-thermocouple_type_23" value="1">
|
|
3299
|
+
</div>
|
|
3300
|
+
<div>
|
|
3301
|
+
<label for="node-input-thermocouple_type_23"><i class="icon-tag"></i>Value:</label>
|
|
3302
|
+
<select id="node-input-thermocouple_type_23">
|
|
3303
|
+
<option selected="selected" value="0">Type K</option>
|
|
3304
|
+
<option value="16">Type J</option>
|
|
3305
|
+
<option value="32">Type T</option>
|
|
3306
|
+
<option value="48">Type N</option>
|
|
3307
|
+
<option value="64">Type S</option>
|
|
3308
|
+
<option value="80">Type E</option>
|
|
3309
|
+
<option value="96">Type B</option>
|
|
3310
|
+
<option value="112">Type R</option>
|
|
3311
|
+
</select>
|
|
3312
|
+
</div>
|
|
3313
|
+
</div>
|
|
3314
|
+
<div class="form-row ncd-active-check">
|
|
3315
|
+
<strong>Set MCP Filter Level</strong>
|
|
3316
|
+
<div>
|
|
3317
|
+
<label for="node-input-filter_thermocouple_active">Active:</label>
|
|
3318
|
+
<input type="checkbox" id="node-input-filter_thermocouple_active" class="ncd-config-toggle" data-target-id="node-input-filter_thermocouple" value="1">
|
|
3319
|
+
</div>
|
|
3320
|
+
<div>
|
|
3321
|
+
<label for="node-input-filter_thermocouple"><i class="icon-tag"></i>Value:</label>
|
|
3322
|
+
<select id="node-input-filter_thermocouple">
|
|
3323
|
+
<option selected="selected" value="0">Level 0</option>
|
|
3324
|
+
<option value="1">Level 1</option>
|
|
3325
|
+
<option value="2">Level 2</option>
|
|
3326
|
+
<option value="3">Level 3</option>
|
|
3327
|
+
<option value="4">Level 4</option>
|
|
3328
|
+
<option value="5">Level 5</option>
|
|
3329
|
+
<option value="6">Level 6</option>
|
|
3330
|
+
<option value="7">Level 7</option>
|
|
3331
|
+
</select>
|
|
3332
|
+
</div>
|
|
3333
|
+
</div>
|
|
3334
|
+
<div class="form-row ncd-active-check">
|
|
3335
|
+
<strong>Set MCP Cold Junction Resolution</strong>
|
|
3336
|
+
<div>
|
|
3337
|
+
<label for="node-input-cold_junction_thermocouple_active">Active:</label>
|
|
3338
|
+
<input type="checkbox" id="node-input-cold_junction_thermocouple_active" class="ncd-config-toggle" data-target-id="node-input-cold_junction_thermocouple" value="1">
|
|
3339
|
+
</div>
|
|
3340
|
+
<div>
|
|
3341
|
+
<label for="node-input-cold_junction_thermocouple"><i class="icon-tag"></i>Value:</label>
|
|
3342
|
+
<select id="node-input-cold_junction_thermocouple">
|
|
3343
|
+
<option selected="selected" value="0">0.0625⁰C</option>
|
|
3344
|
+
<option value="128">0.25⁰C</option>
|
|
3345
|
+
</select>
|
|
3346
|
+
</div>
|
|
3347
|
+
</div>
|
|
3348
|
+
<div class="form-row ncd-active-check">
|
|
3349
|
+
<strong>Set MCP ADC Resolution</strong>
|
|
3350
|
+
<div>
|
|
3351
|
+
<label for="node-input-sample_resolution_thermocouple_active">Active:</label>
|
|
3352
|
+
<input type="checkbox" id="node-input-sample_resolution_thermocouple_active" class="ncd-config-toggle" data-target-id="node-input-sample_resolution_thermocouple" value="1">
|
|
3353
|
+
</div>
|
|
3354
|
+
<div>
|
|
3355
|
+
<label for="node-input-sample_resolution_thermocouple"><i class="icon-tag"></i>Value:</label>
|
|
3356
|
+
<select id="node-input-sample_resolution_thermocouple">
|
|
3357
|
+
<option selected="selected" value="0">18 Bits</option>
|
|
3358
|
+
<option value="32">16 Bits</option>
|
|
3359
|
+
<option value="64">14 Bits</option>
|
|
3360
|
+
<option value="96">12 Bits</option>
|
|
3361
|
+
</select>
|
|
3362
|
+
</div>
|
|
3363
|
+
</div>
|
|
3364
|
+
<div class="form-row ncd-active-check">
|
|
3365
|
+
<strong>Set MCP Number of Samples</strong>
|
|
3366
|
+
<div>
|
|
3367
|
+
<label for="node-input-number_of_samples_thermocouple_active">Active:</label>
|
|
3368
|
+
<input type="checkbox" id="node-input-number_of_samples_thermocouple_active" class="ncd-config-toggle" data-target-id="node-input-number_of_samples_thermocouple" value="1">
|
|
3369
|
+
</div>
|
|
3370
|
+
<div>
|
|
3371
|
+
<label for="node-input-number_of_samples_thermocouple"><i class="icon-tag"></i>Value:</label>
|
|
3372
|
+
<select id="node-input-number_of_samples_thermocouple">
|
|
3373
|
+
<option selected="selected" value="0">1 Sample</option>
|
|
3374
|
+
<option value="4">2 Samples</option>
|
|
3375
|
+
<option value="8">4 Samples</option>
|
|
3376
|
+
<option value="12">8 Samples</option>
|
|
3377
|
+
<option value="16">16 Samples</option>
|
|
3378
|
+
<option value="20">32 Samples</option>
|
|
3379
|
+
<option value="24">64 Samples</option>
|
|
3380
|
+
<option value="28">128 Samples</option>
|
|
3381
|
+
</select>
|
|
3382
|
+
</div>
|
|
3383
|
+
</div>
|
|
3384
|
+
<div class="form-row ncd-active-check">
|
|
3385
|
+
<strong>Set MCP Measurement Type</strong>
|
|
3386
|
+
<div>
|
|
3387
|
+
<label for="node-input-measurement_type_thermocouple_active">Active:</label>
|
|
3388
|
+
<input type="checkbox" id="node-input-measurement_type_thermocouple_active" class="ncd-config-toggle" data-target-id="node-input-measurement_type_thermocouple" value="1">
|
|
3389
|
+
</div>
|
|
3390
|
+
<div>
|
|
3391
|
+
<label for="node-input-measurement_type_thermocouple"><i class="icon-tag"></i>Value:</label>
|
|
3392
|
+
<select id="node-input-measurement_type_thermocouple">
|
|
3393
|
+
<option selected="selected" value="0">Cold Junction</option>
|
|
3394
|
+
<option value="1">Hot Junction</option>
|
|
3395
|
+
<option value="2">Delta</option>
|
|
3396
|
+
</select>
|
|
3397
|
+
</div>
|
|
3398
|
+
</div>
|
|
3399
|
+
</div>
|
|
3400
|
+
<div class="ncd-dependent" data-sensor-46>
|
|
3401
|
+
<hr>
|
|
3402
|
+
<div class="form-row ncd-active-check">
|
|
3403
|
+
<strong>Motion Threshold</strong>
|
|
3404
|
+
<div>
|
|
3405
|
+
<label for="node-input-motion_threshold_46_active">Active:</label>
|
|
3406
|
+
<input type="checkbox" id="node-input-motion_threshold_46_active" class="ncd-config-toggle" data-target-id="node-input-motion_threshold_46" value="1">
|
|
3407
|
+
</div>
|
|
3408
|
+
<div>
|
|
3409
|
+
<label for="node-input-motion_threshold_46"><i class="icon-tag"></i>Value:</label>
|
|
2906
3410
|
<input type="text" id="node-input-motion_threshold_46" placeholder="0-4294967295" value="100">
|
|
2907
3411
|
</div>
|
|
2908
3412
|
</div>
|
|
@@ -3355,119 +3859,6 @@
|
|
|
3355
3859
|
</div>
|
|
3356
3860
|
</div>
|
|
3357
3861
|
</div>
|
|
3358
|
-
<div class="ncd-dependent" data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114>
|
|
3359
|
-
<div class="form-row ncd-active-check">
|
|
3360
|
-
<strong>Clear Probe Uptimers</strong>
|
|
3361
|
-
<div>
|
|
3362
|
-
<label for="node-input-clear_probe_uptimers_110"><i class="icon-tag"></i>Active:</label>
|
|
3363
|
-
<input type="checkbox" id="node-input-clear_probe_uptimers_110" value="1">
|
|
3364
|
-
</div>
|
|
3365
|
-
</div>
|
|
3366
|
-
</div>
|
|
3367
|
-
<div class="ncd-dependent" data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114>
|
|
3368
|
-
<div class="form-row ncd-active-check">
|
|
3369
|
-
<strong>Set Auto Raw Interval</strong>
|
|
3370
|
-
<p>The interval is determined by the sample interval. If the value is set to 1 and the sample interval is 10 minutes, raw data will be sent every 10 minutes. If the value is set to 5, raw data will be sent every 50 minutes.</p>
|
|
3371
|
-
<div>
|
|
3372
|
-
<label for="node-input-auto_raw_interval_110_active">Active:</label>
|
|
3373
|
-
<input type="checkbox" id="node-input-auto_raw_interval_110_active" class="ncd-config-toggle" data-target-id="node-input-auto_raw_interval_110" value="1">
|
|
3374
|
-
</div>
|
|
3375
|
-
<div>
|
|
3376
|
-
<label for="node-input-auto_raw_interval_110"><i class="icon-tag"></i>Address:</label>
|
|
3377
|
-
<input type="text" id="node-input-auto_raw_interval_110" value="0">
|
|
3378
|
-
</div>
|
|
3379
|
-
</div>
|
|
3380
|
-
<div class="form-row ncd-active-check">
|
|
3381
|
-
<strong>Set Auto Raw Destination Address</strong>
|
|
3382
|
-
<div>
|
|
3383
|
-
<label for="node-input-auto_raw_destination_110_active">Active:</label>
|
|
3384
|
-
<input type="checkbox" id="node-input-auto_raw_destination_110_active" class="ncd-config-toggle" data-target-id="node-input-auto_raw_destination_110" value="1">
|
|
3385
|
-
</div>
|
|
3386
|
-
<div>
|
|
3387
|
-
<label for="node-input-auto_raw_destination_110"><i class="icon-tag"></i>Address:</label>
|
|
3388
|
-
<input type="text" id="node-input-auto_raw_destination_110" value="0000FFFF">
|
|
3389
|
-
</div>
|
|
3390
|
-
<p class="caption">
|
|
3391
|
-
Default value: 0000FFFF for Broadcast Mode<br>
|
|
3392
|
-
Example of targeted address: 41D5EC37
|
|
3393
|
-
</p>
|
|
3394
|
-
</div>
|
|
3395
|
-
<!-- <div class="form-row ncd-active-check">
|
|
3396
|
-
<strong>Clear Probe Uptimers</strong>
|
|
3397
|
-
<div>
|
|
3398
|
-
<label for="node-input-clear_probe_uptimers_110_active">Active:</label>
|
|
3399
|
-
<input type="checkbox" id="node-input-clear_probe_uptimers_110_active" class="ncd-config-toggle" data-target-id="node-input-clear_probe_uptimers_110" value="1">
|
|
3400
|
-
</div>
|
|
3401
|
-
<div>
|
|
3402
|
-
<label for="node-input-clear_probe_uptimers_110"><i class="icon-tag"></i>Value:</label>
|
|
3403
|
-
<select id="node-input-clear_probe_uptimers_110">
|
|
3404
|
-
<option value="0">Disabled</option>
|
|
3405
|
-
<option value="1">Enabled</option>
|
|
3406
|
-
</select>
|
|
3407
|
-
</div>
|
|
3408
|
-
</div> -->
|
|
3409
|
-
</div>
|
|
3410
|
-
<div class="ncd-dependent" data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114>
|
|
3411
|
-
<div class="form-row ncd-active-check">
|
|
3412
|
-
<strong>Set Smart Mode Threshold</strong>
|
|
3413
|
-
<p>If RMS acceleration is above this in any axis, it will send data. This will be an integer value that increments the interrupt threshold by 50 mg. A value of 1 means to wake the sensor if acceleration is above 50 mg, 2 means 100 mg, etc.</p>
|
|
3414
|
-
<div>
|
|
3415
|
-
<label for="node-input-smart_threshold_110_active">Active:</label>
|
|
3416
|
-
<input type="checkbox" id="node-input-smart_threshold_110_active" class="ncd-config-toggle" data-target-id="node-input-smart_threshold_110" value="1">
|
|
3417
|
-
</div>
|
|
3418
|
-
<div>
|
|
3419
|
-
<label for="node-input-smart_threshold_110"><i class="icon-tag"></i>Value:</label>
|
|
3420
|
-
<input type="text" id="node-input-smart_threshold_110" value="1">
|
|
3421
|
-
</div>
|
|
3422
|
-
</div>
|
|
3423
|
-
</div>
|
|
3424
|
-
<div class="ncd-dependent" data-sensor-111>
|
|
3425
|
-
<div class="form-row ncd-active-check">
|
|
3426
|
-
<strong>Set Smart Mode Threshold Probe 2</strong>
|
|
3427
|
-
<p>If RMS acceleration is above this in any axis, it will send data. This will be an integer value that increments the interrupt threshold by 50 mg. A value of 1 means to wake the sensor if acceleration is above 50 mg, 2 means 100 mg, etc.</p>
|
|
3428
|
-
<div>
|
|
3429
|
-
<label for="node-input-smart_threshold_p2_110_active">Active:</label>
|
|
3430
|
-
<input type="checkbox" id="node-input-smart_threshold_p2_110_active" class="ncd-config-toggle" data-target-id="node-input-smart_threshold_p2_110" value="1">
|
|
3431
|
-
</div>
|
|
3432
|
-
<div>
|
|
3433
|
-
<label for="node-input-smart_threshold_p2_110"><i class="icon-tag"></i>Value:</label>
|
|
3434
|
-
<input type="text" id="node-input-smart_threshold_p2_110" value="1">
|
|
3435
|
-
</div>
|
|
3436
|
-
</div>
|
|
3437
|
-
</div>
|
|
3438
|
-
<div class="ncd-dependent" data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114>
|
|
3439
|
-
<div class="form-row ncd-active-check">
|
|
3440
|
-
<strong>Set Smart Mode Skip Interval</strong>
|
|
3441
|
-
<p>Sensor will skip sending data this many times if vibration is below the smart threshold.</p>
|
|
3442
|
-
<div>
|
|
3443
|
-
<label for="node-input-smart_interval_110_active">Active:</label>
|
|
3444
|
-
<input type="checkbox" id="node-input-smart_interval_110_active" class="ncd-config-toggle" data-target-id="node-input-smart_interval_110" value="1">
|
|
3445
|
-
</div>
|
|
3446
|
-
<div>
|
|
3447
|
-
<label for="node-input-smart_interval_110"><i class="icon-tag"></i>Value:</label>
|
|
3448
|
-
<input type="text" id="node-input-smart_interval_110" value="1">
|
|
3449
|
-
</div>
|
|
3450
|
-
</div>
|
|
3451
|
-
<div class="form-row ncd-active-check">
|
|
3452
|
-
<strong>Set FLY Interval</strong>
|
|
3453
|
-
<div>
|
|
3454
|
-
<label for="node-input-fly_interval_110_active">Active:</label>
|
|
3455
|
-
<input type="checkbox" id="node-input-fly_interval_110_active" class="ncd-config-toggle" data-target-id="node-input-fly_interval_110" value="1">
|
|
3456
|
-
</div>
|
|
3457
|
-
<div>
|
|
3458
|
-
<label for="node-input-fly_interval_110"><i class="icon-tag"></i>Value:</label>
|
|
3459
|
-
<select id="node-input-fly_interval_110">
|
|
3460
|
-
<option value="60">1 Hour</option>
|
|
3461
|
-
<option value="120">2 Hours</option>
|
|
3462
|
-
<option value="240">4 Hours</option>
|
|
3463
|
-
<option value="480">8 Hours</option>
|
|
3464
|
-
<option value="720">12 Hours</option>
|
|
3465
|
-
<option value="1080">18 Hours</option>
|
|
3466
|
-
<option value="1440">24 Hours</option>
|
|
3467
|
-
</select>
|
|
3468
|
-
</div>
|
|
3469
|
-
</div>
|
|
3470
|
-
</div>
|
|
3471
3862
|
<div class="ncd-dependent" data-sensor-531>
|
|
3472
3863
|
<hr>
|
|
3473
3864
|
<div class="form-row ncd-active-check">
|
|
@@ -3777,6 +4168,48 @@
|
|
|
3777
4168
|
</div>
|
|
3778
4169
|
</div>
|
|
3779
4170
|
</div>
|
|
4171
|
+
<div class="ncd-dependent" data-sensor-21>
|
|
4172
|
+
<div class="form-row ncd-active-check">
|
|
4173
|
+
<strong>Set Pressure Sensor Type (code)</strong>
|
|
4174
|
+
<p>
|
|
4175
|
+
D: Differential/relative.<br>
|
|
4176
|
+
D-B: Bidirectional Differential.<br>
|
|
4177
|
+
A: Absolute.<br>
|
|
4178
|
+
B: Absolute (barometric).<br>
|
|
4179
|
+
</p>
|
|
4180
|
+
<div>
|
|
4181
|
+
<label for="node-input-pressure_sensor_type_21_active">Active:</label>
|
|
4182
|
+
<input type="checkbox" id="node-input-pressure_sensor_type_21_active" class="ncd-config-toggle" data-target-id="node-input-pressure_sensor_type_21" value="1">
|
|
4183
|
+
</div>
|
|
4184
|
+
<div>
|
|
4185
|
+
<label for="node-input-pressure_sensor_type_21"><i class="icon-tag"></i>Value:</label>
|
|
4186
|
+
<select id="node-input-pressure_sensor_type_21">
|
|
4187
|
+
<option value="0">Type 0000-D</option>
|
|
4188
|
+
<option value="1">Type 0001-D</option>
|
|
4189
|
+
<option value="2">Type 0000-D-B</option>
|
|
4190
|
+
<option value="3">Type 000-1-D-B</option>
|
|
4191
|
+
<option value="4">Type 0003-D</option>
|
|
4192
|
+
<option value="5">Type 0008-D</option>
|
|
4193
|
+
<option value="6">Type 0015-D</option>
|
|
4194
|
+
<option value="7">Type 0003-D-B</option>
|
|
4195
|
+
<option value="8">Type 0008-D-B</option>
|
|
4196
|
+
<option value="9">Type 0015-D-B</option>
|
|
4197
|
+
<option value="10">Type 0030-D</option>
|
|
4198
|
+
<option value="11">Type 0050-D</option>
|
|
4199
|
+
<option value="12">Type 0150-D</option>
|
|
4200
|
+
<option value="13">Type 0300-D</option>
|
|
4201
|
+
<option value="14">Type 0600-D</option>
|
|
4202
|
+
<option value="15">Type 1000-D</option>
|
|
4203
|
+
<option value="16">Type 0030-D-B</option>
|
|
4204
|
+
<option value="17">Type 0050-D-B</option>
|
|
4205
|
+
<option value="18">Type 0150-D-B</option>
|
|
4206
|
+
<option value="19">Type 0150-B</option>
|
|
4207
|
+
<option value="20">Type 0150-A</option>
|
|
4208
|
+
<option value="21">Type 0300-A</option>
|
|
4209
|
+
</select>
|
|
4210
|
+
</div>
|
|
4211
|
+
</div>
|
|
4212
|
+
</div>
|
|
3780
4213
|
</div>
|
|
3781
4214
|
</div>
|
|
3782
4215
|
</script>
|