summaryrefslogtreecommitdiff
path: root/MIBS/eaton/EATON-SENSOR-MIB
blob: 8d8bbdd383fe17f290e8b7a5477b05f2f7cba98c (plain)
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
EATON-SENSOR-MIB DEFINITIONS ::= BEGIN

IMPORTS
    OBJECT-TYPE, NOTIFICATION-TYPE, MODULE-IDENTITY, 
    Counter32, Integer32
        FROM SNMPv2-SMI
    NOTIFICATION-GROUP, OBJECT-GROUP, MODULE-COMPLIANCE
        FROM SNMPv2-CONF
    TEXTUAL-CONVENTION
        FROM SNMPv2-TC
    sensorAgent
        FROM EATON-OIDS;

eatonSensor MODULE-IDENTITY
    LAST-UPDATED "201812171200Z"
    ORGANIZATION 
        "Eaton Corporation"
    CONTACT-INFO 
        "http://powerquality.eaton.com"
    DESCRIPTION 
        "The MIB module for Eaton Sensors."
    REVISION "201812171200Z"
    DESCRIPTION 
        "Initial release."
::= { sensorAgent 1 }

-- eatonSensor { iso org(3) dod(6) internet(1) private(4)
--       enterprises(1) eaton(534) products(6) sensorAgent(8) (1) }

sensor               OBJECT IDENTIFIER ::= { eatonSensor 1 }
temperature          OBJECT IDENTIFIER ::= { eatonSensor 2 }
humidity             OBJECT IDENTIFIER ::= { eatonSensor 3 }
digitalInput         OBJECT IDENTIFIER ::= { eatonSensor 4 }
conformance          OBJECT IDENTIFIER ::= { eatonSensor 10 }

-- Textual Conventions
UnixTimeStamp ::= TEXTUAL-CONVENTION
    DISPLAY-HINT      "dddddddddd"
    STATUS     current
    DESCRIPTION 
        "Unix time stamp. Measured in seconds since January 1, 1970."
    SYNTAX  Counter32

PositionType ::= TEXTUAL-CONVENTION
    STATUS  current
    DESCRIPTION "Describes the position by reference to the data center aisle."
    SYNTAX  INTEGER {
        undefined(0),
        other(1),
        rackRear(2),
        rackFront(3),
        batteryRoom(4)
        }

ElevationType ::= TEXTUAL-CONVENTION
    STATUS  current
    DESCRIPTION "Describes the elevation in the rack."
    SYNTAX  INTEGER {
        undefined(0),
        other(1),
        bottom(2),
        middle(3),
        top(4)
        }

CommunicationStatus ::= TEXTUAL-CONVENTION
    STATUS  current
    DESCRIPTION "Describes the communication sensor status or probe status."
    SYNTAX  INTEGER {
        unknown(0),
        communicationOK(2),
        communicationLost(3)
        }

ProbeConnectionType ::= TEXTUAL-CONVENTION
    STATUS  current
    DESCRIPTION "Describes the probe connection to the sensor or probe."
    SYNTAX  INTEGER {
        undefined(0),
        internal(1),
        wired(2),
        wireless(3)
        }

EnableType ::= TEXTUAL-CONVENTION
    STATUS  current
    DESCRIPTION "Describes enable/disable."
    SYNTAX  INTEGER {
        disabled(0),
        enabled(1)
        }

AlarmType ::= TEXTUAL-CONVENTION
    STATUS  current
    DESCRIPTION "Describes the alarm according to a measured value by reference to the triggers."
    SYNTAX  INTEGER {
        good(0),
        lowWarning(1),
        lowCritical(2),
        highWarning(3),
        highCritical(4)
        }

ResetCommandType ::= TEXTUAL-CONVENTION
    STATUS  current
    DESCRIPTION "Commands a reset."
    SYNTAX  INTEGER {
        none(0),
        reset(1)
        }

PolarityType ::= TEXTUAL-CONVENTION
    STATUS  current
    DESCRIPTION "Describes the polarity configuration."
    SYNTAX  INTEGER {
        normallyOpened(0),
        normallyClosed(1)
        }

AlarmSeverityType ::= TEXTUAL-CONVENTION
    STATUS  current
    DESCRIPTION "Describes the alarm severity."
    SYNTAX  INTEGER {
        informationnal(1),
        warning(2),
        critical(3)
        }

AlarmLevelType ::= TEXTUAL-CONVENTION
    STATUS  current
    DESCRIPTION "Describes the alarm level."
    SYNTAX  INTEGER {
        good(0),
        informationnal(1),
        warning(2),
        critical(3)
        }

StateType ::= TEXTUAL-CONVENTION
    STATUS  current
    DESCRIPTION "Describes the state of a digital input that depends on its measure
                 and the polrity configuration."
    SYNTAX  INTEGER {
        inactive(0),
        active(1)
        }

TemperatureUnitType ::= TEXTUAL-CONVENTION
    STATUS  current
    DESCRIPTION "Describes the temperature unit used to read/write the temperature data."
    SYNTAX  INTEGER {
        tenthOfDegKelvin(0),
        tenthOfDegCelsius(1),
        tenthOfDegFarhenheit(2)
        }

-- -----------------------------------------------------------------------------

