1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
|
-- EDS MIB file for all products
-- Larry Wood 12/15/11 v1.2
-- Added device types EDS0070, 71, 80, 82, 83, 85, 90, 91, 92
-- Removed range value in text for TrapHighThreshold, TrapLowThreshold and TrapHysteresis
--
-- Larry Wood 12/28/11 v1.3
-- Updated device types EDS0090, 91, 92
--
-- Larry Wood 4/9/12 v1.5
-- Added nodes for Wireless Trap table
--
-- Larry Wood 6/26/12 v1.6
-- Added DS28EA00
--
-- Larry Wood 8/20/12 v1.7
-- Added EDS0050
--
-- Larry Wood 11/29/12 v1.8
-- Added EDS2030
--
EDS-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
DisplayString
FROM RFC1213-MIB;
--Embedded Data Systems, Inc. enterprise OID
edsMain OBJECT IDENTIFIER ::= { enterprises 31440 }
--Enterprise company branch.
edsEnterprise OBJECT IDENTIFIER ::= { edsMain 1 }
eCompanyName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Company owner of this enterprise number"
::= { edsEnterprise 1 }
eProductName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Name of this product"
::= { edsEnterprise 2 }
eMIBVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Version of the MIB file in the product"
::= { edsEnterprise 3 }
eFirmwareVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Firmware version"
::= { edsEnterprise 4 }
eFirmwareDate OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Date of firmware"
::= { edsEnterprise 5 }
--device trap table
dTrap OBJECT IDENTIFIER ::= { edsMain 2 }
dTrapTable OBJECT-TYPE
SYNTAX SEQUENCE OF dTrapEntry
ACCESS not-accessible
STATUS mandatory
::= { dTrap 1 }
dTrapEntry OBJECT-TYPE
SYNTAX dTrapEntry
ACCESS not-accessible
STATUS mandatory
INDEX {
dTrapIndex
}
::= { dTrapTable 1 }
dTrapEntry ::= SEQUENCE {
dTrapIndex
INTEGER,
dTrapEnable
INTEGER,
dTrapIP
IpAddress,
dTrapCommunity
INTEGER
}
dTrapIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Index of table."
::= { dTrapEntry 1 }
dTrapEnable OBJECT-TYPE
SYNTAX INTEGER (0..1)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Zero disables the trap, one enables it."
::= { dTrapEntry 2 }
dTrapIP OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION "Address to send trap to."
::= { dTrapEntry 3 }
dTrapCommunity OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION "Community string to send with trap message."
::= { dTrapEntry 4 }
--dTrapDeviceTable
dTrapDeviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF dTrapDeviceEntry
ACCESS not-accessible
STATUS mandatory
::= { dTrap 2 }
dTrapDeviceEntry OBJECT-TYPE
SYNTAX dTrapDeviceEntry
ACCESS not-accessible
STATUS mandatory
INDEX {
dTrapDeviceIndex
}
::= { dTrapDeviceTable 1 }
dTrapDeviceEntry ::= SEQUENCE {
dTrapDeviceIndex
INTEGER,
dTrapDeviceEnable
INTEGER,
dTrapDeviceSendPointer
INTEGER,
dTrapDeviceROM
OCTET STRING,
dTrapDeviceVariable
INTEGER,
dTrapDeviceHighThreshold
DisplayString,
dTrapDeviceLowThreshold
DisplayString,
dTrapDeviceHysteresis
DisplayString
}
dTrapDeviceIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Index of table. Traps are sent with this OID followed by the index
number of the table entry that generated the trap. For example, if
the values at index 5 of this table generated a trap, the name of the
trap would be .iso.org.dod.internet.private.enterprises.edsMain.dTrap.
dTrapDeviceTable.dTrapDeviceEntry.dTrapDeviceIndex.5. The numeric
value is 1.3.6.1.4.1.31440.2.2.1.1.5. An integer value is sent with the
trap, which indicates what state change caused the trap. Using the
dTrapDeviceHighThreshold, dTrapDeviceLowThreshold and
dTrapDeviceHysteresis values, 3 windows are created. Transitions between
these windows generates a trap. The integer value indicates which
transition caused the trap as follows:
1 -> middle to high window transition
2 -> high to middle window transition
3 -> middle to low window transition
4 -> low to middle window transition
Note the following when programming traps:
1) Programming the HighThreshold lower than the LowThreshold is
invalid and will disable trap generation.
2) dTrapDeviceHysteresis values are not checked for validity, use them
with caution.
3) A trap must be enabled to be sent.
4) The dTrapDeviceROM must be set to an active device or a trap
will not be sent.
5) The health of the 1-wire device must be greater than 0 or no trap will
be sent.
6) The dTrapDeviceVariable must be valid. For exmaple, the DS18S20 has 3
variables as follows: Temperature, UserByte1 and UserByte2. These are
numbered 0, 1 and 2 respectively. A setting of 3 or above is invalid.
7) The dTrapTable must be programmed correctly for traps to be sent.
The respective table entry must be enabled and have a valid IP address.
Community strings are not used by the SNMP server."
::= { dTrapDeviceEntry 1 }
dTrapDeviceEnable OBJECT-TYPE
SYNTAX INTEGER (0..1)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Zero disables the trap, one enables it."
::= { dTrapDeviceEntry 2 }
dTrapDeviceSendPointer OBJECT-TYPE
SYNTAX INTEGER (0..1)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Indicates which entry in the Trap Table to use to determine where
to send the trap. The Trap Table contains the destination IP address."
::= { dTrapDeviceEntry 3 }
dTrapDeviceROM OBJECT-TYPE
SYNTAX DisplayString(SIZE(16))
ACCESS read-write
STATUS mandatory
DESCRIPTION "Device ROM code to base sending trap message on."
::= { dTrapDeviceEntry 4 }
dTrapDeviceVariable OBJECT-TYPE
SYNTAX INTEGER (0..99)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Number of the variable to reference, as listed in the Devices section
of this MIB. For example, the DS2406 has 9 items, which would be numbered 0 - 8.
So if dTrapDeviceVariable were set to 0 it would refer to owDS2406PIOAFlipFlop,
if it were set to 3 it would refer to owDS2406PIOBLevel."
::= { dTrapDeviceEntry 5 }
dTrapDeviceHighThreshold OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION "A trap will be generated when the variable is greater than this value or
it is less than or equal to this value - dTrapDeviceHysteresis. This number
may be positive or negative and may contain a decimal point."
::= { dTrapDeviceEntry 6 }
dTrapDeviceLowThreshold OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION "A trap will be generated when the variable is less than this value or
it is greater than or equal to this value + dTrapDeviceHysteresis. This number
may be positive or negative and may contain a decimal point."
::= { dTrapDeviceEntry 7 }
dTrapDeviceHysteresis OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION "This value is used to limit repeated trap sends due to a value hovering around
a threshold. If it is not used it should be set to zero. This number may be positive
or negative and may contain a decimal point."
::= { dTrapDeviceEntry 8 }
--1-wire devices branch.
owDevices OBJECT IDENTIFIER ::= { edsMain 10 }
--Device type table (conceptual).
owDeviceTypes OBJECT IDENTIFIER ::= { owDevices 1 }
owNone OBJECT IDENTIFIER ::= { owDeviceTypes 0 }
owUnknown OBJECT IDENTIFIER ::= { owDeviceTypes 1 }
owDS2406 OBJECT IDENTIFIER ::= { owDeviceTypes 2 }
owDS18B20 OBJECT IDENTIFIER ::= { owDeviceTypes 3 }
owDS18S20 OBJECT IDENTIFIER ::= { owDeviceTypes 4 }
owDS2438 OBJECT IDENTIFIER ::= { owDeviceTypes 5 }
owDS2423 OBJECT IDENTIFIER ::= { owDeviceTypes 6 }
owDS2408 OBJECT IDENTIFIER ::= { owDeviceTypes 7 }
owDS2450 OBJECT IDENTIFIER ::= { owDeviceTypes 8 }
owEDS0064 OBJECT IDENTIFIER ::= { owDeviceTypes 9 }
owEDS0065 OBJECT IDENTIFIER ::= { owDeviceTypes 10 }
owEDS0066 OBJECT IDENTIFIER ::= { owDeviceTypes 11 }
owEDS0067 OBJECT IDENTIFIER ::= { owDeviceTypes 12 }
owEDS0068 OBJECT IDENTIFIER ::= { owDeviceTypes 13 }
owEDS0069 OBJECT IDENTIFIER ::= { owDeviceTypes 14 }
owEDS0070 OBJECT IDENTIFIER ::= { owDeviceTypes 15 }
owEDS0071 OBJECT IDENTIFIER ::= { owDeviceTypes 16 }
owEDS0080 OBJECT IDENTIFIER ::= { owDeviceTypes 17 }
owEDS0082 OBJECT IDENTIFIER ::= { owDeviceTypes 18 }
owEDS0083 OBJECT IDENTIFIER ::= { owDeviceTypes 19 }
owEDS0085 OBJECT IDENTIFIER ::= { owDeviceTypes 20 }
owEDS0090 OBJECT IDENTIFIER ::= { owDeviceTypes 21 }
owEDS0091 OBJECT IDENTIFIER ::= { owDeviceTypes 22 }
owEDS0092 OBJECT IDENTIFIER ::= { owDeviceTypes 23 }
owDS28EA00 OBJECT IDENTIFIER ::= { owDeviceTypes 24 }
owEDS0050 OBJECT IDENTIFIER ::= { owDeviceTypes 25 }
owDeviceInfo OBJECT IDENTIFIER ::= { owDevices 2 }
owDeviceNumActive OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of currently active 1-wire devices. A device
is active if it's health is non-zero."
::= { owDeviceInfo 1 }
owDeviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF OwDeviceEntry
ACCESS not-accessible
STATUS mandatory
::= { owDevices 3 }
owDeviceEntry OBJECT-TYPE
SYNTAX OwDeviceEntry
ACCESS not-accessible
STATUS mandatory
INDEX {
owDeviceIndex
}
::= { owDeviceTable 1 }
OwDeviceEntry ::= SEQUENCE {
owDeviceIndex
INTEGER,
owDeviceType
INTEGER,
owDeviceName
DisplayString,
owDeviceDescription
DisplayString,
owDeviceFamily
INTEGER,
owDeviceROM
OCTET STRING,
owDeviceHealth
INTEGER
}
owDeviceIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Index of table."
::= { owDeviceEntry 1 }
owDeviceType OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "An indication of the device type. This is the
last OID number to the owDeviceTypes group pointing
to the name of the device. The corresponding
device table will contain the specific information
from the device. For example: if this entry is
2 (owDS2406) then the table owDS2406Table, at
the appropriate index, will contain the data
from the device."
::= { owDeviceEntry 2 }
owDeviceName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Text description of the device."
::= { owDeviceEntry 3 }
owDeviceDescription OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Text description of the device."
::= { owDeviceEntry 4 }
owDeviceFamily OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Family number as read from 1-wire device."
::= { owDeviceEntry 5 }
owDeviceROM OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Entire ROM code as read from 1-wire device (includes
family number and CRC). Always 16 bytes long."
::= { owDeviceEntry 6 }
owDeviceHealth OBJECT-TYPE
SYNTAX INTEGER (0..8)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Health of device. Ranges between 0 and 8 where
0 worst case and 8 is best case. Incremented
every time device responds to a search, decremented
if it does not respond."
::= { owDeviceEntry 7 }
owDS2406Table OBJECT-TYPE
SYNTAX SEQUENCE OF OwDS2406Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for DS2406 (dual addressable switch plus
1K bit memory)."
::= { owDevices 4 }
owDS2406Entry OBJECT-TYPE
SYNTAX OwDS2406Entry
ACCESS not-accessible
STATUS mandatory
INDEX {
owDeviceIndex
}
::= { owDS2406Table 1 }
OwDS2406Entry ::= SEQUENCE {
owDS2406PIOALevel
INTEGER,
owDS2406PIOBLevel
INTEGER,
owDS2406PIOAFlipFlop
INTEGER,
owDS2406PIOBFlipFlop
INTEGER,
owDS2406PIOAActivityLatch
INTEGER,
owDS2406PIOBActivityLatch
INTEGER,
owDS2406NumChnls
INTEGER,
owDS2406PwrSupply
INTEGER,
owDS2406ActivityLatchReset
INTEGER
}
owDS2406PIOALevel OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "PIO-A logic level on pin. If PIO-A flip flop is
low, this input will always read low."
::= { owDS2406Entry 1 }
owDS2406PIOBLevel OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "PIO-B logic level on pin. If PIO-B flip flop is
low, this input will always read low."
::= { owDS2406Entry 2 }
owDS2406PIOAFlipFlop OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "DS2406 PIO-A Flip Flop. Sets output state of the
FF. The output is open collector, so the FF must
be high (1) to be able to read a pin state of
low (0)."
::= { owDS2406Entry 3 }
owDS2406PIOBFlipFlop OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "DS2406 PIO-B Flip Flop. Sets output state of the
FF. The output is open collector, so the FF must
be high (1) to be able to read a pin state of
low (0)."
::= { owDS2406Entry 4 }
owDS2406PIOAActivityLatch OBJECT-TYPE
SYNTAX INTEGER {
noActivity( 0 ),
yesActivity( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "High (1) if the pin state had activity. Reset
by writing to activity latch reset."
::= { owDS2406Entry 5 }
owDS2406PIOBActivityLatch OBJECT-TYPE
SYNTAX INTEGER {
noActivity( 0 ),
yesActivity( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "High (1) if the pin state had activity. Reset
by writing to activity latch reset."
::= { owDS2406Entry 6 }
owDS2406NumChnls OBJECT-TYPE
SYNTAX INTEGER {
pioAonly( 0 ),
pioAandB( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of PIO channels the device supports. PIO-A
only is 0, PIO-A and PIO-B is 1."
::= { owDS2406Entry 7 }
owDS2406PwrSupply OBJECT-TYPE
SYNTAX INTEGER {
pwrParasite( 0 ),
pwrExternal( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Source of power for device. 0 is parasite powered,
1 is externally powered."
::= { owDS2406Entry 8 }
owDS2406ActivityLatchReset OBJECT-TYPE
SYNTAX INTEGER {
noReset( 0 ),
yesReset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity latch reset is used to reset both PIO-A
and PIO-B activity latch. Send 1 to reset the
latch. Always reads 0."
::= { owDS2406Entry 9 }
owDS18B20Table OBJECT-TYPE
SYNTAX SEQUENCE OF OwDS18B20Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for DS18B20 (programmable resolution 1-wire
digital thermometer)."
::= { owDevices 5 }
owDS18B20Entry OBJECT-TYPE
SYNTAX OwDS18B20Entry
ACCESS not-accessible
STATUS mandatory
INDEX {
owDeviceIndex
}
::= { owDS18B20Table 1 }
OwDS18B20Entry ::= SEQUENCE {
owDS18B20Temperature
DisplayString,
owDS18B20UserByte1
INTEGER,
owDS18B20UserByte2
INTEGER,
owDS18B20Resolution
INTEGER,
owDS18B20PwrSupply
INTEGER
}
owDS18B20Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Current temperature from device, desplayed as
a string with decimal point. Required since MIB's
cannot contain floating point numbers."
::= { owDS18B20Entry 1 }
owDS18B20UserByte1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "User byte 1 as read from EEPROM."
::= { owDS18B20Entry 2 }
owDS18B20UserByte2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "User byte 2 as read from EEPROM."
::= { owDS18B20Entry 3 }
owDS18B20Resolution OBJECT-TYPE
SYNTAX INTEGER {
nineBits( 9 ),
tenBits( 10 ),
elevenBits( 11 ),
twelveBits( 12 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Resolution of temperature reading, can be 9, 10,
11 or 12 bits. Default is 12 bits. 0 is 9 bits,
1 is 10 bits, 2 is 11 bits and 3 is 12 bits."
::= { owDS18B20Entry 4 }
owDS18B20PwrSupply OBJECT-TYPE
SYNTAX INTEGER {
parasitePower( 0 ),
externalPower( 255 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Power source. Parasite or external. Zero is parasite."
::= { owDS18B20Entry 5 }
owDS18S20Table OBJECT-TYPE
SYNTAX SEQUENCE OF OwDS18S20Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for DS18S20 device data."
::= { owDevices 6 }
owDS18S20Entry OBJECT-TYPE
SYNTAX OwDS18S20Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owDS18S20Table 1 }
OwDS18S20Entry ::= SEQUENCE {
owDS18S20Temperature
DisplayString,
owDS18S20UserByte1
INTEGER,
owDS18S20UserByte2
INTEGER
}
owDS18S20Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Latest temperature reading, in degrees centigrade."
::= { owDS18S20Entry 1 }
owDS18S20UserByte1 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "User byte from device EEPROM."
::= { owDS18S20Entry 2 }
owDS18S20UserByte2 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "User byte from device EEPROM."
::= { owDS18S20Entry 3 }
-- DS2423 TABLE
owDS2423Table OBJECT-TYPE
SYNTAX SEQUENCE OF OwDS2423Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for DS2423 device data."
::= { owDevices 7 }
owDS2423Entry OBJECT-TYPE
SYNTAX OwDS2423Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owDS2423Table 1 }
OwDS2423Entry ::= SEQUENCE {
owDS2423CounterA
COUNTER32,
owDS2423CounterB
COUNTER32
}
owDS2423CounterA OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter A value."
::= { owDS2423Entry 1 }
owDS2423CounterB OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter B value."
::= { owDS2423Entry 2 }
-- DS2438 TABLE
owDS2438Table OBJECT-TYPE
SYNTAX SEQUENCE OF OwDS2438Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for DS2438 device data."
::= { owDevices 8 }
owDS2438Entry OBJECT-TYPE
SYNTAX OwDS2438Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owDS2438Table 1 }
OwDS2438Entry ::= SEQUENCE {
owDS2438Temperature
DisplayString,
owDS2438SupplyVoltage
DisplayString,
owDS2438Current
DisplayString,
owDS2438PinVoltage
DisplayString,
owDS2438Humidity
DisplayString
}
owDS2438Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature."
::= { owDS2438Entry 1 }
owDS2438SupplyVoltage OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Voltage of the power supply."
::= { owDS2438Entry 2 }
owDS2438PinVoltage OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Voltage at Pin Vad (pin 4)."
::= { owDS2438Entry 3 }
owDS2438Current OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Voltage between the current pins."
::= { owDS2438Entry 4 }
owDS2438Humidity OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Calculated humidity."
::= { owDS2438Entry 5 }
-- DS2408 TABLE
owDS2408Table OBJECT-TYPE
SYNTAX SEQUENCE OF OwDS2408Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for DS2408 (8-channel addressable switch)."
::= { owDevices 9 }
owDS2408Entry OBJECT-TYPE
SYNTAX owDS2408Entry
ACCESS not-accessible
STATUS mandatory
INDEX {
owDeviceIndex
}
::= { owDS2408Table 1 }
owDS2408Entry ::= SEQUENCE {
owDS2408PIOLogicState
INTEGER,
owDS2408PIOOutputLatchState
INTEGER,
owDS2408PIOActivityLatchState
INTEGER,
owDS2408RSTZConfiguration
INTEGER,
owDS2408PowerOnResetLatch
INTEGER,
owDS2408VCCPowerStatus
INTEGER
}
owDS2408PIOLogicState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Logic level on the 8 IO pins."
::= { owDS2408Entry 1 }
owDS2408PIOOutputLatchState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output latch states. Sets output state of the
FFs. The output is open collector, so the FF must
be high (1) to be able to read a pin state of
low (0)."
::= { owDS2408Entry 2 }
owDS2408PIOActivityLatchState OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 255 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "High (1) if the pin state had activity. Reset
by writing to activity latch reset."
::= { owDS2408Entry 3 }
owDS2408RSTZConfiguration OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Configures the RSTZ pin as a /RSTZ input (set to 0)
or a /STRB output (set to 1)."
::= { owDS2408Entry 4 }
owDS2408PowerOnResetLatch OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Set high (1) with a power on reset. Reset
by writing to a 0."
::= { owDS2408Entry 5 }
owDS2408VCCPowerStatus OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "High (1) if the VCC pin is connected to power,
low (0) otherwise."
::= { owDS2408Entry 6 }
-- DS2450 TABLE
owDS2450Table OBJECT-TYPE
SYNTAX SEQUENCE OF OwDS2450Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for DS2450 (8-channel addressable switch)."
::= { owDevices 10 }
owDS2450Entry OBJECT-TYPE
SYNTAX owDS2450Entry
ACCESS not-accessible
STATUS mandatory
INDEX {
owDeviceIndex
}
::= { owDS2450Table 1 }
owDS2450Entry ::= SEQUENCE {
owDS2450ChannelAConversionValue
DisplayString,
owDS2450ChannelAConversionResolution
INTEGER,
owDS2450ChannelAConversionRange
INTEGER,
owDS2450ChannelAOutputEnable
INTEGER,
owDS2450ChannelAOutputControl
INTEGER,
owDS2450ChannelBConversionValue
DisplayString,
owDS2450ChannelBConversionResolution
INTEGER,
owDS2450ChannelBConversionRange
INTEGER,
owDS2450ChannelBOutputEnable
INTEGER,
owDS2450ChannelBOutputControl
INTEGER,
owDS2450ChannelCConversionValue
DisplayString,
owDS2450ChannelCConversionResolution
INTEGER,
owDS2450ChannelCConversionRange
INTEGER,
owDS2450ChannelCOutputEnable
INTEGER,
owDS2450ChannelCOutputControl
INTEGER,
owDS2450ChannelDConversionValue
DisplayString,
owDS2450ChannelDConversionResolution
INTEGER,
owDS2450ChannelDConversionRange
INTEGER,
owDS2450ChannelDOutputEnable
INTEGER,
owDS2450ChannelDOutputControl
INTEGER,
owDS2450PowerOnReset
INTEGER,
owDS2450VCCControl
INTEGER
}
owDS2450ChannelAConversionValue OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Conversion value of the channel, in volts."
::= { owDS2450Entry 1 }
owDS2450ChannelAConversionResolution OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Conversion resolution of the channel. Can be set
between 1 and 16."
::= { owDS2450Entry 2 }
owDS2450ChannelAConversionRange OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "If high (1), the maximum voltage that can be
measured is 5.10, low (0) sets the maximum voltage
to 2.55."
::= { owDS2450Entry 3 }
owDS2450ChannelAOutputEnable OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "A setting of 1 enables the output transistor, use
ChannelXOutputControl to turn the transistor on / off."
::= { owDS2450Entry 4 }
owDS2450ChannelAOutputControl OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Set to low (0) to turn on the output transistor. Has
no effect if ChannelXOutputEnable is low (0)."
::= { owDS2450Entry 5 }
owDS2450ChannelBConversionValue OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Conversion value of the channel, in volts."
::= { owDS2450Entry 6 }
owDS2450ChannelBConversionResolution OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Conversion resolution of the channel. Can be set
between 1 and 16."
::= { owDS2450Entry 7 }
owDS2450ChannelBConversionRange OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "If high (1), the maximum voltage that can be
measured is 5.10, low (0) sets the maximum voltage
to 2.55."
::= { owDS2450Entry 8 }
owDS2450ChannelBOutputEnable OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "A setting of 1 enables the output transistor, use
ChannelXOutputControl to turn the transistor on / off."
::= { owDS2450Entry 9 }
owDS2450ChannelBOutputControl OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Set to low (0) to turn on the output transistor. Has
no effect if ChannelXOutputEnable is low (0)."
::= { owDS2450Entry 10 }
owDS2450ChannelCConversionValue OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Conversion value of the channel, in volts."
::= { owDS2450Entry 11 }
owDS2450ChannelCConversionResolution OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Conversion resolution of the channel. Can be set
between 1 and 16."
::= { owDS2450Entry 12 }
owDS2450ChannelCConversionRange OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "If high (1), the maximum voltage that can be
measured is 5.10, low (0) sets the maximum voltage
to 2.55."
::= { owDS2450Entry 13 }
owDS2450ChannelCOutputEnable OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "A setting of 1 enables the output transistor, use
ChannelXOutputControl to turn the transistor on / off."
::= { owDS2450Entry 14 }
owDS2450ChannelCOutputControl OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Set to low (0) to turn on the output transistor. Has
no effect if ChannelXOutputEnable is low (0)."
::= { owDS2450Entry 15 }
owDS2450ChannelDConversionValue OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Conversion value of the channel, in volts."
::= { owDS2450Entry 16 }
owDS2450ChannelDConversionResolution OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Conversion resolution of the channel. Can be set
between 1 and 16."
::= { owDS2450Entry 17 }
owDS2450ChannelDConversionRange OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "If high (1), the maximum voltage that can be
measured is 5.10, low (0) sets the maximum voltage
to 2.55."
::= { owDS2450Entry 18 }
owDS2450ChannelDOutputEnable OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "A setting of 1 enables the output transistor, use
ChannelXOutputControl to turn the transistor on / off."
::= { owDS2450Entry 19 }
owDS2450ChannelDOutputControl OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Set to low (0) to turn on the output transistor. Has
no effect if ChannelXOutputEnable is low (0)."
::= { owDS2450Entry 20 }
owDS2450PowerOnReset OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Set high (1) with a power on reset. Reset
by writing any value."
::= { owDS2450Entry 21 }
owDS2450VCCControl OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Set high (1) if the VCC pin is connected to power,
set low (0) otherwise."
::= { owDS2450Entry 22 }
-- EDS0064 TABLE
owEDS0064Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0064Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0064 device data (temperature)"
::= { owDevices 11 }
owEDS0064Entry OBJECT-TYPE
SYNTAX owEDS0064Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0064Table 1 }
owEDS0064Entry ::= SEQUENCE {
owEDS0064Temperature
DisplayString,
owEDS0064Counter
COUNTER32
}
owEDS0064Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature."
::= { owEDS0064Entry 1 }
owEDS0064Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0064Entry 2 }
-- EDS0065 TABLE
owEDS0065Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0065Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0065 device data (temperature and humiditiy)."
::= { owDevices 12 }
owEDS0065Entry OBJECT-TYPE
SYNTAX owEDS0065Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0065Table 1 }
owEDS0065Entry ::= SEQUENCE {
owEDS0065Temperature
DisplayString,
owEDS0065Humidity
DisplayString,
owEDS0065DewPoint
DisplayString,
owEDS0065Humidex
DisplayString,
owEDS0065HeatIndex
DisplayString,
owEDS0065Counter
COUNTER32
}
owEDS0065Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature."
::= { owEDS0065Entry 1 }
owEDS0065Humidity OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Humidity."
::= { owEDS0065Entry 2 }
owEDS0065DewPoint OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "DewPoint."
::= { owEDS0065Entry 3 }
owEDS0065Humidex OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Humidex."
::= { owEDS0065Entry 4 }
owEDS0065HeatIndex OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Heat Index."
::= { owEDS0065Entry 5 }
owEDS0065Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0065Entry 6 }
-- EDS0066 TABLE
owEDS0066Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0066Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0001 device data (temperature and barometric pressure)."
::= { owDevices 13 }
owEDS0066Entry OBJECT-TYPE
SYNTAX owEDS0066Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0066Table 1 }
owEDS0066Entry ::= SEQUENCE {
owEDS0066Temperature
DisplayString,
owEDS0066BarometricPressureMb
DisplayString,
owEDS0066BarometricPressureHg
DisplayString,
owEDS0066Counter
COUNTER32
}
owEDS0066Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature."
::= { owEDS0066Entry 1 }
owEDS0066BarometricPressureMb OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Barometric Pressure in Millibars."
::= { owEDS0066Entry 2 }
owEDS0066BarometricPressureHg OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Barometric Pressure in Inches of Mercury."
::= { owEDS0066Entry 3 }
owEDS0066Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0066Entry 4 }
-- EDS0067 TABLE
owEDS0067Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0067Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0067 device data (temperature and light)."
::= { owDevices 14 }
owEDS0067Entry OBJECT-TYPE
SYNTAX owEDS0067Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0067Table 1 }
owEDS0067Entry ::= SEQUENCE {
owEDS0067Temperature
DisplayString,
owEDS0067Light,
DisplayString,
owEDS0067Counter
COUNTER32
}
owEDS0067Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature."
::= { owEDS0067Entry 1 }
owEDS0067Light OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Light."
::= { owEDS0067Entry 2 }
owEDS0067Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0067Entry 3 }
-- EDS0068 TABLE
owEDS0068Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0068Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0068 device data (temperature, humidity, barometric pressure and light)."
::= { owDevices 15 }
owEDS0068Entry OBJECT-TYPE
SYNTAX owEDS0068Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0068Table 1 }
owEDS0068Entry ::= SEQUENCE {
owEDS0068Temperature
DisplayString,
owEDS0068Humidity
DisplayString,
owEDS0068DewPoint
DisplayString,
owEDS0068Humidex
DisplayString,
owEDS0068HeatIndex
DisplayString,
owEDS0068BarometricPressureMb
DisplayString,
owEDS0068BarometricPressureHg
DisplayString,
owEDS0068Light,
DisplayString,
owEDS0068Counter
COUNTER32
}
owEDS0068Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature."
::= { owEDS0068Entry 1 }
owEDS0068Humidity OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Humidity."
::= { owEDS0068Entry 2 }
owEDS0068DewPoint OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "DewPoint."
::= { owEDS0068Entry 3 }
owEDS0068Humidex OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Humidex."
::= { owEDS0068Entry 4 }
owEDS0068HeatIndex OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Heat Index."
::= { owEDS0068Entry 5 }
owEDS0068BarometricPressureMb OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Barometric Pressure in Millibars."
::= { owEDS0068Entry 6 }
owEDS0068BarometricPressureHg OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Barometric Pressure in Inches of Mercury."
::= { owEDS0068Entry 7 }
owEDS0068Light OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Light."
::= { owEDS0068Entry 8 }
owEDS0068Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0068Entry 9 }
-- EDS0069 TABLE - motion
owEDS0069Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0069Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0069 device data (temperature and motion)."
::= { owDevices 16 }
owEDS0069Entry OBJECT-TYPE
SYNTAX owEDS0069Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0069Table 1 }
owEDS0069Entry ::= SEQUENCE {
owEDS0069Temperature
DisplayString,
owEDS0069Motion
DisplayString,
owEDS0069Counter
COUNTER32
}
owEDS0069Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature."
::= { owEDS0069Entry 1 }
owEDS0069Motion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Motion counter."
::= { owEDS0069Entry 2 }
owEDS0069Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0069Entry 3 }
-- EDS0070 TABLE - vibration
owEDS0070Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0070Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0070 device data (vibration)."
::= { owDevices 17 }
owEDS0070Entry OBJECT-TYPE
SYNTAX owEDS0070Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0070Table 1 }
owEDS0070Entry ::= SEQUENCE {
owEDS0070VibrationInstant
INTEGER,
owEDS0070VibrationPeak
INTEGER,
owEDS0070VibrationMax
INTEGER,
owEDS0070VibrationMin
INTEGER,
owEDS0070Counter
COUNTER32
}
owEDS0070VibrationInstant OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 65535 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Vibration, instant value."
::= { owEDS0070Entry 1 }
owEDS0070VibrationPeak OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 65535 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Vibration, instant value."
::= { owEDS0070Entry 2 }
owEDS0070VibrationMax OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 65535 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Vibration, instant value."
::= { owEDS0070Entry 3 }
owEDS0070VibrationMin OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 65535 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Vibration, instant value."
::= { owEDS0070Entry 4 }
owEDS0070Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0070Entry 5 }
-- EDS0071 TABLE - RTD 4-wire
owEDS0071Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0071Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0071 device data (RTD 4-wire)."
::= { owDevices 18 }
owEDS0071Entry OBJECT-TYPE
SYNTAX owEDS0071Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0071Table 1 }
owEDS0071Entry ::= SEQUENCE {
owEDS0071Temperature
DisplayString,
owEDS0071Counter
COUNTER32
}
owEDS0071Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature."
::= { owEDS0071Entry 1 }
owEDS0071Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0071Entry 2 }
-- EDS0080 TABLE - octal 4-20ma
owEDS0080Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0080Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0080 device data (octal 4-20ma)."
::= { owDevices 19 }
owEDS0080Entry OBJECT-TYPE
SYNTAX owEDS0080Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0080Table 1 }
owEDS0080Entry ::= SEQUENCE {
owEDS0080Input1
DisplayString,
owEDS0080Input2
DisplayString,
owEDS0080Input3
DisplayString,
owEDS0080Input4
DisplayString,
owEDS0080Input5
DisplayString,
owEDS0080Input6
DisplayString,
owEDS0080Input7
DisplayString,
owEDS0080Input8
DisplayString,
owEDS0080Counter
COUNTER32
}
owEDS0080Input1 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 1."
::= { owEDS0080Entry 1 }
owEDS0080Input2 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 2."
::= { owEDS0080Entry 2 }
owEDS0080Input3 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 3."
::= { owEDS0080Entry 3 }
owEDS0080Input4 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 4."
::= { owEDS0080Entry 4 }
owEDS0080Input5 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 5."
::= { owEDS0080Entry 5 }
owEDS0080Input6 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 6."
::= { owEDS0080Entry 6 }
owEDS0080Input7 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 7."
::= { owEDS0080Entry 7 }
owEDS0080Input8 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 8."
::= { owEDS0080Entry 8 }
owEDS0080Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0080Entry 9 }
-- EDS0082 TABLE - octal 0-10v
owEDS0082Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0082Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0082 device data (octal 0-10v)."
::= { owDevices 20 }
owEDS0082Entry OBJECT-TYPE
SYNTAX owEDS0082Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0082Table 1 }
owEDS0082Entry ::= SEQUENCE {
owEDS0082Input1
DisplayString,
owEDS0082Input2
DisplayString,
owEDS0082Input3
DisplayString,
owEDS0082Input4
DisplayString,
owEDS0082Input5
DisplayString,
owEDS0082Input6
DisplayString,
owEDS0082Input7
DisplayString,
owEDS0082Input8
DisplayString,
owEDS0082Counter
COUNTER32
}
owEDS0082Input1 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 1."
::= { owEDS0082Entry 1 }
owEDS0082Input2 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 2."
::= { owEDS0082Entry 2 }
owEDS0082Input3 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 3."
::= { owEDS0082Entry 3 }
owEDS0082Input4 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 4."
::= { owEDS0082Entry 4 }
owEDS0082Input5 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 5."
::= { owEDS0082Entry 5 }
owEDS0082Input6 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 6."
::= { owEDS0082Entry 6 }
owEDS0082Input7 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 7."
::= { owEDS0082Entry 7 }
owEDS0082Input8 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 8."
::= { owEDS0082Entry 8 }
owEDS0082Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0082Entry 9 }
-- EDS0083 TABLE - quad 4-20ma
owEDS0083Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0083Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0083 device data (quad 4-20ma)."
::= { owDevices 21 }
owEDS0083Entry OBJECT-TYPE
SYNTAX owEDS0083Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0083Table 1 }
owEDS0083Entry ::= SEQUENCE {
owEDS0083Input1
DisplayString,
owEDS0083Input2
DisplayString,
owEDS0083Input3
DisplayString,
owEDS0083Input4
DisplayString,
owEDS0083Counter
COUNTER32
}
owEDS0083Input1 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 1."
::= { owEDS0083Entry 1 }
owEDS0083Input2 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 2."
::= { owEDS0083Entry 2 }
owEDS0083Input3 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 3."
::= { owEDS0083Entry 3 }
owEDS0083Input4 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 4."
::= { owEDS0083Entry 4 }
owEDS0083Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0083Entry 5 }
-- EDS0085 TABLE - quad 0-10v
owEDS0085Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0085Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0085 device data (quad 0-10v)."
::= { owDevices 22 }
owEDS0085Entry OBJECT-TYPE
SYNTAX owEDS0085Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0085Table 1 }
owEDS0085Entry ::= SEQUENCE {
owEDS0085Input1
DisplayString,
owEDS0085Input2
DisplayString,
owEDS0085Input3
DisplayString,
owEDS0085Input4
DisplayString,
owEDS0085Counter
COUNTER32
}
owEDS0085Input1 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 1."
::= { owEDS0085Entry 1 }
owEDS0085Input2 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 2."
::= { owEDS0085Entry 2 }
owEDS0085Input3 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 3."
::= { owEDS0085Entry 3 }
owEDS0085Input4 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 4."
::= { owEDS0085Entry 4 }
owEDS0085Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0085Entry 5 }
-- EDS0090 TABLE - octal discrete IO
owEDS0090Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0090Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0090 device data (octal discrete IO)."
::= { owDevices 23 }
owEDS0090Entry OBJECT-TYPE
SYNTAX owEDS0090Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0090Table 1 }
owEDS0090Entry ::= SEQUENCE {
owEDS0090Input1
INTEGER,
owEDS0090Input2
INTEGER,
owEDS0090Input3
INTEGER,
owEDS0090Input4
INTEGER,
owEDS0090Input5
INTEGER,
owEDS0090Input6
INTEGER,
owEDS0090Input7
INTEGER,
owEDS0090Input8
INTEGER,
owEDS0090ActivityLatch1
INTEGER,
owEDS0090ActivityLatch2
INTEGER,
owEDS0090ActivityLatch3
INTEGER,
owEDS0090ActivityLatch4
INTEGER,
owEDS0090ActivityLatch5
INTEGER,
owEDS0090ActivityLatch6
INTEGER,
owEDS0090ActivityLatch7
INTEGER,
owEDS0090ActivityLatch8
INTEGER,
owEDS0090PulseCounter1
COUNTER32,
owEDS0090PulseCounter2
COUNTER32,
owEDS0090PulseCounter3
COUNTER32,
owEDS0090PulseCounter4
COUNTER32,
owEDS0090PulseCounter5
COUNTER32,
owEDS0090PulseCounter6
COUNTER32,
owEDS0090PulseCounter7
COUNTER32,
owEDS0090PulseCounter8
COUNTER32,
owEDS0090Output1
INTEGER,
owEDS0090Output2
INTEGER,
owEDS0090Output3
INTEGER,
owEDS0090Output4
INTEGER,
owEDS0090Output5
INTEGER,
owEDS0090Output6
INTEGER,
owEDS0090Output7
INTEGER,
owEDS0090Output8
INTEGER,
owEDS0090PullDown1
INTEGER,
owEDS0090PullDown2
INTEGER,
owEDS0090PullDown3
INTEGER,
owEDS0090PullDown4
INTEGER,
owEDS0090PullDown5
INTEGER,
owEDS0090PullDown6
INTEGER,
owEDS0090PullDown7
INTEGER,
owEDS0090PullDown8
INTEGER,
owEDS0090ActivityLatchReset1
INTEGER,
owEDS0090ActivityLatchReset2
INTEGER,
owEDS0090ActivityLatchReset3
INTEGER,
owEDS0090ActivityLatchReset4
INTEGER,
owEDS0090ActivityLatchReset5
INTEGER,
owEDS0090ActivityLatchReset6
INTEGER,
owEDS0090ActivityLatchReset7
INTEGER,
owEDS0090ActivityLatchReset8
INTEGER,
owEDS0090PulseCounterReset1
INTEGER,
owEDS0090PulseCounterReset2
INTEGER,
owEDS0090PulseCounterReset3
INTEGER,
owEDS0090PulseCounterReset4
INTEGER,
owEDS0090PulseCounterReset5
INTEGER,
owEDS0090PulseCounterReset6
INTEGER,
owEDS0090PulseCounterReset7
INTEGER,
owEDS0090PulseCounterReset8
INTEGER,
owEDS0090Counter
COUNTER32
}
owEDS0090Input1 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 1."
::= { owEDS0090Entry 1 }
owEDS0090Input2 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 2."
::= { owEDS0090Entry 2 }
owEDS0090Input3 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 3."
::= { owEDS0090Entry 3 }
owEDS0090Input4 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 4."
::= { owEDS0090Entry 4 }
owEDS0090Input5 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 5."
::= { owEDS0090Entry 5 }
owEDS0090Input6 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 6."
::= { owEDS0090Entry 6 }
owEDS0090Input7 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 7."
::= { owEDS0090Entry 7 }
owEDS0090Input8 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 8."
::= { owEDS0090Entry 8 }
owEDS0090ActivityLatch1 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity Latch 1."
::= { owEDS0090Entry 9 }
owEDS0090ActivityLatch2 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity Latch 2."
::= { owEDS0090Entry 10 }
owEDS0090ActivityLatch3 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity Latch 3."
::= { owEDS0090Entry 11 }
owEDS0090ActivityLatch4 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity Latch 4."
::= { owEDS0090Entry 12 }
owEDS0090ActivityLatch5 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity Latch 5."
::= { owEDS0090Entry 13 }
owEDS0090ActivityLatch6 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity Latch 6."
::= { owEDS0090Entry 14 }
owEDS0090ActivityLatch7 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity Latch 7."
::= { owEDS0090Entry 15 }
owEDS0090ActivityLatch8 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity Latch 8."
::= { owEDS0090Entry 16 }
owEDS0090PulseCounter1 OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse Counter 1."
::= { owEDS0090Entry 17 }
owEDS0090PulseCounter2 OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse Counter 2."
::= { owEDS0090Entry 18 }
owEDS0090PulseCounter3 OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse Counter 3."
::= { owEDS0090Entry 19 }
owEDS0090PulseCounter4 OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse Counter 4."
::= { owEDS0090Entry 20 }
owEDS0090PulseCounter5 OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse Counter 5."
::= { owEDS0090Entry 21 }
owEDS0090PulseCounter6 OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse Counter 6."
::= { owEDS0090Entry 22 }
owEDS0090PulseCounter7 OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse Counter 7."
::= { owEDS0090Entry 23 }
owEDS0090PulseCounter8 OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse Counter 8."
::= { owEDS0090Entry 24 }
owEDS0090Output1 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output 1."
::= { owEDS0090Entry 25 }
owEDS0090Output2 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output 2."
::= { owEDS0090Entry 26 }
owEDS0090Output3 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output 3."
::= { owEDS0090Entry 27 }
owEDS0090Output4 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output 4."
::= { owEDS0090Entry 28 }
owEDS0090Output5 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output 5."
::= { owEDS0090Entry 29 }
owEDS0090Output6 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output 6."
::= { owEDS0090Entry 30 }
owEDS0090Output7 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output 7."
::= { owEDS0090Entry 31 }
owEDS0090Output8 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output 8."
::= { owEDS0090Entry 32 }
owEDS0090PullDown1 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "PullDown 1."
::= { owEDS0090Entry 33 }
owEDS0090PullDown2 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "PullDown 1."
::= { owEDS0090Entry 34 }
owEDS0090PullDown3 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "PullDown 1."
::= { owEDS0090Entry 35 }
owEDS0090PullDown4 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "PullDown 1."
::= { owEDS0090Entry 36 }
owEDS0090PullDown5 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "PullDown 1."
::= { owEDS0090Entry 37 }
owEDS0090PullDown6 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "PullDown 1."
::= { owEDS0090Entry 38 }
owEDS0090PullDown7 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "PullDown 1."
::= { owEDS0090Entry 39 }
owEDS0090PullDown8 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "PullDown 1."
::= { owEDS0090Entry 40 }
owEDS0090ActivityLatchReset1 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity Latch Reset 1."
::= { owEDS0090Entry 41 }
owEDS0090ActivityLatchReset2 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity Latch Reset 2."
::= { owEDS0090Entry 42 }
owEDS0090ActivityLatchReset3 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity Latch Reset 3."
::= { owEDS0090Entry 43 }
owEDS0090ActivityLatchReset4 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity Latch Reset 4."
::= { owEDS0090Entry 44 }
owEDS0090ActivityLatchReset5 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity Latch Reset 5."
::= { owEDS0090Entry 45 }
owEDS0090ActivityLatchReset6 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity Latch Reset 6."
::= { owEDS0090Entry 46 }
owEDS0090ActivityLatchReset7 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity Latch Reset 7."
::= { owEDS0090Entry 47 }
owEDS0090ActivityLatchReset8 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity Latch Reset 8."
::= { owEDS0090Entry 48 }
owEDS0090PulseCounterReset1 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Pulse Counter Reset 1."
::= { owEDS0090Entry 49 }
owEDS0090PulseCounterReset2 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Pulse Counter Reset 2."
::= { owEDS0090Entry 50 }
owEDS0090PulseCounterReset3 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Pulse Counter Reset 3."
::= { owEDS0090Entry 51 }
owEDS0090PulseCounterReset4 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Pulse Counter Reset 4."
::= { owEDS0090Entry 52 }
owEDS0090PulseCounterReset5 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Pulse Counter Reset 5."
::= { owEDS0090Entry 53 }
owEDS0090PulseCounterReset6 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Pulse Counter Reset 6."
::= { owEDS0090Entry 54 }
owEDS0090PulseCounterReset7 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Pulse Counter Reset 7."
::= { owEDS0090Entry 55 }
owEDS0090PulseCounterReset8 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Pulse Counter Reset 8."
::= { owEDS0090Entry 56 }
owEDS0090Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0090Entry 57 }
-- EDS0091 TABLE - quad opto
owEDS0091Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0091Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0091 device data (quad opto input)."
::= { owDevices 24 }
owEDS0091Entry OBJECT-TYPE
SYNTAX owEDS0091Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0091Table 1 }
owEDS0091Entry ::= SEQUENCE {
owEDS0091Input1
INTEGER,
owEDS0091Input2
INTEGER,
owEDS0091Input3
INTEGER,
owEDS0091Input4
INTEGER,
owEDS0091ActivityLatch1
INTEGER,
owEDS0091ActivityLatch2
INTEGER,
owEDS0091ActivityLatch3
INTEGER,
owEDS0091ActivityLatch4
INTEGER,
owEDS0091PulseCounter1
COUNTER32,
owEDS0091PulseCounter2
COUNTER32,
owEDS0091PulseCounter3
COUNTER32,
owEDS0091PulseCounter4
COUNTER32,
owEDS0091PulseCounterReset1
INTEGER,
owEDS0091PulseCounterReset2
INTEGER,
owEDS0091PulseCounterReset3
INTEGER,
owEDS0091PulseCounterReset4
INTEGER,
owEDS0091ActivityLatchReset1
INTEGER,
owEDS0091ActivityLatchReset2
INTEGER,
owEDS0091ActivityLatchReset3
INTEGER,
owEDS0091ActivityLatchReset4
INTEGER,
owEDS0091Counter
COUNTER32
}
owEDS0091Input1 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 1."
::= { owEDS0091Entry 1 }
owEDS0091Input2 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 2."
::= { owEDS0091Entry 2 }
owEDS0091Input3 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 3."
::= { owEDS0091Entry 3 }
owEDS0091Input4 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 4."
::= { owEDS0091Entry 4 }
owEDS0091ActivityLatch1 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity Latch 1."
::= { owEDS0091Entry 5 }
owEDS0091ActivityLatch2 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity Latch 2."
::= { owEDS0091Entry 6 }
owEDS0091ActivityLatch3 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity Latch 3."
::= { owEDS0091Entry 7 }
owEDS0091ActivityLatch4 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity Latch 4."
::= { owEDS0091Entry 8 }
owEDS0091PulseCounter1 OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse Counter 1."
::= { owEDS0091Entry 9 }
owEDS0091PulseCounter2 OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse Counter 1."
::= { owEDS0091Entry 10 }
owEDS0091PulseCounter3 OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse Counter 1."
::= { owEDS0091Entry 11 }
owEDS0091PulseCounter4 OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse Counter 1."
::= { owEDS0091Entry 12 }
owEDS0091PulseCounterReset1 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Pulse Counter Reset 1."
::= { owEDS0091Entry 13 }
owEDS0091PulseCounterReset2 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Pulse Counter Reset 2."
::= { owEDS0091Entry 14 }
owEDS0091PulseCounterReset3 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Pulse Counter Reset 3."
::= { owEDS0091Entry 15 }
owEDS0091PulseCounterReset4 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Pulse Counter Reset 4."
::= { owEDS0091Entry 16 }
owEDS0091ActivityLatchReset1 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity Latch Reset 1."
::= { owEDS0091Entry 17 }
owEDS0091ActivityLatchReset2 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity Latch Reset 2."
::= { owEDS0091Entry 18 }
owEDS0091ActivityLatchReset3 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity Latch Reset 3."
::= { owEDS0091Entry 19 }
owEDS0091ActivityLatchReset4 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity Latch Reset 4."
::= { owEDS0091Entry 20 }
owEDS0091Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0091Entry 21 }
-- EDS0092 TABLE - quad relay
owEDS0092Table OBJECT-TYPE
SYNTAX SEQUENCE OF owEDS0092Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0092 device data (quad relay output)."
::= { owDevices 25 }
owEDS0092Entry OBJECT-TYPE
SYNTAX owEDS0092Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
owDeviceIndex
}
::= { owEDS0092Table 1 }
owEDS0092Entry ::= SEQUENCE {
owEDS0092Output1
DisplayString,
owEDS0092Output2
DisplayString,
owEDS0092Output3
DisplayString,
owEDS0092Output4
DisplayString,
owEDS0092Counter
COUNTER32
}
owEDS0092Output1 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Output 1."
::= { owEDS0092Entry 1 }
owEDS0092Output2 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Output 2."
::= { owEDS0092Entry 2 }
owEDS0092Output3 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Output 3."
::= { owEDS0092Entry 3 }
owEDS0092Output4 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Output 4."
::= { owEDS0092Entry 4 }
owEDS0092Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0092Entry 5 }
-- DS28EA00 TABLE - Temp with PIO
owDS28EA00Table OBJECT-TYPE
SYNTAX SEQUENCE OF OwDS28EA00Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for DS28EA00 (1-wire
digital thermometer with PIO)."
::= { owDevices 26 }
owDS28EA00Entry OBJECT-TYPE
SYNTAX OwDS28EA00Entry
ACCESS not-accessible
STATUS mandatory
INDEX {
owDeviceIndex
}
::= { owDS28EA00Table 1 }
OwDS28EA00Entry ::= SEQUENCE {
owDS28EA00Temperature
DisplayString,
owDS28EA00UserByte1
INTEGER,
owDS28EA00UserByte2
INTEGER,
owDS28EA00PIOALevel
INTEGER,
owDS28EA00PIOBLevel
INTEGER,
owDS28EA00PIOAFlipFlop
INTEGER,
owDS28EA00PIOBFlipFlop
INTEGER,
}
owDS28EA00Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Current temperature from device, displayed as
a string with decimal point. Required since MIB's
cannot contain floating point numbers."
::= { owDS28EA00Entry 1 }
owDS28EA00UserByte1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "User byte 1 as read from EEPROM."
::= { owDS28EA00Entry 2 }
owDS28EA00UserByte2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "User byte 2 as read from EEPROM."
::= { owDS28EA00Entry 3 }
owDS28EA00PIOALevel OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "PIO-A logic level on pin. If PIO-A flip flop is
low, this input will always read low."
::= { owDS28EA00Entry 4 }
owDS28EA00PIOBLevel OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "PIO-B logic level on pin. If PIO-B flip flop is
low, this input will always read low."
::= { owDS28EA00Entry 5 }
owDS28EA00PIOAFlipFlop OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "PIO-A Flip Flop. Sets output state of the
FF. The output is open collector, so the FF must
be high (1) to be able to read a pin state of
low (0)."
::= { owDS28EA00Entry 6 }
owDS28EA00PIOBFlipFlop OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "PIO-B Flip Flop. Sets output state of the
FF. The output is open collector, so the FF must
be high (1) to be able to read a pin state of
low (0)."
::= { owDS28EA00Entry 7 }
-- EDS0050 TABLE - Temp with PIO
owEDS0050Table OBJECT-TYPE
SYNTAX SEQUENCE OF OwEDS0050Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS0050 (Temp,
2 discrete, 1 analog (0-10v))."
::= { owDevices 27 }
owEDS0050Entry OBJECT-TYPE
SYNTAX OwEDS0050Entry
ACCESS not-accessible
STATUS mandatory
INDEX {
owDeviceIndex
}
::= { owEDS0050Table 1 }
OwEDS0050Entry ::= SEQUENCE {
owEDS0050Temperature
DisplayString,
owEDS0050InputVoltage
DisplayString,
owEDS0050Input1
INTEGER,
owEDS0050Input2
INTEGER,
owEDS0050ActivityLatch1
INTEGER,
owEDS0050ActivityLatch2
INTEGER,
owEDS0050PulseCounter1
COUNTER32,
owEDS0050PulseCounter2
COUNTER32,
owEDS0050Output1
INTEGER,
owEDS0050Output2
INTEGER,
owEDS0050ActivityLatchReset1
INTEGER,
owEDS0050ActivityLatchReset2
INTEGER,
owEDS0050PulseCounterReset1
INTEGER,
owEDS0050PulseCounterReset2
INTEGER,
owEDS0050Counter
COUNTER32,
}
owEDS0050Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Current temperature from device, displayed as
a string with decimal point. Required since MIB's
cannot contain floating point numbers."
::= { owEDS0050Entry 1 }
owEDS0050InputVoltage OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Voltage at the analog input."
::= { owEDS0050Entry 2 }
owEDS0050Input1 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Discrete state at input 1."
::= { owEDS0050Entry 3 }
owEDS0050Input2 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Discrete state at input 2."
::= { owEDS0050Entry 4 }
owEDS0050ActivityLatch1 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Set to 1 if input has changed."
::= { owEDS0050Entry 5 }
owEDS0050ActivityLatch2 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Set to 1 if input has changed."
::= { owEDS0050Entry 6 }
owEDS0050PulseCounter1 OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-write
STATUS mandatory
DESCRIPTION "Count of the pulses on input 1."
::= { owEDS0050Entry 7 }
owEDS0050PulseCounter2 OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-write
STATUS mandatory
DESCRIPTION "Count of the pulses on input 2."
::= { owEDS0050Entry 8 }
owEDS0050Output1 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output 1."
::= { owEDS0050Entry 9 }
owEDS0050Output2 OBJECT-TYPE
SYNTAX INTEGER {
low( 0 ),
high( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Output 2."
::= { owEDS0050Entry 10 }
owEDS0050ActivityLatchReset1 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity Latch Reset 1."
::= { owEDS0050Entry 11 }
owEDS0050ActivityLatchReset2 OBJECT-TYPE
SYNTAX INTEGER {
nofunction( 0 ),
reset( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Activity Latch Reset 2."
::= { owEDS0050Entry 12 }
owEDS0050PulseCounterReset1 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Pulse Counter Reset 1."
::= { owEDS0050Entry 13 }
owEDS0050PulseCounterReset2 OBJECT-TYPE
SYNTAX INTEGER {
off( 0 ),
on( 1 )
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Pulse Counter Reset 2."
::= { owEDS0050Entry 14 }
owEDS0050Counter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Counter."
::= { owEDS0050Entry 15 }
--Wireless device trap table
wTrap OBJECT IDENTIFIER ::= { edsMain 3 }
wTrapTable OBJECT-TYPE
SYNTAX SEQUENCE OF wTrapEntry
ACCESS not-accessible
STATUS mandatory
::= { wTrap 1 }
wTrapEntry OBJECT-TYPE
SYNTAX wTrapEntry
ACCESS not-accessible
STATUS mandatory
INDEX {
wTrapIndex
}
::= { wTrapTable 1 }
wTrapEntry ::= SEQUENCE {
wTrapIndex
INTEGER,
wTrapIP
IpAddress,
wTrapCommunity
INTEGER,
wTrapEUI
OCTET STRING,
wTrapVariable
OCTET STRING,
wTrapHighThreshold
DisplayString,
wTrapLowThreshold
DisplayString,
}
wTrapIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Index of table. Traps are sent with this OID followed by the index
number of the table entry that generated the trap. An integer value is sent with the
trap which indicates what state change caused the trap. Using the
wTrapDeviceHighThreshold and wTrapDeviceLowThreshold
values, 3 windows are created. Transitions between
these windows generates a trap. The integer value indicates which
transition caused the trap as follows:
1 -> middle to high window transition
2 -> high to middle window transition
3 -> middle to low window transition
4 -> low to middle window transition
Note the following when programming traps:
1) Programming the HighThreshold lower than the LowThreshold is
invalid and will disable trap generation.
2) The wTrapEUI must be set to an active device or a trap
will not be sent.
3) The health of the device must be greater than 0 or no trap will
be sent.
4) The wTrapVariable must match one of the XML names."
::= { wTrapEntry 1 }
wTrapIP OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION "Address to send trap to."
::= { wTrapEntry 2 }
wTrapCommunity OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION "Community string to send with trap message."
::= { wTrapEntry 3 }
wTrapEUI OBJECT-TYPE
SYNTAX DisplayString(SIZE(16))
ACCESS read-write
STATUS mandatory
DESCRIPTION "Device EUI code to base sending trap message on."
::= { wTrapEntry 4 }
wTrapVariable OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION "Name of the variable, as stated in the XML file. For example, the name of humidity
for a EDS1068 is 'Humidity' (without the quotes)."
::= { wTrapEntry 5 }
wTrapHighThreshold OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION "A trap will be generated when the variable is greater than this value or
less than or equal to this value. This number
may be positive or negative and may contain a decimal point."
::= { wTrapEntry 6 }
wTrapLowThreshold OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION "A trap will be generated when the variable is less than this value or
greater than or equal to this value. This number
may be positive or negative and may contain a decimal point."
::= { wTrapEntry 7 }
--Wireless devices branch.
wDevices OBJECT IDENTIFIER ::= { edsMain 11 }
--Device type table (conceptual).
wDeviceTypes OBJECT IDENTIFIER ::= { wDevices 1 }
wNone OBJECT IDENTIFIER ::= { wDeviceTypes 0 }
wUnknown OBJECT IDENTIFIER ::= { wDeviceTypes 1 }
wUnused1 OBJECT IDENTIFIER ::= { wDeviceTypes 2 }
wUnused2 OBJECT IDENTIFIER ::= { wDeviceTypes 3 }
wEDS1068 OBJECT IDENTIFIER ::= { wDeviceTypes 4 }
wEDS1067 OBJECT IDENTIFIER ::= { wDeviceTypes 5 }
wEDS1066 OBJECT IDENTIFIER ::= { wDeviceTypes 6 }
wEDS1065 OBJECT IDENTIFIER ::= { wDeviceTypes 7 }
wEDS1064 OBJECT IDENTIFIER ::= { wDeviceTypes 8 }
wEDS1101 OBJECT IDENTIFIER ::= { wDeviceTypes 9 }
wEDS2101 OBJECT IDENTIFIER ::= { wDeviceTypes 10 }
wEDS2030 OBJECT IDENTIFIER ::= { wDeviceTypes 11 }
wDeviceInfo OBJECT IDENTIFIER ::= { wDevices 2 }
wDeviceNumActive OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of currently active 1-wire devices. A device
is active if it's health is non-zero."
::= { wDeviceInfo 1 }
wDeviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF wDeviceEntry
ACCESS not-accessible
STATUS mandatory
::= { wDevices 3 }
wDeviceEntry OBJECT-TYPE
SYNTAX wDeviceEntry
ACCESS not-accessible
STATUS mandatory
INDEX {
wDeviceIndex
}
::= { wDeviceTable 1 }
wDeviceEntry ::= SEQUENCE {
wDeviceIndex
INTEGER,
wDeviceType
INTEGER,
wDeviceName
DisplayString,
wDeviceDescription
DisplayString,
wDeviceFamily
INTEGER,
wDeviceEUI
OCTET STRING,
wDeviceHealth
INTEGER
wDeviceTag
DisplayString,
}
wDeviceIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Index of table."
::= { wDeviceEntry 1 }
wDeviceType OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "An indication of the device type. This is the
last OID number to the wDeviceTypes group pointing
to the name of the device. The corresponding
device table will contain the specific information
from the device. For example: if this entry is
2 (owDS2406) then the table owDS2406Table, at
the appropriate index, will contain the data
from the device."
::= { wDeviceEntry 2 }
wDeviceName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Name of the device."
::= { wDeviceEntry 3 }
wDeviceDescription OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Text description of the device."
::= { wDeviceEntry 4 }
wDeviceFamily OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Family number."
::= { wDeviceEntry 5 }
wDeviceEUI OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Entire EUI as read from device."
::= { wDeviceEntry 6 }
wDeviceHealth OBJECT-TYPE
SYNTAX INTEGER (0..8)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Health of device. Ranges between 0 and 7 where
0 worst case and 7 is best case. Incremented
every time device responds to a search, decremented
if it does not respond."
::= { wDeviceEntry 7 }
wDeviceTag OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Tag from device."
::= { wDeviceEntry 8 }
-- EDS1068 TABLE
wEDS1068Table OBJECT-TYPE
SYNTAX SEQUENCE OF wEDS1068Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS1068 device data (temperature, humidity, barometric pressure and light)."
::= { wDevices 4 }
wEDS1068Entry OBJECT-TYPE
SYNTAX wEDS1068Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
wDeviceIndex
}
::= { wEDS1068Table 1 }
wEDS1068Entry ::= SEQUENCE {
wEDS1068Temperature
DisplayString,
wEDS1068Humidity
DisplayString,
wEDS1068DewPoint
DisplayString,
wEDS1068Humidex
DisplayString,
wEDS1068HeatIndex
DisplayString,
wEDS1068BarometricPressure
DisplayString,
wEDS1068LEDState
INTEGER,
wEDS1068RelayState
INTEGER,
wEDS1068Light
DisplayString,
wEDS1068Input1
INTEGER,
wEDS1068ActivityLatch1
INTEGER,
wEDS1068PulseCounter1
COUNTER32,
wEDS1068Battery
DisplayString,
wEDS1068ReadCounter
COUNTER32,
wEDS1068LEDFunction
INTEGER,
wEDS1068RelayFunction
INTEGER,
wEDS1068LEDSetState
INTEGER,
wEDS1068RelaySetState
INTEGER,
}
wEDS1068Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature."
::= { wEDS1068Entry 1 }
wEDS1068Humidity OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Humidity."
::= { wEDS1068Entry 2 }
wEDS1068DewPoint OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "DewPoint."
::= { wEDS1068Entry 3 }
wEDS1068Humidex OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Humidex."
::= { wEDS1068Entry 4 }
wEDS1068HeatIndex OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Heat Index."
::= { wEDS1068Entry 5 }
wEDS1068BarometricPressure OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Barometric Pressure in Millibars."
::= { wEDS1068Entry 6 }
wEDS1068LEDState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "LED state."
::= { wEDS1068Entry 7 }
wEDS1068RelayState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Relay state."
::= { wEDS1068Entry 8 }
wEDS1068Light OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Light."
::= { wEDS1068Entry 9 }
wEDS1068Input1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 1 state."
::= { wEDS1068Entry 10 }
wEDS1068ActivityLatch1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity latch 1 state."
::= { wEDS1068Entry 11 }
wEDS1068PulseCounter1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse counter 1."
::= { wEDS1068Entry 12 }
wEDS1068Battery OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Battery voltage."
::= { wEDS1068Entry 13 }
wEDS1068ReadCounter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Read counter."
::= { wEDS1068Entry 14 }
wEDS1068LEDFunction OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "LED function."
::= { wEDS1068Entry 15 }
wEDS1068RelayFunction OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Relay function."
::= { wEDS1068Entry 16 }
wEDS1068LEDSetState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "LED set state."
::= { wEDS1068Entry 17 }
wEDS1068RelaySetState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Relay set state."
::= { wEDS1068Entry 18 }
-- EDS1067 TABLE, temp, light, input, relay
wEDS1067Table OBJECT-TYPE
SYNTAX SEQUENCE OF wEDS1067Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS1067 device data (temperature, humidity, barometric pressure and light)."
::= { wDevices 5 }
wEDS1067Entry OBJECT-TYPE
SYNTAX wEDS1067Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
wDeviceIndex
}
::= { wEDS1067Table 1 }
wEDS1067Entry ::= SEQUENCE {
wEDS1067Temperature
DisplayString,
wEDS1067LEDState
INTEGER,
wEDS1067RelayState
INTEGER,
wEDS1067Light
DisplayString,
wEDS1067Input1
INTEGER,
wEDS1067ActivityLatch1
INTEGER,
wEDS1067PulseCounter1
COUNTER32,
wEDS1067Battery
DisplayString,
wEDS1067ReadCounter
COUNTER32,
wEDS1067LEDFunction
INTEGER,
wEDS1067RelayFunction
INTEGER,
wEDS1067LEDSetState
INTEGER,
wEDS1067RelaySetState
INTEGER,
}
wEDS1067Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature."
::= { wEDS1067Entry 1 }
wEDS1067LEDState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "LED state."
::= { wEDS1067Entry 2 }
wEDS1067RelayState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Relay state."
::= { wEDS1067Entry 3 }
wEDS1067Light OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Light."
::= { wEDS1067Entry 4 }
wEDS1067Input1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 1 state."
::= { wEDS1067Entry 5 }
wEDS1067ActivityLatch1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity latch 1 state."
::= { wEDS1067Entry 6 }
wEDS1067PulseCounter1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse counter 1."
::= { wEDS1067Entry 7 }
wEDS1067Battery OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Battery voltage."
::= { wEDS1067Entry 8 }
wEDS1067ReadCounter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Read counter."
::= { wEDS1067Entry 9 }
wEDS1067LEDFunction OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "LED function."
::= { wEDS1067Entry 10 }
wEDS1067RelayFunction OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Relay function."
::= { wEDS1067Entry 11 }
wEDS1067LEDSetState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "LED set state."
::= { wEDS1067Entry 12 }
wEDS1067RelaySetState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Relay set state."
::= { wEDS1067Entry 13 }
-- EDS1066 TABLE, temp, BP, input, relay
wEDS1066Table OBJECT-TYPE
SYNTAX SEQUENCE OF wEDS1066Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS1066 device data (temperature, humidity, barometric pressure and light)."
::= { wDevices 6 }
wEDS1066Entry OBJECT-TYPE
SYNTAX wEDS1066Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
wDeviceIndex
}
::= { wEDS1066Table 1 }
wEDS1066Entry ::= SEQUENCE {
wEDS1066Temperature
DisplayString,
wEDS1066BarometricPressure
DisplayString,
wEDS1066LEDState
INTEGER,
wEDS1066RelayState
INTEGER,
wEDS1066Input1
INTEGER,
wEDS1066ActivityLatch1
INTEGER,
wEDS1066PulseCounter1
COUNTER32,
wEDS1066Battery
DisplayString,
wEDS1066ReadCounter
COUNTER32,
wEDS1066LEDFunction
INTEGER,
wEDS1066RelayFunction
INTEGER,
wEDS1066LEDSetState
INTEGER,
wEDS1066RelaySetState
INTEGER,
}
wEDS1066Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature."
::= { wEDS1066Entry 1 }
wEDS1066BarometricPressure OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Barometric Pressure in Millibars."
::= { wEDS1066Entry 2 }
wEDS1066LEDState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "LED state."
::= { wEDS1066Entry 3 }
wEDS1066RelayState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Relay state."
::= { wEDS1066Entry 4 }
wEDS1066Input1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 1 state."
::= { wEDS1066Entry 5 }
wEDS1066ActivityLatch1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity latch 1 state."
::= { wEDS1066Entry 6 }
wEDS1066PulseCounter1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse counter 1."
::= { wEDS1066Entry 7 }
wEDS1066Battery OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Battery voltage."
::= { wEDS1066Entry 8 }
wEDS1066ReadCounter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Read counter."
::= { wEDS1066Entry 9 }
wEDS1066LEDFunction OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "LED function."
::= { wEDS1066Entry 10 }
wEDS1066RelayFunction OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Relay function."
::= { wEDS1066Entry 11 }
wEDS1066LEDSetState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "LED set state."
::= { wEDS1066Entry 12 }
wEDS1066RelaySetState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Relay set state."
::= { wEDS1066Entry 13 }
-- EDS1065 TABLE, temp, hum, input, relay
wEDS1065Table OBJECT-TYPE
SYNTAX SEQUENCE OF wEDS1065Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS1065 device data (temperature, humidity, barometric pressure and light)."
::= { wDevices 7 }
wEDS1065Entry OBJECT-TYPE
SYNTAX wEDS1065Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
wDeviceIndex
}
::= { wEDS1065Table 1 }
wEDS1065Entry ::= SEQUENCE {
wEDS1065Temperature
DisplayString,
wEDS1065Humidity
DisplayString,
wEDS1065DewPoint
DisplayString,
wEDS1065Humidex
DisplayString,
wEDS1065HeatIndex
DisplayString,
wEDS1065LEDState
INTEGER,
wEDS1065RelayState
INTEGER,
wEDS1065Input1
INTEGER,
wEDS1065ActivityLatch1
INTEGER,
wEDS1065PulseCounter1
COUNTER32,
wEDS1065Battery
DisplayString,
wEDS1065ReadCounter
COUNTER32,
wEDS1065LEDFunction
INTEGER,
wEDS1065RelayFunction
INTEGER,
wEDS1065LEDSetState
INTEGER,
wEDS1065RelaySetState
INTEGER,
}
wEDS1065Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature."
::= { wEDS1065Entry 1 }
wEDS1065Humidity OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Humidity."
::= { wEDS1065Entry 2 }
wEDS1065DewPoint OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "DewPoint."
::= { wEDS1065Entry 3 }
wEDS1065Humidex OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Humidex."
::= { wEDS1065Entry 4 }
wEDS1065HeatIndex OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Heat Index."
::= { wEDS1065Entry 5 }
wEDS1065LEDState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "LED state."
::= { wEDS1065Entry 6 }
wEDS1065RelayState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Relay state."
::= { wEDS1065Entry 7 }
wEDS1065Input1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 1 state."
::= { wEDS1065Entry 8 }
wEDS1065ActivityLatch1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity latch 1 state."
::= { wEDS1065Entry 9 }
wEDS1065PulseCounter1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse counter 1."
::= { wEDS1065Entry 10 }
wEDS1065Battery OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Battery voltage."
::= { wEDS1065Entry 11 }
wEDS1065ReadCounter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Read counter."
::= { wEDS1065Entry 12 }
wEDS1065LEDFunction OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "LED function."
::= { wEDS1065Entry 13 }
wEDS1065RelayFunction OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Relay function."
::= { wEDS1065Entry 14 }
wEDS1065LEDSetState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "LED set state."
::= { wEDS1065Entry 15 }
wEDS1065RelaySetState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Relay set state."
::= { wEDS1065Entry 16 }
-- EDS1064 TABLE, temp, input, relay
wEDS1064Table OBJECT-TYPE
SYNTAX SEQUENCE OF wEDS1064Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS1064 device data (temperature, humidity, barometric pressure and light)."
::= { wDevices 8 }
wEDS1064Entry OBJECT-TYPE
SYNTAX wEDS1064Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
wDeviceIndex
}
::= { wEDS1064Table 1 }
wEDS1064Entry ::= SEQUENCE {
wEDS1064Temperature
DisplayString,
wEDS1064LEDState
INTEGER,
wEDS1064RelayState
INTEGER,
wEDS1064Input1
INTEGER,
wEDS1064ActivityLatch1
INTEGER,
wEDS1064PulseCounter1
COUNTER32,
wEDS1064Battery
DisplayString,
wEDS1064ReadCounter
COUNTER32,
wEDS1064LEDFunction
INTEGER,
wEDS1064RelayFunction
INTEGER,
wEDS1064LEDSetState
INTEGER,
wEDS1064RelaySetState
INTEGER,
}
wEDS1064Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature."
::= { wEDS1064Entry 1 }
wEDS1064LEDState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "LED state."
::= { wEDS1064Entry 2 }
wEDS1064RelayState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Relay state."
::= { wEDS1064Entry 3 }
wEDS1064Input1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 1 state."
::= { wEDS1064Entry 4 }
wEDS1064ActivityLatch1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity latch 1 state."
::= { wEDS1064Entry 5 }
wEDS1064PulseCounter1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse counter 1."
::= { wEDS1064Entry 6 }
wEDS1064Battery OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Battery voltage."
::= { wEDS1064Entry 7 }
wEDS1064ReadCounter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Read counter."
::= { wEDS1064Entry 8 }
wEDS1064LEDFunction OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "LED function."
::= { wEDS1064Entry 9 }
wEDS1064RelayFunction OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Relay function."
::= { wEDS1064Entry 10 }
wEDS1064LEDSetState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "LED set state."
::= { wEDS1064Entry 11 }
wEDS1064RelaySetState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Relay set state."
::= { wEDS1064Entry 12 }
-- EDS1101 TABLE
wEDS1101Table OBJECT-TYPE
SYNTAX SEQUENCE OF wEDS1101Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS1101 device data (repeater)."
::= { wDevices 9 }
wEDS1101Entry OBJECT-TYPE
SYNTAX wEDS1101Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
wDeviceIndex
}
::= { wEDS1101Table 1 }
wEDS1101Entry ::= SEQUENCE {
wEDS1101DevicesConnected
INTEGER,
wEDS1101SendCounter
COUNTER32,
}
wEDS1101DevicesConnected OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of devices connected."
::= { wEDS1101Entry 1 }
wEDS1101SendCounter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Send counter."
::= { wEDS1101Entry 2 }
-- EDS2101 TABLE
wEDS2101Table OBJECT-TYPE
SYNTAX SEQUENCE OF wEDS2101Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS2101 device data (repeater)."
::= { wDevices 10 }
wEDS2101Entry OBJECT-TYPE
SYNTAX wEDS2101Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
wDeviceIndex
}
::= { wEDS2101Table 1 }
wEDS2101Entry ::= SEQUENCE {
wEDS2101DevicesConnected
INTEGER,
wEDS2101SendCounter
COUNTER32,
}
wEDS2101DevicesConnected OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of devices connected."
::= { wEDS2101Entry 1 }
wEDS2101SendCounter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Send counter."
::= { wEDS2101Entry 2 }
-- EDS2030 TABLE
wEDS2030Table OBJECT-TYPE
SYNTAX SEQUENCE OF wEDS2030Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for EDS2030 device data (temperature, probe, light and input)."
::= { wDevices 11 }
wEDS2030Entry OBJECT-TYPE
SYNTAX wEDS2030Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX {
wDeviceIndex
}
::= { wEDS2030Table 1 }
wEDS2030Entry ::= SEQUENCE {
wEDS2030Temperature
DisplayString,
wEDS2030Probe
DisplayString,
wEDS2030LEDState
INTEGER,
wEDS2030Light
DisplayString,
wEDS2030Input1
INTEGER,
wEDS2030ActivityLatch1
INTEGER,
wEDS2030PulseCounter1
COUNTER32,
wEDS2030Battery
DisplayString,
wEDS2030ReadCounter
COUNTER32,
wEDS2030LEDFunction
INTEGER,
wEDS2030LEDSetState
INTEGER,
}
wEDS2030Temperature OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature."
::= { wEDS2030Entry 1 }
wEDS2030Probe OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Temperature probe."
::= { wEDS2030Entry 2 }
wEDS2030LEDState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "LED state."
::= { wEDS2030Entry 3 }
wEDS2030Light OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Light."
::= { wEDS2030Entry 4 }
wEDS2030Input1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Input 1 state."
::= { wEDS2030Entry 5 }
wEDS2030ActivityLatch1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Activity latch 1 state."
::= { wEDS2030Entry 6 }
wEDS2030PulseCounter1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Pulse counter 1."
::= { wEDS2030Entry 7 }
wEDS2030Battery OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Battery voltage."
::= { wEDS2030Entry 8 }
wEDS2030ReadCounter OBJECT-TYPE
SYNTAX COUNTER32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Read counter."
::= { wEDS2030Entry 9 }
wEDS2030LEDFunction OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "LED function."
::= { wEDS2030Entry 10 }
wEDS2030LEDSetState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "LED set state."
::= { wEDS2030Entry 11 }
END
|