@ncd-io/node-red-enterprise-sensors 1.1.5 → 1.2.1
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 +623 -226
- package/package.json +1 -1
- package/wireless.html +179 -37
- package/wireless.js +149 -17
package/package.json
CHANGED
package/wireless.html
CHANGED
|
@@ -577,8 +577,8 @@
|
|
|
577
577
|
reset_timeout_108: {value: 60, validate: NCD_validators.number_range(60, 65535)},
|
|
578
578
|
reset_mode_to_disabled_108_active: {value: ""},
|
|
579
579
|
reset_mode_to_disabled_108: {value: 0},
|
|
580
|
-
|
|
581
|
-
|
|
580
|
+
transmission_interval_108_active: {value: ""},
|
|
581
|
+
transmission_interval_108: {value: 0},
|
|
582
582
|
rtc_108:{value:0},
|
|
583
583
|
|
|
584
584
|
change_otf_interval_active:{value: ""},
|
|
@@ -675,6 +675,22 @@
|
|
|
675
675
|
motion_detect_threshold_p1_110: {value: 0, validate: NCD_validators.number_range(0, 40)},
|
|
676
676
|
motion_detect_threshold_p2_110_active: {value: ""},
|
|
677
677
|
motion_detect_threshold_p2_110: {value: 0, validate: NCD_validators.number_range(0, 40)},
|
|
678
|
+
|
|
679
|
+
quality_of_service_108_active: {value: ""},
|
|
680
|
+
quality_of_service_108: {value: 0},
|
|
681
|
+
|
|
682
|
+
max_raw_sample_110_active: {value: ""},
|
|
683
|
+
max_raw_sample_110: {value: 0},
|
|
684
|
+
|
|
685
|
+
always_on_120: {value:0},
|
|
686
|
+
sensor_reset_120: {value:0},
|
|
687
|
+
sensor_calib_120: {value:0},
|
|
688
|
+
alert_threshold_120_active: {value: ""},
|
|
689
|
+
alert_threshold_120: {value: 0, validate: NCD_validators.number_range(0, 40)},
|
|
690
|
+
|
|
691
|
+
tare_the_scale_217: {value:0},
|
|
692
|
+
weight_calib_217_active: {value: ""},
|
|
693
|
+
weight_calib_217: {value: 0}
|
|
678
694
|
},
|
|
679
695
|
inputs: 0,
|
|
680
696
|
outputs: 1,
|
|
@@ -702,7 +718,7 @@
|
|
|
702
718
|
"18": "18 - Pulse Frequency",
|
|
703
719
|
"19": "19 - 2 Channel Current Sensor",
|
|
704
720
|
"20": "20 - High Precision Pressure Sensor",
|
|
705
|
-
"21": "21 - Differential
|
|
721
|
+
"21": "21 - Differential Bidirectional Pressure Sensor",
|
|
706
722
|
"22": "22 - 0-24V AC/DC Optically Isolated Inputs",
|
|
707
723
|
"23": "23 - 2 Channel Thermocouple Sensor",
|
|
708
724
|
"24": "24 - Activity Detection",
|
|
@@ -775,11 +791,13 @@
|
|
|
775
791
|
"106": "106 - 2 Channel Automatic Luber With Ultrasound Vibration Sensor",
|
|
776
792
|
"107": "107 - 4 Channel 4-20mA Receiver",
|
|
777
793
|
"108": "108 - Machine Uptime Monitoring Sensor",
|
|
794
|
+
"109": "109 - Wireless Custom Solar Sensor",
|
|
778
795
|
"110": "110 - One Channel Vibration Plus v4",
|
|
779
796
|
"111": "111 - Two Channel Vibration Plus v4",
|
|
780
797
|
"112": "112 - Condition Based/Predictive Maintenance Sensor v4",
|
|
781
798
|
"114": "114 - Standalone Smart Vibration Sensor v4",
|
|
782
799
|
"118": "118 - Dual Pressure and Temperature Sensor",
|
|
800
|
+
"120": "120 - Wireless H2S Sensor",
|
|
783
801
|
"180": "180 - C1D2 One Channel Vibration Plus",
|
|
784
802
|
"181": "181 - C1D2 Two Channel Vibration Plus",
|
|
785
803
|
"200": "200 - 4-20mA Pass Through",
|
|
@@ -791,6 +809,7 @@
|
|
|
791
809
|
"507": "507 - Custom_SAP_Current_7C",
|
|
792
810
|
"510": "510 - GreenLight",
|
|
793
811
|
"515": "515 - Custom_SAP_Current_48C",
|
|
812
|
+
"518": "518 - Custom Air Velocity",
|
|
794
813
|
"519": "519: Custom Vibration 1",
|
|
795
814
|
"520": "520: Custom 6 Channel Current Temperature & Humidity",
|
|
796
815
|
"521": "521 - Custom 3 Channel Light Sensor",
|
|
@@ -997,7 +1016,7 @@
|
|
|
997
1016
|
<option value="18">18 - Pulse/Frequency</option>
|
|
998
1017
|
<option value="19">19 - 2-channel 24-bit Current Monitor</option>
|
|
999
1018
|
<option value="20">20 - Precision Pressure & Temperature (pA)</option>
|
|
1000
|
-
<option value="21">21 -
|
|
1019
|
+
<option value="21">21 - Differential Bidirectional Pressure Sensor</option>
|
|
1001
1020
|
<option value="22">22 - 0-24V AC/DC Optically Isolated Inputs</option>
|
|
1002
1021
|
<option value="23">23 - 2-channel Thermocouple</option>
|
|
1003
1022
|
<option value="24">24 - Activity Detection</option>
|
|
@@ -1072,11 +1091,13 @@
|
|
|
1072
1091
|
<option value="106">106 - 2 Channel Automatic Luber With Ultrasound Vibration Sensor</option>
|
|
1073
1092
|
<option value="107">107 - 4 Channel 4-20mA Receiver</option>
|
|
1074
1093
|
<option value="108">108 - Machine Uptime Monitoring Sensor</option>
|
|
1094
|
+
<option value="109">109 - Wireless Custom Solar Sensor</option>
|
|
1075
1095
|
<option value="110">110 - One Channel Vibration Plus v4</option>
|
|
1076
1096
|
<option value="111">111 - Two Channel Vibration Plus v4</option>
|
|
1077
1097
|
<option value="112">112 - Condition Based/Predictive Maintenance Sensor v4</option>
|
|
1078
1098
|
<option value="114">114 - Standalone Smart Vibration Sensor v4</option>
|
|
1079
1099
|
<option value="118">118 - Dual Pressure and Temperature Sensor</option>
|
|
1100
|
+
<option value="120">120 - Wireless H2S Sensor</option>
|
|
1080
1101
|
<option value="180">180 - C1D2 One Channel Vibration Plus</option>
|
|
1081
1102
|
<option value="181">181 - C1D2 Two Channel Vibration Plus</option>
|
|
1082
1103
|
<option value="200">200 - 4-20mA Pass Through</option>
|
|
@@ -1088,6 +1109,7 @@
|
|
|
1088
1109
|
<option value="507">507 - Custom_SAP_Current_7C</option>
|
|
1089
1110
|
<option value="510">510 - GreenLight</option>
|
|
1090
1111
|
<option value="515">515 - Custom_SAP_Current_48C</option>
|
|
1112
|
+
<option value="518">518 - Custom Air Velocity</option>
|
|
1091
1113
|
<option value="519">519 - Type 519: Custom Vibration 1</option>
|
|
1092
1114
|
<option value="520">520 - Type 520: Custom 6 Channel Current Temperature & Humidity</option>
|
|
1093
1115
|
<option value="521">521 - Custom 3 Channel Light Sensor</option>
|
|
@@ -1113,7 +1135,7 @@
|
|
|
1113
1135
|
<label for="node-input-auto_config"><i class="icon-tag"></i> Auto Config</label>
|
|
1114
1136
|
<input class="section-control" type="checkbox" id="node-input-auto_config" value="1">
|
|
1115
1137
|
</div>
|
|
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>
|
|
1138
|
+
<div class="form-row ncd-dependent" data-sensor-4 data-sensor-12 data-sensor-21 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-109 data-sensor-110 data-sensor-111 data-sensor-112 data-sensor-114 data-sensor-118 data-sensor-120 data-sensor-180 data-sensor-181 data-sensor-202 data-sensor-217 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>
|
|
1117
1139
|
<hr>
|
|
1118
1140
|
<label for="node-input-on_the_fly_enable"><i class="icon-tag"></i> OTF Config*</label>
|
|
1119
1141
|
<input type="checkbox" id="node-input-on_the_fly_enable" value="1">
|
|
@@ -1577,7 +1599,7 @@
|
|
|
1577
1599
|
<p>This command will take 3 minutes to execute as the sensor calibrates. Do not reboot the sensor during this time. The configuration completed command through the UI is referring to the receipt and acknowledgement of the configuration packet.</p>
|
|
1578
1600
|
</div>
|
|
1579
1601
|
<div class="form-row">
|
|
1580
|
-
<label for="node-input-force_calibration_co2_auto_config"><i class="icon-tag"></i>
|
|
1602
|
+
<label for="node-input-force_calibration_co2_auto_config"><i class="icon-tag"></i>Active:</label>
|
|
1581
1603
|
<input type="checkbox" id="node-input-force_calibration_co2_auto_config" class="ncd-config-toggle" data-target-id="node-input-force_calibration_co2" value="1">
|
|
1582
1604
|
</div>
|
|
1583
1605
|
<div class="form-row">
|
|
@@ -1605,7 +1627,7 @@
|
|
|
1605
1627
|
<strong>Temperature Offset</strong>
|
|
1606
1628
|
</div>
|
|
1607
1629
|
<div>
|
|
1608
|
-
<label for="node-input-temperature_offset_44_active"><i class="icon-tag"></i>
|
|
1630
|
+
<label for="node-input-temperature_offset_44_active"><i class="icon-tag"></i>Active:</label>
|
|
1609
1631
|
<input type="checkbox" id="node-input-temperature_offset_44_active" class="ncd-config-toggle" data-target-id="node-input-temperature_offset_44" value="1">
|
|
1610
1632
|
</div>
|
|
1611
1633
|
<div>
|
|
@@ -1625,7 +1647,7 @@
|
|
|
1625
1647
|
Only applies to sensor with firmware version 24 and above.</p>
|
|
1626
1648
|
</div>
|
|
1627
1649
|
<div>
|
|
1628
|
-
<label for="node-input-acceleration_interrupt_threshold_84_active"><i class="icon-tag"></i>
|
|
1650
|
+
<label for="node-input-acceleration_interrupt_threshold_84_active"><i class="icon-tag"></i>Active:</label>
|
|
1629
1651
|
<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
1652
|
</div>
|
|
1631
1653
|
<div>
|
|
@@ -1641,11 +1663,10 @@
|
|
|
1641
1663
|
<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
1664
|
<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
1665
|
<p>Valid Input Range: 0 - 40<br>
|
|
1644
|
-
A value of 0 will disable this feature
|
|
1645
|
-
Only applies to sensor with firmware version 24 and above.</p>
|
|
1666
|
+
A value of 0 will disable this feature.</p>
|
|
1646
1667
|
</div>
|
|
1647
1668
|
<div>
|
|
1648
|
-
<label for="node-input-motion_detect_threshold_p1_110_active"><i class="icon-tag"></i>
|
|
1669
|
+
<label for="node-input-motion_detect_threshold_p1_110_active"><i class="icon-tag"></i>Active:</label>
|
|
1649
1670
|
<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
1671
|
</div>
|
|
1651
1672
|
<div>
|
|
@@ -1665,7 +1686,7 @@
|
|
|
1665
1686
|
Only applies to sensor with firmware version 24 and above.</p>
|
|
1666
1687
|
</div>
|
|
1667
1688
|
<div>
|
|
1668
|
-
<label for="node-input-motion_detect_threshold_p2_110_active"><i class="icon-tag"></i>
|
|
1689
|
+
<label for="node-input-motion_detect_threshold_p2_110_active"><i class="icon-tag"></i>Active:</label>
|
|
1669
1690
|
<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
1691
|
</div>
|
|
1671
1692
|
<div>
|
|
@@ -1699,7 +1720,7 @@
|
|
|
1699
1720
|
<p>Set the minimum acceleration value to make LED indicator red.<br>This will be an integer value that increments the threshold by 50mg. A value of 1 means turn the LED red if acceleration is above 50mg, 2 means 100mg, etc.<br>**Only applies if LED Alert Mode is set to Acceleration.</p>
|
|
1700
1721
|
</div>
|
|
1701
1722
|
<div>
|
|
1702
|
-
<label for="node-input-led_accelerometer_threshold_84_active"><i class="icon-tag"></i>
|
|
1723
|
+
<label for="node-input-led_accelerometer_threshold_84_active"><i class="icon-tag"></i>Active:</label>
|
|
1703
1724
|
<input type="checkbox" id="node-input-led_accelerometer_threshold_84_active" class="ncd-config-toggle" data-target-id="node-input-led_accelerometer_threshold_84" value="1">
|
|
1704
1725
|
</div>
|
|
1705
1726
|
<div>
|
|
@@ -1713,7 +1734,7 @@
|
|
|
1713
1734
|
<p>Set the minimum velocity value to make LED indicator red.<br>This will be an integer value that increments the threshold by 2mm/second. A value of 1 means turn the LED red if velocity is above 2mm/sec, 2 means 4mm/second, etc.<br>**Only applies if LED Alert Mode is set to Velocity.</p>
|
|
1714
1735
|
</div>
|
|
1715
1736
|
<div>
|
|
1716
|
-
<label for="node-input-led_velocity_threshold_84_active"><i class="icon-tag"></i>
|
|
1737
|
+
<label for="node-input-led_velocity_threshold_84_active"><i class="icon-tag"></i>Active:</label>
|
|
1717
1738
|
<input type="checkbox" id="node-input-led_velocity_threshold_84_active" class="ncd-config-toggle" data-target-id="node-input-led_velocity_threshold_84" value="1">
|
|
1718
1739
|
</div>
|
|
1719
1740
|
<div>
|
|
@@ -2208,6 +2229,8 @@
|
|
|
2208
2229
|
<input type="text" id="node-input-deadband_80">
|
|
2209
2230
|
</div>
|
|
2210
2231
|
</div>
|
|
2232
|
+
</div>
|
|
2233
|
+
<div class="ncd-dependent" data-sensor-80 data-sensor-81 data-sensor-82 data-sensor-84 data-sensor-101 data-sensor-180 data-sensor-181 data-sensor-519 data-sensor-537 data-sensor-538>
|
|
2211
2234
|
<div class="form-row ncd-active-check">
|
|
2212
2235
|
<strong>Configure Enabled Axes</strong>
|
|
2213
2236
|
<div>
|
|
@@ -2656,27 +2679,30 @@
|
|
|
2656
2679
|
</div>
|
|
2657
2680
|
</div>
|
|
2658
2681
|
<div class="form-row ncd-active-check">
|
|
2659
|
-
<strong>
|
|
2682
|
+
<strong>Data Transmission Interval</strong>
|
|
2683
|
+
<p class="caption">
|
|
2684
|
+
This setting dictates the interval at which the sensor will wake up and transmit its data. This interval works independently from any configured interrupt driven messages.
|
|
2685
|
+
</p>
|
|
2660
2686
|
<div>
|
|
2661
|
-
<label for="node-input-
|
|
2662
|
-
<input type="checkbox" id="node-input-
|
|
2687
|
+
<label for="node-input-transmission_interval_108_active">Active:</label>
|
|
2688
|
+
<input type="checkbox" id="node-input-transmission_interval_108_active" class="ncd-config-toggle" data-target-id="node-input-transmission_interval_108" value="1">
|
|
2663
2689
|
</div>
|
|
2664
2690
|
<div>
|
|
2665
|
-
<label for="node-input-
|
|
2666
|
-
<select id="node-input-
|
|
2691
|
+
<label for="node-input-transmission_interval_108"><i class="icon-tag"></i>Value:</label>
|
|
2692
|
+
<select id="node-input-transmission_interval_108">
|
|
2693
|
+
<option value="9">5 seconds</option>
|
|
2694
|
+
<option value="10">10 seconds</option>
|
|
2695
|
+
<option value="11">15 seconds</option>
|
|
2696
|
+
<option value="12">30 seconds</option>
|
|
2667
2697
|
<option value="0" selected>1 minute</option>
|
|
2668
2698
|
<option value="1">5 minutes</option>
|
|
2669
|
-
<option value="2">
|
|
2670
|
-
<option value="3">
|
|
2671
|
-
<option value="4">
|
|
2672
|
-
<option value="5">
|
|
2673
|
-
<option value="6">
|
|
2674
|
-
<option value="7">
|
|
2675
|
-
<option value="8">
|
|
2676
|
-
<option value="9">4 hours</option>
|
|
2677
|
-
<option value="10">6 hours</option>
|
|
2678
|
-
<option value="11">8 hours</option>
|
|
2679
|
-
<option value="12">12 hours</option>
|
|
2699
|
+
<option value="2">15 minutes</option>
|
|
2700
|
+
<option value="3">30 minutes</option>
|
|
2701
|
+
<option value="4">1 hour</option>
|
|
2702
|
+
<option value="5">2 hours</option>
|
|
2703
|
+
<option value="6">3 hours</option>
|
|
2704
|
+
<option value="7">6 hours</option>
|
|
2705
|
+
<option value="8">12 hours</option>
|
|
2680
2706
|
</select>
|
|
2681
2707
|
</div>
|
|
2682
2708
|
</div>
|
|
@@ -2782,6 +2808,25 @@
|
|
|
2782
2808
|
</select>
|
|
2783
2809
|
</div>
|
|
2784
2810
|
</div>
|
|
2811
|
+
<div class="form-row ncd-active-check">
|
|
2812
|
+
<strong>Enable Quality of Service</strong>
|
|
2813
|
+
<p class="caption">
|
|
2814
|
+
This setting only functions when a Destination Address is also configured into the sensor.<br>
|
|
2815
|
+
If QoS is enabled the sensor will wait for a receipt acknowledgement from the intended receiver before resuming sleep.<br>
|
|
2816
|
+
If no receipt acknowledgement is received the sensor will one more time to transmit the data.
|
|
2817
|
+
</p>
|
|
2818
|
+
<div>
|
|
2819
|
+
<label for="node-input-quality_of_service_108_active">Active:</label>
|
|
2820
|
+
<input type="checkbox" id="node-input-quality_of_service_108_active" class="ncd-config-toggle" data-target-id="node-input-quality_of_service_108" value="1">
|
|
2821
|
+
</div>
|
|
2822
|
+
<div>
|
|
2823
|
+
<label for="node-input-quality_of_service_108"><i class="icon-tag"></i>Value:</label>
|
|
2824
|
+
<select id="node-input-quality_of_service_108">
|
|
2825
|
+
<option value="0" selected>Disabled</option>
|
|
2826
|
+
<option value="1">Enabled</option>
|
|
2827
|
+
</select>
|
|
2828
|
+
</div>
|
|
2829
|
+
</div>
|
|
2785
2830
|
<div class="form-row ncd-active-check">
|
|
2786
2831
|
<strong>Set RTC</strong>
|
|
2787
2832
|
<div>
|
|
@@ -3166,6 +3211,23 @@
|
|
|
3166
3211
|
</select>
|
|
3167
3212
|
</div>
|
|
3168
3213
|
</div>
|
|
3214
|
+
<div class="form-row ncd-active-check">
|
|
3215
|
+
<strong>Set Max Raw Sample</strong>
|
|
3216
|
+
<div>
|
|
3217
|
+
<label for="node-input-max_raw_sample_110_active"><i class="icon-tag"></i>Active:</label>
|
|
3218
|
+
<input type="checkbox" id="node-input-max_raw_sample_110_active" class="ncd-config-toggle" data-target-id="node-input-max_raw_sample_110" value="1">
|
|
3219
|
+
</div>
|
|
3220
|
+
<div>
|
|
3221
|
+
<label for="node-input-max_raw_sample_110"><i class="icon-tag"></i>Value:</label>
|
|
3222
|
+
<select id="node-input-max_raw_sample_110">
|
|
3223
|
+
<option selected="selected" value="1024">1024 Samples</option>
|
|
3224
|
+
<option value="2048">2048 Samples</option>
|
|
3225
|
+
<option value="4096">4096 Samples</option>
|
|
3226
|
+
<option value="6400">6400 Samples</option>
|
|
3227
|
+
<option value="8100">8100 Samples</option>
|
|
3228
|
+
</select>
|
|
3229
|
+
</div>
|
|
3230
|
+
</div>
|
|
3169
3231
|
</div>
|
|
3170
3232
|
<div class="ncd-dependent" data-sensor-112>
|
|
3171
3233
|
<div class="form-row ncd-active-check">
|
|
@@ -3292,7 +3354,8 @@
|
|
|
3292
3354
|
<div class="ncd-dependent" data-sensor-4 data-sensor-12 data-sensor-23>
|
|
3293
3355
|
<hr>
|
|
3294
3356
|
<div class="form-row ncd-active-check">
|
|
3295
|
-
<strong>Set
|
|
3357
|
+
<strong>Set Thermocouple Type</strong>
|
|
3358
|
+
<p>Set the type of thermocouple being used, this device supports eight thermocouple types (e.g., K, J, T, N, S, E, B, R).</p>
|
|
3296
3359
|
<div>
|
|
3297
3360
|
<label for="node-input-thermocouple_type_23_active">Active:</label>
|
|
3298
3361
|
<input type="checkbox" id="node-input-thermocouple_type_23_active" class="ncd-config-toggle" data-target-id="node-input-thermocouple_type_23" value="1">
|
|
@@ -3312,7 +3375,19 @@
|
|
|
3312
3375
|
</div>
|
|
3313
3376
|
</div>
|
|
3314
3377
|
<div class="form-row ncd-active-check">
|
|
3315
|
-
<strong>Set
|
|
3378
|
+
<strong>Set Filter Level</strong>
|
|
3379
|
+
<p>The sensor applies the selected filter level by averaging multiple temperature readings over time.
|
|
3380
|
+
A higher filter level smooths out rapid fluctuations (noise) in the measurements, resulting in more stable data but with a slower response.
|
|
3381
|
+
A lower filter level offers quicker response but with potentially more noise in the data.<br>
|
|
3382
|
+
<br>
|
|
3383
|
+
0: Filter off (No filtering applied).<br>
|
|
3384
|
+
1: Minimum filter (Light filtering, minimal impact on noise).<br>
|
|
3385
|
+
2: Slightly higher filtering than level 1.<br>
|
|
3386
|
+
3: Moderate filtering.<br>
|
|
3387
|
+
4: Mid filter (Balanced filtering for most use cases).<br>
|
|
3388
|
+
5: Stronger filtering.<br>
|
|
3389
|
+
6: Higher filtering than level 5.<br>
|
|
3390
|
+
7: Maximum filter (Strongest filtering for noisy environments).</p>
|
|
3316
3391
|
<div>
|
|
3317
3392
|
<label for="node-input-filter_thermocouple_active">Active:</label>
|
|
3318
3393
|
<input type="checkbox" id="node-input-filter_thermocouple_active" class="ncd-config-toggle" data-target-id="node-input-filter_thermocouple" value="1">
|
|
@@ -3332,7 +3407,9 @@
|
|
|
3332
3407
|
</div>
|
|
3333
3408
|
</div>
|
|
3334
3409
|
<div class="form-row ncd-active-check">
|
|
3335
|
-
<strong>Set
|
|
3410
|
+
<strong>Set Cold Junction Resolution</strong>
|
|
3411
|
+
<p>The internal chip integrates an ambient temperature sensor which can be used to measure the thermocouple cold-junction temperature.
|
|
3412
|
+
The temperature resolution is user-selectable to 0.0625°C or 0.25°C resolutions and setting the resolution determines the temperature update rate.</p>
|
|
3336
3413
|
<div>
|
|
3337
3414
|
<label for="node-input-cold_junction_thermocouple_active">Active:</label>
|
|
3338
3415
|
<input type="checkbox" id="node-input-cold_junction_thermocouple_active" class="ncd-config-toggle" data-target-id="node-input-cold_junction_thermocouple" value="1">
|
|
@@ -3346,7 +3423,9 @@
|
|
|
3346
3423
|
</div>
|
|
3347
3424
|
</div>
|
|
3348
3425
|
<div class="form-row ncd-active-check">
|
|
3349
|
-
<strong>Set
|
|
3426
|
+
<strong>Set ADC Resolution</strong>
|
|
3427
|
+
<p>The ADC measurement resolution is selectable, which enables the user to choose faster conversion times with
|
|
3428
|
+
reduced resolution. This feature is useful to detect fast transient temperatures.</p>
|
|
3350
3429
|
<div>
|
|
3351
3430
|
<label for="node-input-sample_resolution_thermocouple_active">Active:</label>
|
|
3352
3431
|
<input type="checkbox" id="node-input-sample_resolution_thermocouple_active" class="ncd-config-toggle" data-target-id="node-input-sample_resolution_thermocouple" value="1">
|
|
@@ -3362,7 +3441,9 @@
|
|
|
3362
3441
|
</div>
|
|
3363
3442
|
</div>
|
|
3364
3443
|
<div class="form-row ncd-active-check">
|
|
3365
|
-
<strong>Set
|
|
3444
|
+
<strong>Set Number of Samples</strong>
|
|
3445
|
+
<p>Specifies how many temperature samples are taken per measurement, in addition, if the filter option is enabled, then the filter
|
|
3446
|
+
engine is applied to each temperature sample.</p>
|
|
3366
3447
|
<div>
|
|
3367
3448
|
<label for="node-input-number_of_samples_thermocouple_active">Active:</label>
|
|
3368
3449
|
<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">
|
|
@@ -3382,7 +3463,8 @@
|
|
|
3382
3463
|
</div>
|
|
3383
3464
|
</div>
|
|
3384
3465
|
<div class="form-row ncd-active-check">
|
|
3385
|
-
<strong>Set
|
|
3466
|
+
<strong>Set Measurement Type</strong>
|
|
3467
|
+
<p>Configures the sensor to measure either the hot-junction temperature, cold-junction temperature, or the differential between them.</p>
|
|
3386
3468
|
<div>
|
|
3387
3469
|
<label for="node-input-measurement_type_thermocouple_active">Active:</label>
|
|
3388
3470
|
<input type="checkbox" id="node-input-measurement_type_thermocouple_active" class="ncd-config-toggle" data-target-id="node-input-measurement_type_thermocouple" value="1">
|
|
@@ -3433,7 +3515,7 @@
|
|
|
3433
3515
|
</div>
|
|
3434
3516
|
</div>
|
|
3435
3517
|
</div>
|
|
3436
|
-
<div class="ncd-dependent" data-sensor-539 data-sensor-1010 data-sensor-1011>
|
|
3518
|
+
<div class="ncd-dependent" data-sensor-120 data-sensor-539 data-sensor-1010 data-sensor-1011>
|
|
3437
3519
|
<div class="form-row ncd-active-check">
|
|
3438
3520
|
<strong>Set Stay On Mode</strong>
|
|
3439
3521
|
<div>
|
|
@@ -3448,6 +3530,8 @@
|
|
|
3448
3530
|
</select>
|
|
3449
3531
|
</div>
|
|
3450
3532
|
</div>
|
|
3533
|
+
</div>
|
|
3534
|
+
<div class="ncd-dependent" data-sensor-539 data-sensor-1010 data-sensor-1011>
|
|
3451
3535
|
<div class="form-row ncd-active-check">
|
|
3452
3536
|
<strong>Set Baud Rate</strong>
|
|
3453
3537
|
<div>
|
|
@@ -4210,6 +4294,64 @@
|
|
|
4210
4294
|
</div>
|
|
4211
4295
|
</div>
|
|
4212
4296
|
</div>
|
|
4297
|
+
<div class="ncd-dependent" data-sensor-120>
|
|
4298
|
+
<div class="form-row ncd-active-check">
|
|
4299
|
+
<strong>Set Always On</strong>
|
|
4300
|
+
<div>
|
|
4301
|
+
<label for="node-input-always_on_120"><i class="icon-tag"></i>Active:</label>
|
|
4302
|
+
<input type="checkbox" id="node-input-always_on_120" value="1">
|
|
4303
|
+
</div>
|
|
4304
|
+
</div>
|
|
4305
|
+
<div class="form-row ncd-active-check">
|
|
4306
|
+
<strong>Sensor Reset</strong>
|
|
4307
|
+
<div>
|
|
4308
|
+
<label for="node-input-sensor_reset_120"><i class="icon-tag"></i>Active:</label>
|
|
4309
|
+
<input type="checkbox" id="node-input-sensor_reset_120" value="1">
|
|
4310
|
+
</div>
|
|
4311
|
+
</div>
|
|
4312
|
+
<div class="form-row ncd-active-check">
|
|
4313
|
+
<strong>Set Sensor Calibration</strong>
|
|
4314
|
+
<div>
|
|
4315
|
+
<label for="node-input-sensor_calib_120"><i class="icon-tag"></i>Active:</label>
|
|
4316
|
+
<input type="checkbox" id="node-input-sensor_calib_120" value="1">
|
|
4317
|
+
</div>
|
|
4318
|
+
</div>
|
|
4319
|
+
<div class="form-row ncd-active-check">
|
|
4320
|
+
<div>
|
|
4321
|
+
<strong>Set Alert Threshold</strong>
|
|
4322
|
+
</div>
|
|
4323
|
+
<div>
|
|
4324
|
+
<label for="node-input-alert_threshold_120_active"><i class="icon-tag"></i>Active:</label>
|
|
4325
|
+
<input type="checkbox" id="node-input-alert_threshold_120_active" class="ncd-config-toggle" data-target-id="node-input-alert_threshold_120" value="1">
|
|
4326
|
+
</div>
|
|
4327
|
+
<div>
|
|
4328
|
+
<label for="node-input-alert_threshold_120"><i class="icon-tag"></i> Value</label>
|
|
4329
|
+
<input type="text" id="node-input-alert_threshold_120" placeholder="0" value="0">
|
|
4330
|
+
</div>
|
|
4331
|
+
</div>
|
|
4332
|
+
</div>
|
|
4333
|
+
<div class="ncd-dependent" data-sensor-217>
|
|
4334
|
+
<div class="form-row ncd-active-check">
|
|
4335
|
+
<strong>Tare The Scale</strong>
|
|
4336
|
+
<div>
|
|
4337
|
+
<label for="node-input-tare_the_scale_217"><i class="icon-tag"></i>Active:</label>
|
|
4338
|
+
<input type="checkbox" id="node-input-tare_the_scale_217" value="1">
|
|
4339
|
+
</div>
|
|
4340
|
+
</div>
|
|
4341
|
+
<div class="form-row ncd-active-check">
|
|
4342
|
+
<div>
|
|
4343
|
+
<strong>Set Weight Calibration</strong>
|
|
4344
|
+
</div>
|
|
4345
|
+
<div>
|
|
4346
|
+
<label for="node-input-weight_calib_217_active"><i class="icon-tag"></i>Active:</label>
|
|
4347
|
+
<input type="checkbox" id="node-input-weight_calib_217_active" class="ncd-config-toggle" data-target-id="node-input-weight_calib_217" value="1">
|
|
4348
|
+
</div>
|
|
4349
|
+
<div>
|
|
4350
|
+
<label for="node-input-weight_calib_217"><i class="icon-tag"></i> Value</label>
|
|
4351
|
+
<input type="text" id="node-input-weight_calib_217" placeholder="0" value="0">
|
|
4352
|
+
</div>
|
|
4353
|
+
</div>
|
|
4354
|
+
</div>
|
|
4213
4355
|
</div>
|
|
4214
4356
|
</div>
|
|
4215
4357
|
</script>
|