sensorCount  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Number of sensor managed on this device."
    ::= { sensor 1 }

sensorIdentificationTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF SensorIdentificationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "A list of sensor devices identification data.
         The number of entries is given by sensorCount."
    ::= { sensor  2}

sensorIdentificationEntry  OBJECT-TYPE
    SYNTAX     SensorIdentificationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "An entry for a sensor device identification."
    INDEX { sensorIndex }
    ::= { sensorIdentificationTable 1 }

SensorIdentificationEntry ::= SEQUENCE {
    sensorIndex
        Integer32,
    sensorUuid
        OCTET STRING,
    sensorConnectionType
        ProbeConnectionType,
    sensorAddress
        OCTET STRING,
    sensorMonitoredBy
        OBJECT IDENTIFIER,
    sensorManufacturer
        OCTET STRING,
    sensorModel
        OCTET STRING,
    sensorPartNumber
        OCTET STRING,
    sensorSerialNumber
        OCTET STRING,
    sensorFirmwareVersion
        OCTET STRING
}

sensorIndex  OBJECT-TYPE
    SYNTAX     Integer32 (1..3)
    MAX-ACCESS accessible-for-notify
    STATUS     current
    DESCRIPTION 
        "A unique value for each sensor device.  Its value
         ranges from 1 to sensorCount."
    ::= { sensorIdentificationEntry 1 }

sensorUuid  OBJECT-TYPE
    SYNTAX     OCTET STRING
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "A unique uuid value for each sensor device."
    ::= { sensorIdentificationEntry 2 }

sensorConnectionType  OBJECT-TYPE
    SYNTAX     ProbeConnectionType
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Sensor connection type with the device that monitors it."
    ::= { sensorIdentificationEntry 3 }

sensorAddress  OBJECT-TYPE
    SYNTAX     OCTET STRING
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Depending of the connection implementation : Modbus Slave Id, BT Mac address, ..."
    ::= { sensorIdentificationEntry 4 }

sensorMonitoredBy  OBJECT-TYPE
    SYNTAX     OBJECT IDENTIFIER
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Parent oid device where the sensor is connected to and monitored by."
    ::= { sensorIdentificationEntry 5 }

sensorManufacturer  OBJECT-TYPE
    SYNTAX     OCTET STRING (SIZE(1..31))
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "The vendor name of the sensor device."
    ::= { sensorIdentificationEntry 6 }

sensorModel  OBJECT-TYPE
    SYNTAX     OCTET STRING (SIZE(1..31))
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "The model name of the sensor device."
    ::= { sensorIdentificationEntry 7 }

sensorPartNumber  OBJECT-TYPE
    SYNTAX     OCTET STRING (SIZE(1..31))
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "The catalog part number of the sensor device."
    ::= { sensorIdentificationEntry 8 }

sensorSerialNumber  OBJECT-TYPE
    SYNTAX     OCTET STRING (SIZE(1..31))
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "The serial number of the sensor device."
    ::= { sensorIdentificationEntry 9 }

sensorFirmwareVersion  OBJECT-TYPE
    SYNTAX     OCTET STRING (SIZE(1..31))
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "The firmware version of the sensor device."
    ::= { sensorIdentificationEntry 10 }


sensorConfigurationTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF SensorConfigurationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "A list of sensor devices configuration data.
         The number of entries is given by sensorCount."
    ::= { sensor 3 }

sensorConfigurationEntry  OBJECT-TYPE
    SYNTAX     SensorConfigurationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "An entry for a sensor device configuration."
    INDEX { sensorIndex }
    ::= { sensorConfigurationTable 1 }

SensorConfigurationEntry ::= SEQUENCE {
    sensorName
        OCTET STRING,
    sensorLocation
        OCTET STRING,
    sensorPosition
        PositionType,
    sensorElevation
        ElevationType,
    sensorUElevation
        Integer32
}

sensorName  OBJECT-TYPE
    SYNTAX     OCTET STRING (SIZE(1..31))
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "The friendly name of the sensor device."
    ::= { sensorConfigurationEntry 1 }

sensorLocation  OBJECT-TYPE
    SYNTAX     OCTET STRING (SIZE(1..31))
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "The location of the sensor device."
    ::= { sensorConfigurationEntry 2 }
  
sensorPosition  OBJECT-TYPE
    SYNTAX     PositionType
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "The Position by reference to the data center aisle."
    ::= { sensorConfigurationEntry 3 }

sensorElevation  OBJECT-TYPE
    SYNTAX     ElevationType
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "The Elevation in the rack."
    ::= { sensorConfigurationEntry 4 }
  
sensorUElevation  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "The elevation in the rack in count of U position from the bottom."
    ::= { sensorConfigurationEntry 5 }


sensorMonitoringTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF SensorMonitoringEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "A list of sensor devices monitoring data.
         The number of entries is given by sensorCount."
    ::= { sensor 4 }

sensorMonitoringEntry  OBJECT-TYPE
    SYNTAX     SensorMonitoringEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "An entry for a sensor device monitoring."
    INDEX { sensorIndex }
    ::= { sensorMonitoringTable 1 }

SensorMonitoringEntry ::= SEQUENCE {
    sensorStatus
        CommunicationStatus,
    sensorStatusSince
        UnixTimeStamp,
    sensorTemperatureCount
        Integer32,
    sensorHumidityCount
        Integer32,
    sensorDigitalInputCount
        Integer32,
    sensorAnalogInputCount
        Integer32
}

sensorStatus  OBJECT-TYPE
    SYNTAX     CommunicationStatus
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Indicates how the sensor is communicating or not."
    ::= { sensorMonitoringEntry 1 }

sensorStatusSince  OBJECT-TYPE
    SYNTAX     UnixTimeStamp
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "UTC time in seconds since 1970/01/01 dating the sensor status last change."
    ::= { sensorMonitoringEntry 2 }

sensorTemperatureCount  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Number of temperature probes managed by the sensor device."
    ::= { sensorMonitoringEntry 3 }

sensorHumidityCount  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Number of humidity probes managed by the sensor device."
    ::= { sensorMonitoringEntry 4 }

sensorDigitalInputCount  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Number of digital input probes managed by the sensor device."
    ::= { sensorMonitoringEntry 5 }

sensorAnalogInputCount  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Number of analog input probes managed by the sensor device."
    ::= { sensorMonitoringEntry 6 }

sensorNotification OBJECT IDENTIFIER ::= { sensor 0 }

notifySensorCount  NOTIFICATION-TYPE
    OBJECTS { sensorCount }
    STATUS     current
    DESCRIPTION 
        "Sent whenever the sensor count changes after a discovery or removing 
         from the UI."
    ::= { sensorNotification 1 }

notifySensorStatus  NOTIFICATION-TYPE
    OBJECTS { sensorIndex,
              sensorUuid,
              sensorStatus,
              sensorStatusSince }
    STATUS     current
    DESCRIPTION 
        "Sent whenever the sensor status changes."
    ::= { sensorNotification 2 }

-- -----------------------------------------------------------------------------

temperatureIdentificationTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF TemperatureIdentificationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "A list of temperature probe measurements. the number of entries
         is given by the temperature count."
    ::= { temperature 1 }

temperatureIdentificationEntry  OBJECT-TYPE
    SYNTAX     TemperatureIdentificationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "An entry for a temperature probe identification."
    INDEX { sensorIndex, temperatureIndex }
    ::= { temperatureIdentificationTable 1 }

TemperatureIdentificationEntry ::= SEQUENCE {
    temperatureIndex
        Integer32,
    temperatureUuid
        OCTET STRING,
    temperatureConnectionType
        ProbeConnectionType
}

temperatureIndex  OBJECT-TYPE
    SYNTAX     Integer32 (1..2)
    MAX-ACCESS accessible-for-notify
    STATUS     current
    DESCRIPTION 
        "A unique value for each temperature probe measurement.  Its value
              ranges from 1 to sensorTemperatureCount."
    ::= { temperatureIdentificationEntry 1 }

temperatureUuid  OBJECT-TYPE
    SYNTAX     OCTET STRING
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "A unique uuid value for each temperature."
    ::= { temperatureIdentificationEntry 2 }

temperatureConnectionType  OBJECT-TYPE
    SYNTAX     ProbeConnectionType
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Probe connection type with the sensor that monitors it."
    ::= { temperatureIdentificationEntry 3 }


temperatureConfigurationTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF TemperatureConfigurationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "A list of temperature probe configuration.  The number of entries is
              given by sensorTemperatureCount."
    ::= { temperature 2 }

temperatureConfigurationEntry  OBJECT-TYPE
    SYNTAX     TemperatureConfigurationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "An entry for a temperature probe configuration."
    INDEX { sensorIndex, temperatureIndex }
    ::= { temperatureConfigurationTable 1 }

TemperatureConfigurationEntry ::= SEQUENCE {
    temperatureName
        OCTET STRING,
    temperatureEnable
        EnableType,
    temperatureOffset
        Integer32,
    temperatureAlarmEnable
        EnableType,
    temperatureThresholdLowWarning
         Integer32,
    temperatureThresholdLowCritical
         Integer32,
    temperatureThresholdHighWarning
         Integer32,
    temperatureThresholdHighCritical
         Integer32,
    temperatureThresholdHysteresis
         Integer32,
    temperatureAlarmGracePeriod
         Integer32
}

temperatureName  OBJECT-TYPE
    SYNTAX     OCTET STRING (SIZE(1..31))
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "The friendly name of the sensor temperature probe."
    ::= { temperatureConfigurationEntry 1 }

temperatureEnable  OBJECT-TYPE
    SYNTAX     EnableType
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Configure the temperature acquired or not.
         0:disabled, 1:enabled"
    ::= { temperatureConfigurationEntry 2 }

temperatureOffset  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Configure the offset (Minus or Plus) to be added to the acquired value
         in order to correct the probe measurement error.
         See temperatureUnit data for the units."
    ::= { temperatureConfigurationEntry 3 }

temperatureAlarmEnable  OBJECT-TYPE
    SYNTAX     EnableType
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Configure the temperature alarm depending on the thresholds evaluated or not.
         0:disabled, 1:enabled"
    ::= { temperatureConfigurationEntry 4 }

temperatureThresholdLowWarning  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Low warning temperature threshold.
         See temperatureUnit data for the units."
    ::= { temperatureConfigurationEntry 5 }

temperatureThresholdLowCritical  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Low critical temperature threshold.
         See temperatureUnit data for the units."
    ::= { temperatureConfigurationEntry 6 }

temperatureThresholdHighWarning  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "High warning temperature threshold.
         See temperatureUnit data for the units."
    ::= { temperatureConfigurationEntry 7 }

temperatureThresholdHighCritical  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "High critical temperature threshold.
         See temperatureUnit data for the units."
    ::= { temperatureConfigurationEntry 8 }

temperatureThresholdHysteresis  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Temperature threshold hysteresis.
         See temperatureUnit data for the units."
    ::= { temperatureConfigurationEntry 9 }

temperatureAlarmGracePeriod  OBJECT-TYPE
    SYNTAX     Integer32 (1..60)
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "The grace period the alarm triggers after the acquired value crosses
         a trigger value (in seconds)."
    ::= { temperatureConfigurationEntry 10 }


temperatureMonitoringTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF TemperatureMonitoringEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "A list of temperature probe monitoring.  The number of entries is
         given by sensorTemperatureCount."
    ::= { temperature 3 }

temperatureMonitoringEntry  OBJECT-TYPE
    SYNTAX     TemperatureMonitoringEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "An entry for a temperature probe monitoring."
    INDEX { sensorIndex, temperatureIndex }
    ::= { temperatureMonitoringTable 1 }

TemperatureMonitoringEntry ::= SEQUENCE {
    temperatureAlarm
         AlarmType,
    temperatureAlarmChangeSince
         UnixTimeStamp,
    temperatureValue
         Integer32,
    temperatureCommunicationStatus
         CommunicationStatus,
    temperatureCommunicationStatusSince
         UnixTimeStamp
}

temperatureAlarm  OBJECT-TYPE
    SYNTAX     AlarmType
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Alarm set according to the realtime measure compared to the thresholds."
    ::= { temperatureMonitoringEntry 1 }

temperatureAlarmChangeSince  OBJECT-TYPE
    SYNTAX     UnixTimeStamp
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "UTC time in seconds since 1970/01/01 dating the temperature alarm last change."
    ::= { temperatureMonitoringEntry 2 }

temperatureValue  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Realtime measured value after correction with the offset.
         See temperatureUnit data for the units."
    ::= { temperatureMonitoringEntry 3 }

temperatureCommunicationStatus  OBJECT-TYPE
    SYNTAX     CommunicationStatus
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Indicates how the temperature probe is communicating or not."
    ::= { temperatureMonitoringEntry 4 }

temperatureCommunicationStatusSince  OBJECT-TYPE
    SYNTAX     UnixTimeStamp
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "UTC time in seconds since 1970/01/01 dating the temperature communication status last change."
    ::= { temperatureMonitoringEntry 5 }


temperatureMonitoringMinMaxTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF TemperatureMonitoringMinMaxEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "A list of temperature probe monitoring Min and Max.  The number of entries is
         given by sensorTemperatureCount."
    ::= { temperature 4 }

temperatureMonitoringMinMaxEntry  OBJECT-TYPE
    SYNTAX     TemperatureMonitoringMinMaxEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "An entry for a temperature probe monitoring Min and Max."
    INDEX { sensorIndex, temperatureIndex }
    ::= { temperatureMonitoringMinMaxTable 1 }

TemperatureMonitoringMinMaxEntry ::= SEQUENCE {
    temperatureMinValue
         Integer32,
    temperatureMinValueSince
         UnixTimeStamp,
    temperatureMaxValue
         Integer32,
    temperatureMaxValueSince
         UnixTimeStamp,
    temperatureResetMinMax
         ResetCommandType
}

temperatureMinValue  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Minimum value registered since the 1st connection of the sensor or the last reset.
         See temperatureUnit data for the units."
    ::= { temperatureMonitoringMinMaxEntry 1 }

temperatureMinValueSince  OBJECT-TYPE
    SYNTAX     UnixTimeStamp
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "UTC time in seconds since 1970/01/01 dating the temperature min value last change."
    ::= { temperatureMonitoringMinMaxEntry 2 }

temperatureMaxValue  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Maximum value registered since the 1st connection of the sensor or the last reset.
         See temperatureUnit data for the units."
    ::= { temperatureMonitoringMinMaxEntry 3 }

temperatureMaxValueSince  OBJECT-TYPE
    SYNTAX     UnixTimeStamp
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "UTC time in seconds since 1970/01/01 dating the temperature max value last change."
    ::= { temperatureMonitoringMinMaxEntry 4 }

temperatureResetMinMax  OBJECT-TYPE
    SYNTAX     ResetCommandType
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Command that resets the min and max data with the current measure.
         0:None, 1:Reset"
    ::= { temperatureMonitoringMinMaxEntry 5 }

temperatureUnit  OBJECT-TYPE
    SYNTAX     TemperatureUnitType
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Temperature unit configuration. It is a global setting for all the v1
         and  v3 SNMP client. It does not involve the temperature unit of data
         stored and managed in the card. But it does configure the unit the temperatures
         data are red and written in this Mib.
         The possible values are tenthOfDegCelsius(0), tenthOfDegFarhenheit(1),
         tenthOfDegKelvin(2)."
    ::= { temperature 5 }


temperatureNotification OBJECT IDENTIFIER ::= { temperature 0 }

notifyTemperatureAlarm  NOTIFICATION-TYPE
    OBJECTS { sensorIndex,
              temperatureIndex,
              temperatureUuid,
              temperatureAlarm,
              temperatureAlarmChangeSince,
              temperatureValue }
    STATUS     current
    DESCRIPTION 
        "Sent whenever the temperature alarm changes."
    ::= { temperatureNotification 1 }

notifyTemperatureCommunicationStatus  NOTIFICATION-TYPE
    OBJECTS { sensorIndex,
              temperatureIndex,
              temperatureUuid,
              temperatureCommunicationStatus,
              temperatureCommunicationStatusSince }
    STATUS     current
    DESCRIPTION 
        "Sent whenever the temperature communication status changes.
         Is not implemented when the probe is internal (see temperatureConnectionType)."
    ::= { temperatureNotification 2 }

-- -----------------------------------------------------------------------------


humidityIdentificationTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF HumidityIdentificationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "A list of humidity probe measurements. the number of entries
         is given by the humidity count."
    ::= { humidity 1 }

humidityIdentificationEntry  OBJECT-TYPE
    SYNTAX     HumidityIdentificationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "An entry for a humidity probe identification."
    INDEX { sensorIndex, humidityIndex }
    ::= { humidityIdentificationTable 1 }

HumidityIdentificationEntry ::= SEQUENCE {
    humidityIndex
        Integer32,
    humidityUuid
        OCTET STRING,
    humidityConnectionType
        ProbeConnectionType
}

humidityIndex  OBJECT-TYPE
    SYNTAX     Integer32 (1..2)
    MAX-ACCESS accessible-for-notify
    STATUS     current
    DESCRIPTION 
        "A unique value for each humidity probe measurement.  Its value
              ranges from 1 to sensorhumidityCount."
    ::= { humidityIdentificationEntry 1 }

humidityUuid  OBJECT-TYPE
    SYNTAX     OCTET STRING
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "A unique uuid value for each humidity."
    ::= { humidityIdentificationEntry 2 }

humidityConnectionType  OBJECT-TYPE
    SYNTAX     ProbeConnectionType
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Probe connection type with the sensor that monitors it."
    ::= { humidityIdentificationEntry 3 }


humidityConfigurationTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF HumidityConfigurationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "A list of humidity probe configuration.  The number of entries is
              given by sensorhumidityCount."
    ::= { humidity 2 }

humidityConfigurationEntry  OBJECT-TYPE
    SYNTAX     HumidityConfigurationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "An entry for a humidity probe configuration."
    INDEX { sensorIndex, humidityIndex }
    ::= { humidityConfigurationTable 1 }

HumidityConfigurationEntry ::= SEQUENCE {
    humidityName
        OCTET STRING,
    humidityEnable
        EnableType,
    humidityOffset
        Integer32,
    humidityAlarmEnable
        EnableType,
    humidityThresholdLowWarning
         Integer32,
    humidityThresholdLowCritical
         Integer32,
    humidityThresholdHighWarning
         Integer32,
    humidityThresholdHighCritical
         Integer32,
    humidityThresholdHysteresis
         Integer32,
    humidityAlarmGracePeriod
         Integer32
}

humidityName  OBJECT-TYPE
    SYNTAX     OCTET STRING (SIZE(1..31))
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "The friendly name of the sensor humidity probe."
    ::= { humidityConfigurationEntry 1 }

humidityEnable  OBJECT-TYPE
    SYNTAX     EnableType
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Configure the humidity acquired or not.
         0:disabled, 1:enabled"
    ::= { humidityConfigurationEntry 2 }

humidityOffset  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Configure the offset (Minus or Plus) to be added to the acquired value
         in order to correct the probe measurement error. in tenth of % units."
    ::= { humidityConfigurationEntry 3 }

humidityAlarmEnable  OBJECT-TYPE
    SYNTAX     EnableType
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Configure the humidity alarm depending on the thresholds evaluated or not.
         0:disabled, 1:enabled"
    ::= { humidityConfigurationEntry 4 }

humidityThresholdLowWarning  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Low warning humidity threshold in tenth of % units."
    ::= { humidityConfigurationEntry 5 }

humidityThresholdLowCritical  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Low critical humidity threshold in tenth of % units."
    ::= { humidityConfigurationEntry 6 }

humidityThresholdHighWarning  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "High warning humidity threshold in tenth of % units."
    ::= { humidityConfigurationEntry 7 }

humidityThresholdHighCritical  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "High critical humidity threshold in tenth of % units."
    ::= { humidityConfigurationEntry 8 }

humidityThresholdHysteresis  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "humidity threshold hysteresis in tenth of % units."
    ::= { humidityConfigurationEntry 9 }

humidityAlarmGracePeriod  OBJECT-TYPE
    SYNTAX     Integer32 (1..60)
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "The grace period the alarm triggers after the acquired value crosses
         a trigger value (in seconds)."
    ::= { humidityConfigurationEntry 10 }


humidityMonitoringTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF HumidityMonitoringEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "A list of humidity probe monitoring.  The number of entries is
         given by sensorhumidityCount."
    ::= { humidity 3 }

humidityMonitoringEntry  OBJECT-TYPE
    SYNTAX     HumidityMonitoringEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "An entry for a humidity probe monitoring."
    INDEX { sensorIndex, humidityIndex }
    ::= { humidityMonitoringTable 1 }

HumidityMonitoringEntry ::= SEQUENCE {
    humidityAlarm
         AlarmType,
    humidityAlarmChangeSince
         UnixTimeStamp,
    humidityValue
         Integer32,
    humidityCommunicationStatus
         CommunicationStatus,
    humidityCommunicationStatusSince
         UnixTimeStamp
}

humidityAlarm  OBJECT-TYPE
    SYNTAX     AlarmType
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Alarm set according to the realtime measure compared to the thresholds."
    ::= { humidityMonitoringEntry 1 }

humidityAlarmChangeSince  OBJECT-TYPE
    SYNTAX     UnixTimeStamp
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "UTC time in seconds since 1970/01/01 dating the humidity alarm last change."
    ::= { humidityMonitoringEntry 2 }

humidityValue  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Realtime measured value after correction with the offset. in tenth of % units."
    ::= { humidityMonitoringEntry 3 }

humidityCommunicationStatus  OBJECT-TYPE
    SYNTAX     CommunicationStatus
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Indicates how the humidity probe is communicating or not."
    ::= { humidityMonitoringEntry 4 }

humidityCommunicationStatusSince  OBJECT-TYPE
    SYNTAX     UnixTimeStamp
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "UTC time in seconds since 1970/01/01 dating the humidity communication status last change."
    ::= { humidityMonitoringEntry 5 }


humidityMonitoringMinMaxTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF HumidityMonitoringMinMaxEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "A list of humidity probe monitoring Min and Max.  The number of entries is
         given by sensorhumidityCount."
    ::= { humidity 4 }

humidityMonitoringMinMaxEntry  OBJECT-TYPE
    SYNTAX     HumidityMonitoringMinMaxEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "An entry for a humidity probe monitoring Min and Max."
    INDEX { sensorIndex, humidityIndex }
    ::= { humidityMonitoringMinMaxTable 1 }

HumidityMonitoringMinMaxEntry ::= SEQUENCE {
    humidityMinValue
         Integer32,
    humidityMinValueSince
         UnixTimeStamp,
    humidityMaxValue
         Integer32,
    humidityMaxValueSince
         UnixTimeStamp,
    humidityResetMinMax
         ResetCommandType
}

humidityMinValue  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Minimum value registered since the 1st connection of the sensor or the last reset.
         in tenth of % units."
    ::= { humidityMonitoringMinMaxEntry 1 }

humidityMinValueSince  OBJECT-TYPE
    SYNTAX     UnixTimeStamp
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "UTC time in seconds since 1970/01/01 dating the humidity min value last change."
    ::= { humidityMonitoringMinMaxEntry 2 }

humidityMaxValue  OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Maximum value registered since the 1st connection of the sensor or the last reset.
         in tenth of % units."
    ::= { humidityMonitoringMinMaxEntry 3 }

humidityMaxValueSince  OBJECT-TYPE
    SYNTAX     UnixTimeStamp
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "UTC time in seconds since 1970/01/01 dating the humidity max value last change."
    ::= { humidityMonitoringMinMaxEntry 4 }

humidityResetMinMax  OBJECT-TYPE
    SYNTAX     ResetCommandType
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Command that resets the min and max data with the current measure.
         0:None, 1:Reset"
    ::= { humidityMonitoringMinMaxEntry 5 }


humidityNotification OBJECT IDENTIFIER ::= { humidity 0 }

notifyHumidityAlarm  NOTIFICATION-TYPE
    OBJECTS { sensorIndex,
              humidityIndex,
              humidityUuid,
              humidityAlarm,
              humidityAlarmChangeSince,
              humidityValue }
    STATUS     current
    DESCRIPTION 
        "Sent whenever the humidity alarm changes."
    ::= { humidityNotification 1 }

notifyHumidityCommunicationStatus  NOTIFICATION-TYPE
    OBJECTS { sensorIndex,
              humidityIndex,
              humidityUuid,
              humidityCommunicationStatus,
              humidityCommunicationStatusSince }
    STATUS     current
    DESCRIPTION 
        "Sent whenever the humidity communication status changes.
         Is not implemented when the probe is internal (see humidityConnectionType)."
    ::= { humidityNotification 2 }

-- -----------------------------------------------------------------------------


digitalInputIdentificationTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF DigitalInputIdentificationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "A list of digital input probe measurements.  The number of entries is
              given by sensorDigitalInputCount."
    ::= { digitalInput 1 }

digitalInputIdentificationEntry  OBJECT-TYPE
    SYNTAX     DigitalInputIdentificationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "An entry for a digital input identification."
    INDEX { sensorIndex, digitalInputIndex }
    ::= { digitalInputIdentificationTable 1 }

DigitalInputIdentificationEntry ::= SEQUENCE {
    digitalInputIndex
        Integer32,
    digitalInputUuid
        OCTET STRING,
    digitalInputConnectionType
        ProbeConnectionType
}

digitalInputIndex  OBJECT-TYPE
    SYNTAX     Integer32 (1..2)
    MAX-ACCESS accessible-for-notify
    STATUS     current
    DESCRIPTION 
        "A unique value for each digital input probe measurement.  Its value
              ranges from 1 to sensorDigitalInputCount."
    ::= { digitalInputIdentificationEntry 1 }

digitalInputUuid  OBJECT-TYPE
    SYNTAX     OCTET STRING
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "A unique uuid value for each digital Input."
    ::= { digitalInputIdentificationEntry 2 }

digitalInputConnectionType  OBJECT-TYPE
    SYNTAX     ProbeConnectionType
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Probe connection type with the sensor that monitors it."
    ::= { digitalInputIdentificationEntry 3 }


digitalInputConfigurationTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF DigitalInputConfigurationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "A list of digital input probe configuration.  The number of entries is
              given by sensorDigitalInputCount."
    ::= { digitalInput 2 }

digitalInputConfigurationEntry  OBJECT-TYPE
    SYNTAX     DigitalInputConfigurationEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "An entry for a digital input probe configuration."
    INDEX { sensorIndex, digitalInputIndex }
    ::= { digitalInputConfigurationTable 1 }

DigitalInputConfigurationEntry ::= SEQUENCE {
    digitalInputName
        OCTET STRING,
    digitalInputEnable
        EnableType,
    digitalInputPolarity
        PolarityType,
    digitalInputAlarmEnable
        EnableType,
    digitalInputAlarmSeverity
        AlarmSeverityType,
    digitalInputAlarmGracePeriod
        Integer32
}

digitalInputName  OBJECT-TYPE
    SYNTAX     OCTET STRING (SIZE(1..31))
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "The friendly name of the digital input probe."
    ::= { digitalInputConfigurationEntry 1 }

digitalInputEnable  OBJECT-TYPE
    SYNTAX     EnableType
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Configure the digital input acquired or not.
         0:disabled, 1:enabled"
    ::= { digitalInputConfigurationEntry 2 }

digitalInputPolarity  OBJECT-TYPE
    SYNTAX     PolarityType
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Configure the digitalInput polarity.
        0 : Normally opened, 1 : Normally closed"
    ::= { digitalInputConfigurationEntry 3 }

digitalInputAlarmEnable  OBJECT-TYPE
    SYNTAX     EnableType
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Configure the digitalInput alarm depending on the polarity evaluated or not.
         0:disabled, 1:enabled"
    ::= { digitalInputConfigurationEntry 4 }

digitalInputAlarmSeverity  OBJECT-TYPE
    SYNTAX     AlarmSeverityType
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "Configure the alarm severity."
    ::= { digitalInputConfigurationEntry 5 }

digitalInputAlarmGracePeriod  OBJECT-TYPE
    SYNTAX     Integer32 (1..60)
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION 
        "The delay the alarm triggers when the state change event occurs (in seconds)."
    ::= { digitalInputConfigurationEntry 6 }


digitalInputMonitoringTable  OBJECT-TYPE
    SYNTAX SEQUENCE OF DigitalInputMonitoringEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "A list of digital input probee monitoring.  The number of entries is
         given by sensorDigitalInputCount."
    ::= { digitalInput 3 }

digitalInputMonitoringEntry  OBJECT-TYPE
    SYNTAX     DigitalInputMonitoringEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION 
        "An entry for a digital Input probe."
    INDEX { sensorIndex, digitalInputIndex }
    ::= { digitalInputMonitoringTable 1 }

DigitalInputMonitoringEntry ::= SEQUENCE {
    digitalInputAlarm
         AlarmLevelType,
    digitalInputAlarmChangeSince
         UnixTimeStamp,
    digitalInputState
         Integer32,
    digitalInputStateSince
         UnixTimeStamp,
    digitalInputCommunicationStatus
         CommunicationStatus,
    digitalInputCommunicationStatusSince
         UnixTimeStamp
}

digitalInputAlarm  OBJECT-TYPE
    SYNTAX     AlarmLevelType
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Alarm set according to the polarity and alarm severity configuration."
    ::= { digitalInputMonitoringEntry 1 }

digitalInputAlarmChangeSince  OBJECT-TYPE
    SYNTAX     UnixTimeStamp
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "UTC time in seconds since 1970/01/01 dating the digital input alarm last change."
    ::= { digitalInputMonitoringEntry 2 }

digitalInputState  OBJECT-TYPE
    SYNTAX     StateType
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Measure of the digital input after applying the polarity configured.
         0 : Inactive, 1 : Active"
    ::= { digitalInputMonitoringEntry 3 }

digitalInputStateSince  OBJECT-TYPE
    SYNTAX     UnixTimeStamp
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "UTC time in seconds since 1970/01/01 dating the digital input state last change."
    ::= { digitalInputMonitoringEntry 4 }

digitalInputCommunicationStatus  OBJECT-TYPE
    SYNTAX     CommunicationStatus
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "Indicates how the digital input is communicating or not."
    ::= { digitalInputMonitoringEntry 5 }

digitalInputCommunicationStatusSince  OBJECT-TYPE
    SYNTAX     UnixTimeStamp
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION 
        "UTC time in seconds since 1970/01/01 dating the digital input communication status last change."
    ::= { digitalInputMonitoringEntry 6 }


digitalInputNotification OBJECT IDENTIFIER ::= { digitalInput 0 }

notifyDigitalInputAlarm  NOTIFICATION-TYPE
    OBJECTS { sensorIndex,
              digitalInputIndex,
              digitalInputUuid,
              digitalInputAlarm,
              digitalInputAlarmChangeSince,
              digitalInputState,
              digitalInputStateSince }
    STATUS     current
    DESCRIPTION 
        "Sent whenever the digital input alarm changes."
    ::= { digitalInputNotification 1 }

notifydigitalInputCommunicationStatus  NOTIFICATION-TYPE
    OBJECTS { sensorIndex,
              digitalInputIndex,
              digitalInputUuid,
              digitalInputCommunicationStatus,
              digitalInputCommunicationStatusSince }
    STATUS     current
    DESCRIPTION 
        "Sent whenever the digital input communication status changes.
         Is not implemented when the probe is internal (see digitalInputConnectionType)."
    ::= { digitalInputNotification 2 }


eatonSensorCompliances  MODULE-COMPLIANCE
    STATUS     current
    DESCRIPTION 
        "The requirements for conforming to the Sensor MIB."
    MODULE
        MANDATORY-GROUPS { sensorRequiredGroup } 
        GROUP sensorOptionalGroup
        DESCRIPTION 
        "Different sensors will support a subset of the defined objects."
        GROUP sensorNotifyGroup
        DESCRIPTION 
        "Different sensors will support a subset of the defined notifications."
    ::= { conformance 1 }

objectGroups         OBJECT IDENTIFIER ::= { conformance 2 }

sensorRequiredGroup  OBJECT-GROUP
    OBJECTS { sensorCount,
              sensorIndex,
              sensorManufacturer,
              sensorModel,
              sensorPartNumber,
              sensorSerialNumber,
              sensorFirmwareVersion,
              sensorName,
              sensorStatus,
              sensorStatusSince,
              sensorTemperatureCount,
              sensorHumidityCount,
              sensorDigitalInputCount,
              temperatureIndex,
              temperatureName,
              temperatureValue,
              temperatureUnit,
              humidityIndex,
              humidityName,
              humidityValue,
              digitalInputIndex,
              digitalInputName
            }
    STATUS     current
    DESCRIPTION 
        "These objects are required to conform to this MIB."
    ::= { objectGroups 1 }

sensorOptionalGroup  OBJECT-GROUP
    OBJECTS { sensorUuid,
              sensorConnectionType,
              sensorAddress,
              sensorMonitoredBy,
              sensorLocation,
              sensorPosition,
              sensorElevation,
              sensorUElevation,
              sensorAnalogInputCount,
              temperatureUuid,
              temperatureConnectionType,
              temperatureEnable,
              temperatureOffset,
              temperatureAlarmEnable,                                                 
              temperatureThresholdLowWarning,
              temperatureThresholdLowCritical,
              temperatureThresholdHighWarning,
              temperatureThresholdHighCritical,
              temperatureThresholdHysteresis,
              temperatureAlarmGracePeriod,
              temperatureAlarm,
              temperatureAlarmChangeSince,
              temperatureCommunicationStatus,
              temperatureCommunicationStatusSince,
              temperatureMinValue,
              temperatureMinValueSince,
              temperatureMaxValue,
              temperatureMaxValueSince,
              temperatureResetMinMax,
              humidityUuid,
              humidityConnectionType,
              humidityEnable,
              humidityOffset,
              humidityAlarmEnable,                                                 
              humidityThresholdLowWarning,
              humidityThresholdLowCritical,
              humidityThresholdHighWarning,
              humidityThresholdHighCritical,
              humidityThresholdHysteresis,
              humidityAlarmGracePeriod,
              humidityAlarm,
              humidityAlarmChangeSince,
              humidityCommunicationStatus,
              humidityCommunicationStatusSince,
              humidityMinValue,
              humidityMinValueSince,
              humidityMaxValue,
              humidityMaxValueSince,
              humidityResetMinMax,
              digitalInputUuid,
              digitalInputConnectionType,
              digitalInputEnable,
              digitalInputPolarity,
              digitalInputAlarmEnable,                                                 
              digitalInputAlarmSeverity,
              digitalInputAlarmGracePeriod,
              digitalInputState,
              digitalInputStateSince,
              digitalInputAlarm,
              digitalInputAlarmChangeSince,
              digitalInputCommunicationStatus,
              digitalInputCommunicationStatusSince
         }
    STATUS     current
    DESCRIPTION 
        "These objects in this MIB are optional."
    ::= { objectGroups 2 }

sensorNotifyGroup  NOTIFICATION-GROUP
    NOTIFICATIONS { notifySensorStatus,
                    notifySensorCount,
                    notifyTemperatureAlarm,
                    notifyTemperatureCommunicationStatus,
                    notifyHumidityAlarm,
                    notifyHumidityCommunicationStatus,
                    notifyDigitalInputAlarm,
                    notifydigitalInputCommunicationStatus
         }
    STATUS     current
    DESCRIPTION 
        "These notifications will be supported depending on the features of the sensor."
    ::= { objectGroups 3 }


END