- Remove PVC volume mount from k8s/deployment.yaml - Delete k8s/mib-pvc.yaml (no longer needed) - Update .gitignore to commit MIB files to git - Add mix import_mibs task to copy MIBs from LibreNMS - Add all MIB files from priv/mibs/ to git This fixes the multi-attach volume error in Kubernetes where new pods couldn't start because the RWO (ReadWriteOnce) PVC was attached to the old pod. MIBs are now part of the Docker image and can be used by all pods simultaneously.
32386 lines
819 KiB
Text
32386 lines
819 KiB
Text
-- MIB-module for Stulz WebInterfaceBoard
|
|
-- Generated on 2020-06-30 10:55:04
|
|
|
|
-- This MIB-module is used to access the Stulz WebInterfaceBoard 2 and the
|
|
-- devices it is connected to. It consists of two parts:
|
|
-- 1.) The subtree stulzWib.wibIntern contains datapoints regarding the
|
|
-- configuration of the WIB itself.
|
|
-- 2.) The subtree stulzWib.wibUnits contains the datapoints of the connected
|
|
-- units that can be accessed. These datapoints are contained in tables
|
|
-- that take three indexes:
|
|
-- * The bus-ID the device is connected to (1 or 2)
|
|
-- * The device-address (0 - 65535)
|
|
-- * The ID of the module to query (1 - 6 for devices with modules, e.g.
|
|
-- C6000, 1 for devices without modules, e.g. C7000)
|
|
-- Please note that a walk through this part of the MIB-module might take a
|
|
-- very long time. Also note that not all datapoints are supported by all
|
|
-- device-types.
|
|
|
|
Stulz-WIB8000-MIB DEFINITIONS ::= BEGIN
|
|
|
|
IMPORTS
|
|
|
|
OBJECT-TYPE, NOTIFICATION-TYPE, MODULE-IDENTITY, Integer32, Unsigned32, enterprises
|
|
FROM SNMPv2-SMI
|
|
OBJECT-GROUP, NOTIFICATION-GROUP
|
|
FROM SNMPv2-CONF
|
|
;
|
|
|
|
-- Path to root:
|
|
-- internet OBJECT IDENTIFIER ::= { iso org(3) dod(6) 1 }
|
|
-- private OBJECT IDENTIFIER ::= { internet 4 }
|
|
-- enterprises OBJECT IDENTIFIER ::= { private 1 }
|
|
|
|
-- Stulz-specific part
|
|
|
|
stulz MODULE-IDENTITY
|
|
LAST-UPDATED "202006301055Z"
|
|
ORGANIZATION "Stulz GmbH Klimatechnik"
|
|
CONTACT-INFO "info@stulz.com"
|
|
DESCRIPTION "Enterprise-subtree for Stulz devices"
|
|
::= { enterprises 29462}
|
|
|
|
stulzWib OBJECT IDENTIFIER ::= { stulz 10 }
|
|
wibIntern OBJECT IDENTIFIER ::= { stulzWib 1 }
|
|
wibUnits OBJECT IDENTIFIER ::= { stulzWib 2 }
|
|
settings OBJECT IDENTIFIER ::= { wibIntern 1 }
|
|
wibGroups OBJECT IDENTIFIER ::= { wibIntern 11 }
|
|
wibAlarms OBJECT IDENTIFIER ::= { wibIntern 12 }
|
|
wibAlarmPrefix OBJECT IDENTIFIER ::= { wibAlarms 0 }
|
|
|
|
-- Submenues for internal datapoints
|
|
|
|
wib OBJECT IDENTIFIER ::= { settings 1 }
|
|
networkSettings OBJECT IDENTIFIER ::= { settings 2 }
|
|
mailSettings OBJECT IDENTIFIER ::= { settings 3 }
|
|
busSettings OBJECT IDENTIFIER ::= { settings 4 }
|
|
alarmSettings OBJECT IDENTIFIER ::= { settings 5 }
|
|
unitSettings OBJECT IDENTIFIER ::= { settings 6 }
|
|
loggingSettings OBJECT IDENTIFIER ::= { settings 7 }
|
|
eventSettings OBJECT IDENTIFIER ::= { settings 8 }
|
|
snmpSettings OBJECT IDENTIFIER ::= { settings 9 }
|
|
|
|
wibAlarmText OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Text of trap-body"
|
|
::= { wibAlarms 10 }
|
|
|
|
-- Definitions for indexes
|
|
|
|
wibIndexTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF WibIndexEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for defining the index values"
|
|
::= { wibIntern 13 }
|
|
|
|
wibIndexEntry OBJECT-TYPE
|
|
SYNTAX WibIndexEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the index table"
|
|
INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { wibIndexTable 1 }
|
|
|
|
WibIndexEntry ::= SEQUENCE {
|
|
wibBusNumber Integer32,
|
|
wibDeviceAddress Integer32,
|
|
wibModuleNumber Integer32
|
|
}
|
|
|
|
wibBusNumber OBJECT-TYPE
|
|
SYNTAX Integer32 (1..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Busnumber (1 or 2)"
|
|
::= { wibIndexEntry 393270 }
|
|
|
|
wibDeviceAddress OBJECT-TYPE
|
|
SYNTAX Integer32 (0..65536)
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Address of device (0 - 65536)"
|
|
::= { wibIndexEntry 393271 }
|
|
|
|
wibModuleNumber OBJECT-TYPE
|
|
SYNTAX Integer32 (1..6)
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Number of module (1 - 6)"
|
|
::= { wibIndexEntry 393272 }
|
|
|
|
-- WIB-settings
|
|
-- ============
|
|
|
|
wibUnitname OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Shows name of Stulz WebInterfaceBoard"
|
|
::= { wib 65536 }
|
|
|
|
wibTempUnit OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Temperature-unit"
|
|
::= { wib 65538 }
|
|
|
|
wibFirmware OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Shows firmware version of Stulz WIB 8000"
|
|
::= { wib 65540 }
|
|
|
|
wibsettingAuxInLow OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"wibsettingAuxInLow"
|
|
::= { wib 65551 }
|
|
|
|
wibsettingAuxInHigh OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"wibsettingAuxInHigh"
|
|
::= { wib 65552 }
|
|
|
|
wibsettingAuxInMailaddress OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"wibsettingAuxInMailaddress"
|
|
::= { wib 65553 }
|
|
|
|
wibsettingAuxInSubject OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"wibsettingAuxInSubject"
|
|
::= { wib 65554 }
|
|
|
|
wibsettingAuxInState OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"wibsettingAuxInState"
|
|
::= { wib 65555 }
|
|
|
|
-- Network-settings
|
|
-- ================
|
|
networksettingUseDhcp OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"networksettingUseDhcp"
|
|
::= { networkSettings 6 }
|
|
|
|
-- Mail-Settings
|
|
-- =============
|
|
mailsettingSenderAddress OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"mailsettingSenderAddress"
|
|
::= { mailSettings 262144 }
|
|
|
|
mailsettingSmtpServer OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"mailsettingSmtpServer"
|
|
::= { mailSettings 262145 }
|
|
|
|
mailsettingSmtpPort OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"mailsettingSmtpPort"
|
|
::= { mailSettings 262146 }
|
|
|
|
mailsettingSmtpUser OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"mailsettingSmtpUser"
|
|
::= { mailSettings 262147 }
|
|
|
|
mailsettingSmtpPassword OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"mailsettingSmtpPassword"
|
|
::= { mailSettings 262148 }
|
|
|
|
mailsettingSmtpAuthentication OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"mailsettingSmtpAuthentication"
|
|
::= { mailSettings 262149 }
|
|
|
|
-- Bus-settings
|
|
-- ============
|
|
|
|
bussettingPackettimeoutMsBus0 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"bussettingPackettimeoutMsBus0"
|
|
::= { busSettings 196608 }
|
|
|
|
bussettingPackettimeoutMsBus1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"bussettingPackettimeoutMsBus1"
|
|
::= { busSettings 196609 }
|
|
|
|
bussettingCachetimeoutSBus0 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"bussettingCachetimeoutSBus0"
|
|
::= { busSettings 196610 }
|
|
|
|
bussettingCachetimeoutSBus1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"bussettingCachetimeoutSBus1"
|
|
::= { busSettings 196611 }
|
|
|
|
bussettingLogintervalSBus0 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"bussettingLogintervalSBus0"
|
|
::= { busSettings 196612 }
|
|
|
|
bussettingLogintervalSBus1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"bussettingLogintervalSBus1"
|
|
::= { busSettings 196613 }
|
|
|
|
-- Alarm-settings
|
|
-- ==============
|
|
alarmsettingMaxalarmdelayS OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"alarmsettingMaxalarmdelayS"
|
|
::= { alarmSettings 131072 }
|
|
|
|
-- Table for 5 alarm-mailreceiver-entries
|
|
alarmMailTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF AlarmMailEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu alarmSettings"
|
|
::= { alarmSettings 1 }
|
|
|
|
alarmMailEntry OBJECT-TYPE
|
|
SYNTAX AlarmMailEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu alarmSettings"
|
|
INDEX { wibAlarmEntryNumber }
|
|
::= { alarmMailTable 1 }
|
|
|
|
AlarmMailEntry ::= SEQUENCE {
|
|
wibAlarmEntryNumber Unsigned32,
|
|
alarmsettingMailaddress1 OCTET STRING,
|
|
alarmsettingMailsubject1 OCTET STRING,
|
|
alarmsettingStarttime1 Unsigned32,
|
|
alarmsettingStoptime1 Unsigned32,
|
|
alarmsettingWeekday1 Unsigned32
|
|
}
|
|
|
|
alarmsettingMailaddress1 OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"alarmsettingMailaddress1"
|
|
::= { alarmMailEntry 131073 }
|
|
|
|
alarmsettingMailsubject1 OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"alarmsettingMailsubject1"
|
|
::= { alarmMailEntry 131078 }
|
|
|
|
alarmsettingStarttime1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"alarmsettingStarttime1"
|
|
::= { alarmMailEntry 131083 }
|
|
|
|
alarmsettingStoptime1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"alarmsettingStoptime1"
|
|
::= { alarmMailEntry 131088 }
|
|
|
|
alarmsettingWeekday1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"alarmsettingWeekday1"
|
|
::= { alarmMailEntry 131093 }
|
|
|
|
wibAlarmEntryNumber OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"wibAlarmEntryNumber"
|
|
::= { alarmMailEntry 1 }
|
|
-- End of alarm-table
|
|
|
|
-- Unit-settings
|
|
-- =============
|
|
|
|
-- Table for unit-settings, index is bus-number and device-address
|
|
unitTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF UnitEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu unitSettings"
|
|
::= { unitSettings 1 }
|
|
|
|
unitEntry OBJECT-TYPE
|
|
SYNTAX UnitEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu unitSettings"
|
|
INDEX { wibBusNumber, wibDeviceAddress }
|
|
::= { unitTable 1 }
|
|
|
|
UnitEntry ::= SEQUENCE {
|
|
unitsettingName OCTET STRING,
|
|
unitsettingHwType Unsigned32,
|
|
unitsettingType Unsigned32,
|
|
unitsettingReachability Unsigned32,
|
|
unitsettingHasFailure Unsigned32,
|
|
unitsettingFamily Unsigned32
|
|
}
|
|
|
|
unitsettingName OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unitsettingName"
|
|
::= { unitEntry 393221 }
|
|
|
|
unitsettingHwType OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unitsettingHwType"
|
|
::= { unitEntry 393222 }
|
|
|
|
unitsettingType OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unitsettingType"
|
|
::= { unitEntry 393223 }
|
|
|
|
unitsettingReachability OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unitsettingReachability"
|
|
::= { unitEntry 393224 }
|
|
|
|
unitsettingHasFailure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unitsettingHasFailure"
|
|
::= { unitEntry 393243 }
|
|
|
|
unitsettingFamily OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unitsettingFamily"
|
|
::= { unitEntry 393251 }
|
|
-- End of unit-table
|
|
|
|
-- Logging
|
|
-- =======
|
|
wibsettingLogmailAddress OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"wibsettingLogmailAddress"
|
|
::= { loggingSettings 65541 }
|
|
|
|
wibsettingLogmailIntervalS OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"wibsettingLogmailIntervalS"
|
|
::= { loggingSettings 65542 }
|
|
|
|
-- Table for logged datapoints, index is bus-number, device-address and module-number
|
|
|
|
logUnitTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF LogUnitEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu loggingSettings"
|
|
::= { loggingSettings 1 }
|
|
|
|
logUnitEntry OBJECT-TYPE
|
|
SYNTAX LogUnitEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu loggingSettings"
|
|
AUGMENTS { wibIndexEntry }
|
|
::= { logUnitTable 1 }
|
|
|
|
LogUnitEntry ::= SEQUENCE {
|
|
unitsettingLoggedDp1 Unsigned32,
|
|
unitsettingLoggedDp2 Unsigned32,
|
|
unitsettingLoggedDp3 Unsigned32,
|
|
unitsettingLoggedDp4 Unsigned32,
|
|
unitsettingLoggedDp5 Unsigned32
|
|
}
|
|
|
|
unitsettingLoggedDp1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unitsettingLoggedDp1"
|
|
::= { logUnitEntry 393216 }
|
|
|
|
unitsettingLoggedDp2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unitsettingLoggedDp2"
|
|
::= { logUnitEntry 393217 }
|
|
|
|
unitsettingLoggedDp3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unitsettingLoggedDp3"
|
|
::= { logUnitEntry 393218 }
|
|
|
|
unitsettingLoggedDp4 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unitsettingLoggedDp4"
|
|
::= { logUnitEntry 393219 }
|
|
|
|
unitsettingLoggedDp5 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unitsettingLoggedDp5"
|
|
::= { logUnitEntry 393220 }
|
|
-- End of logging-table
|
|
|
|
-- Event-notification
|
|
-- ==================
|
|
wibsettingEventmailAddress OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"wibsettingEventmailAddress"
|
|
::= { eventSettings 65543 }
|
|
|
|
wibsettingEventmailIntervalS OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"wibsettingEventmailIntervalS"
|
|
::= { eventSettings 65544 }
|
|
|
|
-- SNMP-settings
|
|
-- =============
|
|
snmpsettingReadcomm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"snmpsettingReadcomm"
|
|
::= { snmpSettings 327680 }
|
|
|
|
snmpsettingWritecomm OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"snmpsettingWritecomm"
|
|
::= { snmpSettings 327681 }
|
|
|
|
snmpsettingtrpComm OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"snmpsettingtrpComm"
|
|
::= { snmpSettings 327682 }
|
|
|
|
snmpsettingtrpReceiver OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE(0..64))
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"snmpsettingtrpReceiver"
|
|
::= { snmpSettings 327683 }
|
|
|
|
snmpsettingtrpPort OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"snmpsettingtrpPort"
|
|
::= { snmpSettings 327684 }
|
|
|
|
-- Group containing all settings-datapoints
|
|
wibSettingsGroup OBJECT-GROUP
|
|
OBJECTS {wibUnitname, wibTempUnit, wibFirmware,
|
|
wibsettingAuxInLow, wibsettingAuxInHigh,
|
|
wibsettingAuxInMailaddress, wibsettingAuxInSubject,
|
|
wibsettingAuxInState,
|
|
networksettingUseDhcp, mailsettingSenderAddress,
|
|
mailsettingSmtpServer, mailsettingSmtpPort,
|
|
mailsettingSmtpUser, mailsettingSmtpPassword,
|
|
mailsettingSmtpAuthentication,
|
|
bussettingPackettimeoutMsBus0,
|
|
bussettingPackettimeoutMsBus1, bussettingCachetimeoutSBus0,
|
|
bussettingCachetimeoutSBus1, bussettingLogintervalSBus0,
|
|
bussettingLogintervalSBus1, alarmsettingMaxalarmdelayS,
|
|
alarmsettingMailaddress1, alarmsettingMailsubject1, alarmsettingStarttime1,
|
|
alarmsettingStoptime1, alarmsettingWeekday1, unitsettingName,
|
|
unitsettingHwType, unitsettingType,unitsettingReachability,unitsettingHasFailure,unitsettingFamily,
|
|
wibsettingLogmailAddress, wibsettingLogmailIntervalS,
|
|
unitsettingLoggedDp1, unitsettingLoggedDp2,
|
|
unitsettingLoggedDp3, unitsettingLoggedDp4,
|
|
unitsettingLoggedDp5, wibsettingEventmailAddress,
|
|
wibsettingEventmailIntervalS,
|
|
snmpsettingReadcomm, snmpsettingWritecomm,
|
|
snmpsettingtrpComm, snmpsettingtrpReceiver,
|
|
snmpsettingtrpPort}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Group for all settings"
|
|
::= {wibGroups 1}
|
|
|
|
-- =============================
|
|
-- trp-Definitions for AC-Units
|
|
-- =============================
|
|
|
|
stulzAlarmNotificationGroup NOTIFICATION-GROUP
|
|
NOTIFICATIONS {
|
|
trpairflow1,
|
|
trpairflow2,
|
|
trpairflow3,
|
|
trphighpressure1,
|
|
trphighpressure2,
|
|
trpwaterDetector,
|
|
trpphasecheck,
|
|
trpfireSmoke,
|
|
trpreturnAirTempTooHighAlarm,
|
|
trpreturnAirHumidTooHighAlarm,
|
|
trpsupplyAirTempTooHighAlarm,
|
|
trpsupplyAirHumidTooHighAlarm,
|
|
trpwaterTempTooHighAlarm,
|
|
trpreturnAirTempTooLowAlarm,
|
|
trpreturnAirHumidTooLowAlarm,
|
|
trpsupplyAirTempTooLowAlarm,
|
|
trpsupplyAirHumidTooLowAlarm,
|
|
trpwaterTempTooLowAlarm,
|
|
trpsensor1LimitAlarm,
|
|
trpsensor2LimitAlarm,
|
|
trpsensor3LimitAlarm,
|
|
trpsensor4LimitAlarm,
|
|
trpsensor5LimitAlarm,
|
|
trpsensor6LimitAlarm,
|
|
trpsensor7LimitAlarm,
|
|
trpsensor8LimitAlarm,
|
|
trpsensor9LimitAlarm,
|
|
trpsensor10LimitAlarm,
|
|
trpsensor11LimitAlarm,
|
|
trpsensor12LimitAlarm,
|
|
trpsensor13LimitAlarm,
|
|
trpsensor14LimitAlarm,
|
|
trpsensor15LimitAlarm,
|
|
trpsensor16LimitAlarm,
|
|
trpsensor17LimitAlarm,
|
|
trpsensor18LimitAlarm,
|
|
trpsensor19LimitAlarm,
|
|
trpsensor20LimitAlarm,
|
|
trpsensor21LimitAlarm,
|
|
trpsensor1DefectAlarm,
|
|
trpsensor2DefectAlarm,
|
|
trpsensor3DefectAlarm,
|
|
trpsensor4DefectAlarm,
|
|
trpsensor5DefectAlarm,
|
|
trpsensor6DefectAlarm,
|
|
trpsensor7DefectAlarm,
|
|
trpsensor8DefectAlarm,
|
|
trpsensor9DefectAlarm,
|
|
trpsensor10DefectAlarm,
|
|
trpsensor11DefectAlarm,
|
|
trpsensor12DefectAlarm,
|
|
trpsensor13DefectAlarm,
|
|
trpsensor14DefectAlarm,
|
|
trpsensor15DefectAlarm,
|
|
trpsensor16DefectAlarm,
|
|
trpsensor17DefectAlarm,
|
|
trpsensor18DefectAlarm,
|
|
trpsensor19DefectAlarm,
|
|
trpsensor20DefectAlarm,
|
|
trpsensor21DefectAlarm,
|
|
trpcompr1Alarm,
|
|
trpcompr2Alarm,
|
|
trpcompr1LowPressAlarm,
|
|
trpcompr2LowPressAlarm,
|
|
trpelecHeating1Alarm,
|
|
trpelecHeating2Alarm,
|
|
trpelecHeating3Alarm,
|
|
trpelecHeating4Alarm,
|
|
trpdrycooler1Alarm,
|
|
trpdrycooler2Alarm,
|
|
trpdrycooler3Alarm,
|
|
trpdrycooler4Alarm,
|
|
trppump1Alarm,
|
|
trppump2Alarm,
|
|
trppump3Alarm,
|
|
trppump4Alarm,
|
|
trphumidifier1Alarm,
|
|
trphumidifier2Alarm,
|
|
trphumidifier3Alarm,
|
|
trphumidifier1Alarm5uS,
|
|
trphumidifier2Alarm5uS,
|
|
trphumidifier3Alarm5uS,
|
|
trphumidifier1Alarm20uS,
|
|
trphumidifier2Alarm20uS,
|
|
trphumidifier3Alarm20uS,
|
|
trpfan1Alarm,
|
|
trpfan2Alarm,
|
|
trpfan3Alarm,
|
|
trpfan1FilterAlarm,
|
|
trpfan2FilterAlarm,
|
|
trpfan3FilterAlarm,
|
|
trpextAlarm1Active,
|
|
trpextAlarm2Active,
|
|
trpextAlarm3Active,
|
|
trpextAlarm4Active,
|
|
trpextAlarm5Active,
|
|
trpextAlarm6Active,
|
|
trpextAlarm7Active,
|
|
trpextAlarm8Active,
|
|
trpextAlarm9Active,
|
|
trpextAlarm10Active,
|
|
trphotgasHeatingAlarm,
|
|
trpeev1PressureSensorError,
|
|
trpeev1TemperatureSensorError,
|
|
trpeev1StepperMotorError,
|
|
trpeev2PressureSensorError,
|
|
trpeev2TemperatureSensorError,
|
|
trpeev2StepperMotorError,
|
|
trpwaterflowFailure,
|
|
trpunitOffline,
|
|
trpalarmQueryError,
|
|
trpcompr3LowPressAlarm,
|
|
trpcompr4LowPressAlarm,
|
|
trpcompr5LowPressAlarm,
|
|
trpcompr6LowPressAlarm,
|
|
trpcondensor1Alarm,
|
|
trpcondensor2Alarm,
|
|
trpoutAirTempTooHigh,
|
|
trpoutAirTempTooLow,
|
|
trpioExtError,
|
|
trpwaterOutTempTooHigh,
|
|
trpwaterOutTempTooLow,
|
|
trpfreeze,
|
|
trpunit1Failure,
|
|
trpunit2Failure,
|
|
trptransmissionFailure,
|
|
trpcontrollerFailure,
|
|
trpreheaterFailure,
|
|
trproomHighPressureAlarm,
|
|
trpfilter1Alarm,
|
|
trpfilter2Alarm,
|
|
trpfilter3Alarm,
|
|
trpcomp1ciruitBreakerAlarm,
|
|
trpcomp2ciruitBreakerAlarm,
|
|
trpfan1blockedAlarm,
|
|
trpfan2blockedAlarm,
|
|
trppowerFailureAlarm,
|
|
trpcomp1MotorprotectAlarm,
|
|
trpcomp2MotorprotectAlarm,
|
|
trpintrusionAlarm,
|
|
trpcondFan1blockedAlarm,
|
|
trpcondFan2blockedAlarm,
|
|
trpintTempProbeAlarm,
|
|
trpextTempProbeAlarm,
|
|
trpcondTempProbeAlarm,
|
|
trpsuply1TempProbeAlarm,
|
|
trpsuply2TempProbeAlarm,
|
|
trpmovEvapAlarm,
|
|
trpfanThermMotorProtAlarm,
|
|
trpextFilterAlarm,
|
|
trpwaterTempIn1lowAlarm,
|
|
trpwaterTempIn1highAlarm,
|
|
trpwaterTempOut1lowAlarm,
|
|
trpwaterTempOut1highAlarm,
|
|
trpwaterTempIn2lowAlarm,
|
|
trpwaterTempIn2highAlarm,
|
|
trpwaterTempOut2lowAlarm,
|
|
trpwaterTempOut2highAlarm,
|
|
trpalarmMailnotSentAlarm,
|
|
trplogMailnotSentAlarm,
|
|
trpeventMailnotSentAlarm,
|
|
trpcannotStartUnitAlarm,
|
|
trpcannotStopUnitAlarm,
|
|
trpeev1reliabilityAlarm,
|
|
trpeev2reliabilityAlarm,
|
|
trpcondFan3blockedAlarm,
|
|
trpcondFan4blockedAlarm,
|
|
trpcondFan5blockedAlarm,
|
|
trpcondFan6blockedAlarm,
|
|
trpfan2ThermMotorProtAlarm,
|
|
trpfan3ThermMotorProtAlarm,
|
|
trpwaterflowTooHighAlarm,
|
|
trpsuply3TempProbeAlarm,
|
|
trpreturn1TempProbeAlarm,
|
|
trpreturn2TempProbeAlarm,
|
|
trpreturn3TempProbeAlarm,
|
|
trpinverterGeneralAlarm,
|
|
trpinverterGlobalAlarm,
|
|
trpinverterOfflineAlarm,
|
|
trphumidifierThermicAlarm,
|
|
trpcondensateWaterLevelAlarm,
|
|
trpoutdoorUnitAlarm,
|
|
trpoutdoorUnitCommunicationAlarm,
|
|
trpminimumTemperatureAlarm,
|
|
trpmaximumTemperatureAlarm,
|
|
trpiccCompressorShutOff,
|
|
trpiccProbeBrokenB3,
|
|
trpiccProbeBrokenB4,
|
|
trpiccProbeBrokenB5,
|
|
trpiccProbeBrokenB6,
|
|
trpiccMaxDischargePressure,
|
|
trpiccMinSuctionPressure,
|
|
trpiccDischargeTemperature,
|
|
trpiccPressuredifferenceTooLow,
|
|
trpiccCompressorStartFailure,
|
|
trpiccCompressorOutOfWorkEnv,
|
|
trpiccEEVlowSuperheat,
|
|
trpiccEEVmopAlarm,
|
|
trpiccEEVsuctionTempTooLow,
|
|
trpiccEVDevotunesAlarm,
|
|
trpiccEVDregulationAlarm,
|
|
trpiccEVDevoSystemProbeError,
|
|
trpiccgeneralInverterError,
|
|
trpiccInverterCommunicationLost,
|
|
trpiccCommunicationLost,
|
|
trpiccInverterIncompatible,
|
|
trpMaxDeltaPexceeded,
|
|
trpCondFanThermalProtection,
|
|
trpOil1OilLevelAlarmCompressor1,
|
|
trpOil2OilLevelAlarmCompressor2,
|
|
trpprotectionDeviceCompressor1,
|
|
trpprotectionDeviceCompressor2,
|
|
trpprotectionDeviceCompressor3,
|
|
trpprotectionDeviceCompressor4,
|
|
trpprotectionDeviceCompressor5,
|
|
trpprotectionDeviceCompressor6,
|
|
trpuPCalarmShutOffCompressor,
|
|
trpuPCiocOffline,
|
|
trpuPCglobalAlarm,
|
|
trpuPCdeltaPtooHigh,
|
|
trpuPCdpStartDisable,
|
|
trpComp1MinOilLevelAlarm,
|
|
trpComp2MinOilLevelAlarm,
|
|
trpComp3MinOilLevelAlarm,
|
|
trpComp4MinOilLevelAlarm,
|
|
trpComp5MinOilLevelAlarm,
|
|
trpComp6MinOilLevelAlarm,
|
|
trpComp1CircuitbreakerAlarm,
|
|
trpComp2CircuitbreakerAlarm,
|
|
trpComp3CircuitbreakerAlarm,
|
|
trpComp4CircuitbreakerAlarm,
|
|
trpComp5CircuitbreakerAlarm,
|
|
trpComp6CircuitbreakerAlarm,
|
|
trpComp1EnvelopLeftAlarm,
|
|
trpComp2EnvelopLeftAlarm,
|
|
trpComp3EnvelopLeftAlarm,
|
|
trpComp4EnvelopLeftAlarm,
|
|
trpComp5EnvelopLeftAlarm,
|
|
trpComp6EnvelopLeftAlarm,
|
|
trpFreecoolingFailedAlarm,
|
|
trpSupAirPresTooHighAlarm,
|
|
trpSupAirPresTooLowAlarm,
|
|
trpWaterflowfailure2Alarm,
|
|
trpExternalUnit1Alarm,
|
|
trpFreecoolingValveFeedbackAlarm,
|
|
trpSupAirPresTooHighPreAlarm,
|
|
trpSupAirPresTooLowPreAlarm,
|
|
trpFrostCirculationAlarm,
|
|
trpPhaseFailure1Alarm,
|
|
trpPhaseFailure2Alarm,
|
|
trpPhaseFailure3Alarm,
|
|
trpPhaseFailure4Alarm,
|
|
trpLouver1Alarm,
|
|
trpLouver2Alarm,
|
|
trpLouver3Alarm,
|
|
trpFan4Alarm,
|
|
trpFan4FilterAlarm,
|
|
trpExternalUnit2Alarm
|
|
}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"List of all notifications supported by the WIB"
|
|
::= { wibGroups 2 }
|
|
|
|
|
|
trpairflow1 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap airflow1"
|
|
::= { wibAlarmPrefix 1 }
|
|
|
|
trpairflow2 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap airflow2"
|
|
::= { wibAlarmPrefix 2}
|
|
|
|
trpairflow3 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap airflow3"
|
|
::= { wibAlarmPrefix 3}
|
|
|
|
trphighpressure1 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap highpressure1"
|
|
::= { wibAlarmPrefix 4}
|
|
|
|
trphighpressure2 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap highpressure2"
|
|
::= { wibAlarmPrefix 5}
|
|
|
|
trpwaterDetector NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap waterDetector"
|
|
::= { wibAlarmPrefix 6}
|
|
|
|
trpphasecheck NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap phasecheck"
|
|
::= { wibAlarmPrefix 7}
|
|
|
|
trpfireSmoke NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap fireSmoke"
|
|
::= { wibAlarmPrefix 8}
|
|
|
|
trpreturnAirTempTooHighAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap returnAirTempTooHighAlarm"
|
|
::= { wibAlarmPrefix 9}
|
|
|
|
trpreturnAirHumidTooHighAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap returnAirHumidTooHighAlarm"
|
|
::= { wibAlarmPrefix 10}
|
|
|
|
trpsupplyAirTempTooHighAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap supplyAirTempTooHighAlarm"
|
|
::= { wibAlarmPrefix 11}
|
|
|
|
trpsupplyAirHumidTooHighAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap supplyAirHumidTooHighAlarm"
|
|
::= { wibAlarmPrefix 12}
|
|
|
|
trpwaterTempTooHighAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap waterTempTooHighAlarm"
|
|
::= { wibAlarmPrefix 13}
|
|
|
|
trpreturnAirTempTooLowAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap returnAirTempTooLowAlarm"
|
|
::= { wibAlarmPrefix 14}
|
|
|
|
trpreturnAirHumidTooLowAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap returnAirHumidTooLowAlarm"
|
|
::= { wibAlarmPrefix 15}
|
|
|
|
trpsupplyAirTempTooLowAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap supplyAirTempTooLowAlarm"
|
|
::= { wibAlarmPrefix 16}
|
|
|
|
trpsupplyAirHumidTooLowAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap supplyAirHumidTooLowAlarm"
|
|
::= { wibAlarmPrefix 17}
|
|
|
|
trpwaterTempTooLowAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap waterTempTooLowAlarm"
|
|
::= { wibAlarmPrefix 18}
|
|
|
|
trpsensor1LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor1LimitAlarm"
|
|
::= { wibAlarmPrefix 19}
|
|
|
|
trpsensor2LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor2LimitAlarm"
|
|
::= { wibAlarmPrefix 20}
|
|
|
|
trpsensor3LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor3LimitAlarm"
|
|
::= { wibAlarmPrefix 21}
|
|
|
|
trpsensor4LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor4LimitAlarm"
|
|
::= { wibAlarmPrefix 22}
|
|
|
|
trpsensor5LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor5LimitAlarm"
|
|
::= { wibAlarmPrefix 23}
|
|
|
|
trpsensor6LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor6LimitAlarm"
|
|
::= { wibAlarmPrefix 24}
|
|
|
|
trpsensor7LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor7LimitAlarm"
|
|
::= { wibAlarmPrefix 25}
|
|
|
|
trpsensor8LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor8LimitAlarm"
|
|
::= { wibAlarmPrefix 26}
|
|
|
|
trpsensor9LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor9LimitAlarm"
|
|
::= { wibAlarmPrefix 27}
|
|
|
|
trpsensor10LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor10LimitAlarm"
|
|
::= { wibAlarmPrefix 28}
|
|
|
|
trpsensor11LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor11LimitAlarm"
|
|
::= { wibAlarmPrefix 29}
|
|
|
|
trpsensor12LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor12LimitAlarm"
|
|
::= { wibAlarmPrefix 30}
|
|
|
|
trpsensor13LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor13LimitAlarm"
|
|
::= { wibAlarmPrefix 31}
|
|
|
|
trpsensor14LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor14LimitAlarm"
|
|
::= { wibAlarmPrefix 32}
|
|
|
|
trpsensor15LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor15LimitAlarm"
|
|
::= { wibAlarmPrefix 33}
|
|
|
|
trpsensor16LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor16LimitAlarm"
|
|
::= { wibAlarmPrefix 34}
|
|
|
|
trpsensor17LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor17LimitAlarm"
|
|
::= { wibAlarmPrefix 35}
|
|
|
|
trpsensor18LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor18LimitAlarm"
|
|
::= { wibAlarmPrefix 36}
|
|
|
|
trpsensor19LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor19LimitAlarm"
|
|
::= { wibAlarmPrefix 37}
|
|
|
|
trpsensor20LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor20LimitAlarm"
|
|
::= { wibAlarmPrefix 38}
|
|
|
|
trpsensor21LimitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor21LimitAlarm"
|
|
::= { wibAlarmPrefix 39}
|
|
|
|
trpsensor1DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor1DefectAlarm"
|
|
::= { wibAlarmPrefix 40}
|
|
|
|
trpsensor2DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor2DefectAlarm"
|
|
::= { wibAlarmPrefix 41}
|
|
|
|
trpsensor3DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor3DefectAlarm"
|
|
::= { wibAlarmPrefix 42}
|
|
|
|
trpsensor4DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor4DefectAlarm"
|
|
::= { wibAlarmPrefix 43}
|
|
|
|
trpsensor5DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor5DefectAlarm"
|
|
::= { wibAlarmPrefix 44}
|
|
|
|
trpsensor6DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor6DefectAlarm"
|
|
::= { wibAlarmPrefix 45}
|
|
|
|
trpsensor7DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor7DefectAlarm"
|
|
::= { wibAlarmPrefix 46}
|
|
|
|
trpsensor8DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor8DefectAlarm"
|
|
::= { wibAlarmPrefix 47}
|
|
|
|
trpsensor9DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor9DefectAlarm"
|
|
::= { wibAlarmPrefix 48}
|
|
|
|
trpsensor10DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor10DefectAlarm"
|
|
::= { wibAlarmPrefix 49}
|
|
|
|
trpsensor11DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor11DefectAlarm"
|
|
::= { wibAlarmPrefix 50}
|
|
|
|
trpsensor12DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor12DefectAlarm"
|
|
::= { wibAlarmPrefix 51}
|
|
|
|
trpsensor13DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor13DefectAlarm"
|
|
::= { wibAlarmPrefix 52}
|
|
|
|
trpsensor14DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor14DefectAlarm"
|
|
::= { wibAlarmPrefix 53}
|
|
|
|
trpsensor15DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor15DefectAlarm"
|
|
::= { wibAlarmPrefix 54}
|
|
|
|
trpsensor16DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor16DefectAlarm"
|
|
::= { wibAlarmPrefix 55}
|
|
|
|
trpsensor17DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor17DefectAlarm"
|
|
::= { wibAlarmPrefix 56}
|
|
|
|
trpsensor18DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor18DefectAlarm"
|
|
::= { wibAlarmPrefix 57}
|
|
|
|
trpsensor19DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor19DefectAlarm"
|
|
::= { wibAlarmPrefix 58}
|
|
|
|
trpsensor20DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor20DefectAlarm"
|
|
::= { wibAlarmPrefix 59}
|
|
|
|
trpsensor21DefectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap sensor21DefectAlarm"
|
|
::= { wibAlarmPrefix 60}
|
|
|
|
trpcompr1Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap compr1Alarm"
|
|
::= { wibAlarmPrefix 61}
|
|
|
|
trpcompr2Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap compr2Alarm"
|
|
::= { wibAlarmPrefix 62}
|
|
|
|
trpcompr1LowPressAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap compr1LowPressAlarm"
|
|
::= { wibAlarmPrefix 63}
|
|
|
|
trpcompr2LowPressAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap compr2LowPressAlarm"
|
|
::= { wibAlarmPrefix 64}
|
|
|
|
trpelecHeating1Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap elecHeating1Alarm"
|
|
::= { wibAlarmPrefix 65}
|
|
|
|
trpelecHeating2Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap elecHeating2Alarm"
|
|
::= { wibAlarmPrefix 66}
|
|
|
|
trpelecHeating3Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap elecHeating3Alarm"
|
|
::= { wibAlarmPrefix 67}
|
|
|
|
trpelecHeating4Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap elecHeating4Alarm"
|
|
::= { wibAlarmPrefix 68}
|
|
|
|
trpdrycooler1Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap drycooler1Alarm"
|
|
::= { wibAlarmPrefix 69}
|
|
|
|
trpdrycooler2Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap drycooler2Alarm"
|
|
::= { wibAlarmPrefix 70}
|
|
|
|
trpdrycooler3Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap drycooler3Alarm"
|
|
::= { wibAlarmPrefix 71}
|
|
|
|
trpdrycooler4Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap drycooler4Alarm"
|
|
::= { wibAlarmPrefix 72}
|
|
|
|
trppump1Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap pump1Alarm"
|
|
::= { wibAlarmPrefix 73}
|
|
|
|
trppump2Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap pump2Alarm"
|
|
::= { wibAlarmPrefix 74}
|
|
|
|
trppump3Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap pump3Alarm"
|
|
::= { wibAlarmPrefix 75}
|
|
|
|
trppump4Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap pump4Alarm"
|
|
::= { wibAlarmPrefix 76}
|
|
|
|
trphumidifier1Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap humidifier1Alarm"
|
|
::= { wibAlarmPrefix 77}
|
|
|
|
trphumidifier2Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap humidifier2Alarm"
|
|
::= { wibAlarmPrefix 78}
|
|
|
|
trphumidifier3Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap humidifier3Alarm"
|
|
::= { wibAlarmPrefix 79}
|
|
|
|
trphumidifier1Alarm5uS NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap humidifier1Alarm5uS"
|
|
::= { wibAlarmPrefix 80}
|
|
|
|
trphumidifier2Alarm5uS NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap humidifier2Alarm5uS"
|
|
::= { wibAlarmPrefix 81}
|
|
|
|
trphumidifier3Alarm5uS NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap humidifier3Alarm5uS"
|
|
::= { wibAlarmPrefix 82}
|
|
|
|
trphumidifier1Alarm20uS NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap humidifier1Alarm20uS"
|
|
::= { wibAlarmPrefix 83}
|
|
|
|
trphumidifier2Alarm20uS NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap humidifier2Alarm20uS"
|
|
::= { wibAlarmPrefix 84}
|
|
|
|
trphumidifier3Alarm20uS NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap humidifier3Alarm20uS"
|
|
::= { wibAlarmPrefix 85}
|
|
|
|
trpfan1Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap fan1Alarm"
|
|
::= { wibAlarmPrefix 86}
|
|
|
|
trpfan2Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap fan2Alarm"
|
|
::= { wibAlarmPrefix 87}
|
|
|
|
trpfan3Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap fan3Alarm"
|
|
::= { wibAlarmPrefix 88}
|
|
|
|
trpfan1FilterAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap fan1FilterAlarm"
|
|
::= { wibAlarmPrefix 89}
|
|
|
|
trpfan2FilterAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap fan2FilterAlarm"
|
|
::= { wibAlarmPrefix 90}
|
|
|
|
trpfan3FilterAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap fan3FilterAlarm"
|
|
::= { wibAlarmPrefix 91}
|
|
|
|
trpextAlarm1Active NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap extAlarm1Active"
|
|
::= { wibAlarmPrefix 92}
|
|
|
|
trpextAlarm2Active NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap extAlarm2Active"
|
|
::= { wibAlarmPrefix 93}
|
|
|
|
trpextAlarm3Active NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap extAlarm3Active"
|
|
::= { wibAlarmPrefix 94}
|
|
|
|
trpextAlarm4Active NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap extAlarm4Active"
|
|
::= { wibAlarmPrefix 95}
|
|
|
|
trpextAlarm5Active NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap extAlarm5Active"
|
|
::= { wibAlarmPrefix 96}
|
|
|
|
trpextAlarm6Active NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap extAlarm6Active"
|
|
::= { wibAlarmPrefix 97}
|
|
|
|
trpextAlarm7Active NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap extAlarm7Active"
|
|
::= { wibAlarmPrefix 98}
|
|
|
|
trpextAlarm8Active NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap extAlarm8Active"
|
|
::= { wibAlarmPrefix 99}
|
|
|
|
trpextAlarm9Active NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap extAlarm9Active"
|
|
::= { wibAlarmPrefix 100}
|
|
|
|
trpextAlarm10Active NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap extAlarm10Active"
|
|
::= { wibAlarmPrefix 101}
|
|
|
|
trphotgasHeatingAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap hotgasHeatingAlarm"
|
|
::= { wibAlarmPrefix 102}
|
|
|
|
trpeev1PressureSensorError NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap eev1PressureSensorError"
|
|
::= { wibAlarmPrefix 103}
|
|
|
|
trpeev1TemperatureSensorError NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap eev1TemperatureSensorError"
|
|
::= { wibAlarmPrefix 104}
|
|
|
|
trpeev1StepperMotorError NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap eev1StepperMotorError"
|
|
::= { wibAlarmPrefix 105}
|
|
|
|
trpeev2PressureSensorError NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap eev2PressureSensorError"
|
|
::= { wibAlarmPrefix 106}
|
|
|
|
trpeev2TemperatureSensorError NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap eev2TemperatureSensorError"
|
|
::= { wibAlarmPrefix 107}
|
|
|
|
trpeev2StepperMotorError NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap eev2StepperMotorError"
|
|
::= { wibAlarmPrefix 108}
|
|
|
|
trpwaterflowFailure NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap waterflowFailure"
|
|
::= { wibAlarmPrefix 109}
|
|
|
|
trpunitOffline NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap Unit offline"
|
|
::= { wibAlarmPrefix 110}
|
|
|
|
trpalarmQueryError NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap Alarms queried too quickly"
|
|
::= { wibAlarmPrefix 111}
|
|
|
|
trpcompr3LowPressAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap compr3LowPressAlarm"
|
|
::= { wibAlarmPrefix 112}
|
|
|
|
trpcompr4LowPressAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap compr4LowPressAlarm"
|
|
::= { wibAlarmPrefix 113}
|
|
|
|
trpcompr5LowPressAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap compr5LowPressAlarm"
|
|
::= { wibAlarmPrefix 114}
|
|
|
|
trpcompr6LowPressAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap compr6LowPressAlarm"
|
|
::= { wibAlarmPrefix 115}
|
|
|
|
trpcondensor1Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap condensor1Alarm"
|
|
::= { wibAlarmPrefix 116}
|
|
|
|
trpcondensor2Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap condensor2Alarm"
|
|
::= { wibAlarmPrefix 117}
|
|
|
|
trpoutAirTempTooHigh NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap outAirTempTooHigh"
|
|
::= { wibAlarmPrefix 118}
|
|
|
|
trpoutAirTempTooLow NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap outAirTempTooLow"
|
|
::= { wibAlarmPrefix 119}
|
|
|
|
trpioExtError NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap ioExtError"
|
|
::= { wibAlarmPrefix 120}
|
|
|
|
trpwaterOutTempTooHigh NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap waterOutTempTooHigh"
|
|
::= { wibAlarmPrefix 121}
|
|
|
|
trpwaterOutTempTooLow NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap waterOutTempTooLow"
|
|
::= { wibAlarmPrefix 122}
|
|
|
|
trpfreeze NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap freeze"
|
|
::= { wibAlarmPrefix 123 }
|
|
|
|
trpunit1Failure NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap unit1Failure"
|
|
::= { wibAlarmPrefix 124}
|
|
|
|
trpunit2Failure NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap unit2Failure"
|
|
::= { wibAlarmPrefix 125}
|
|
|
|
trptransmissionFailure NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap transmissionFailure"
|
|
::= { wibAlarmPrefix 126}
|
|
|
|
trpcontrollerFailure NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap controllerFailure"
|
|
::= { wibAlarmPrefix 127}
|
|
|
|
trpreheaterFailure NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap reheatFailure"
|
|
::= { wibAlarmPrefix 128}
|
|
|
|
trproomHighPressureAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap room pressure to high"
|
|
::= { wibAlarmPrefix 129}
|
|
|
|
trpfilter1Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap Filter 1 clogged"
|
|
::= { wibAlarmPrefix 130}
|
|
|
|
trpfilter2Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap Filter 2 clogged"
|
|
::= { wibAlarmPrefix 131}
|
|
|
|
trpfilter3Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap Filter 3 clogged"
|
|
::= { wibAlarmPrefix 132}
|
|
|
|
trpcomp1ciruitBreakerAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap compressor 1 circuit breaker triggered"
|
|
::= { wibAlarmPrefix 133}
|
|
|
|
trpcomp2ciruitBreakerAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap compressor 2 circuit breaker triggered"
|
|
::= { wibAlarmPrefix 134}
|
|
|
|
trpfan1blockedAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap fan 1 blocked"
|
|
::= { wibAlarmPrefix 135}
|
|
|
|
trpfan2blockedAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap fan 2 blocked"
|
|
::= { wibAlarmPrefix 136}
|
|
|
|
trppowerFailureAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap power failure"
|
|
::= { wibAlarmPrefix 137}
|
|
|
|
trpcomp1MotorprotectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap compressor 1 motor protection triggered"
|
|
::= { wibAlarmPrefix 138}
|
|
|
|
trpcomp2MotorprotectAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap compressor 2 motor protection triggered"
|
|
::= { wibAlarmPrefix 139}
|
|
|
|
trpintrusionAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap intrusion alarm"
|
|
::= { wibAlarmPrefix 140}
|
|
|
|
trpcondFan1blockedAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap condensor fan 1 blocked"
|
|
::= { wibAlarmPrefix 141}
|
|
|
|
trpcondFan2blockedAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap condensor fan 2 blocked"
|
|
::= { wibAlarmPrefix 142}
|
|
|
|
trpintTempProbeAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap internal temperature probe error"
|
|
::= { wibAlarmPrefix 143}
|
|
|
|
trpextTempProbeAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap external temperature probe error"
|
|
::= { wibAlarmPrefix 144}
|
|
|
|
trpcondTempProbeAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap condensor temperature probe error"
|
|
::= { wibAlarmPrefix 145}
|
|
|
|
trpsuply1TempProbeAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap supply temperature probe 1 error"
|
|
::= { wibAlarmPrefix 146}
|
|
|
|
trpsuply2TempProbeAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap supply temperature probe 2 error"
|
|
::= { wibAlarmPrefix 147}
|
|
|
|
trpmovEvapAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap movable evaporator error"
|
|
::= { wibAlarmPrefix 148}
|
|
|
|
trpfanThermMotorProtAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap fan thermal motor protection triggered"
|
|
::= { wibAlarmPrefix 149}
|
|
|
|
trpextFilterAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap external filter alarm"
|
|
::= { wibAlarmPrefix 150}
|
|
|
|
trpwaterTempIn1lowAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap water temmperature at inlet 1 too low"
|
|
::= { wibAlarmPrefix 151}
|
|
|
|
trpwaterTempIn1highAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap water temmperature at inlet 1 too high"
|
|
::= { wibAlarmPrefix 152}
|
|
|
|
trpwaterTempOut1lowAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap water temmperature at outlet 1 too low"
|
|
::= { wibAlarmPrefix 153}
|
|
|
|
trpwaterTempOut1highAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap water temmperature at outlet 1 too high"
|
|
::= { wibAlarmPrefix 154}
|
|
|
|
trpwaterTempIn2lowAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap water temmperature at inlet 2 too low"
|
|
::= { wibAlarmPrefix 155}
|
|
|
|
trpwaterTempIn2highAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap water temmperature at inlet 2 too high"
|
|
::= { wibAlarmPrefix 156}
|
|
|
|
trpwaterTempOut2lowAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap water temmperature at outlet 2 too low"
|
|
::= { wibAlarmPrefix 157}
|
|
|
|
trpwaterTempOut2highAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap water temmperature at outlet 2 too high"
|
|
::= { wibAlarmPrefix 158}
|
|
|
|
trpalarmMailnotSentAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap can not send alarm email"
|
|
::= { wibAlarmPrefix 159}
|
|
|
|
trplogMailnotSentAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap can not send datalog email"
|
|
::= { wibAlarmPrefix 160}
|
|
|
|
trpeventMailnotSentAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap can not send event email"
|
|
::= { wibAlarmPrefix 161}
|
|
|
|
trpcannotStartUnitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap can not switch on unit"
|
|
::= { wibAlarmPrefix 162}
|
|
|
|
trpcannotStopUnitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap can not switch off unit"
|
|
::= { wibAlarmPrefix 163}
|
|
|
|
trpeev1reliabilityAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap eev 1 reliability alarm"
|
|
::= { wibAlarmPrefix 164}
|
|
|
|
trpeev2reliabilityAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"trap eev 2 reliability alarm"
|
|
::= { wibAlarmPrefix 165}
|
|
|
|
trpcondFan3blockedAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan 3 blocked alarm"
|
|
::= { wibAlarmPrefix 166}
|
|
|
|
trpcondFan4blockedAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan 4 blocked alarm"
|
|
::= { wibAlarmPrefix 167}
|
|
|
|
|
|
trpcondFan5blockedAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan 5 blocked alarm"
|
|
::= { wibAlarmPrefix 168}
|
|
|
|
|
|
trpcondFan6blockedAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan 6 blocked alarm"
|
|
::= { wibAlarmPrefix 169}
|
|
|
|
|
|
trpfan2ThermMotorProtAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan 2 thermal motorprotection triggered alarm"
|
|
::= { wibAlarmPrefix 170}
|
|
|
|
|
|
trpfan3ThermMotorProtAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan 3 thermal motorprotection triggered alarm"
|
|
::= { wibAlarmPrefix 171}
|
|
|
|
|
|
trpwaterflowTooHighAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"waterflow too high alarm"
|
|
::= { wibAlarmPrefix 172}
|
|
|
|
|
|
trpsuply3TempProbeAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply temperature probe 3 alarm"
|
|
::= { wibAlarmPrefix 173}
|
|
|
|
trpreturn1TempProbeAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"return temperature probe 1 alarm"
|
|
::= { wibAlarmPrefix 174}
|
|
|
|
trpreturn2TempProbeAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"return temperature probe 2 alarm"
|
|
::= { wibAlarmPrefix 175}
|
|
|
|
trpreturn3TempProbeAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"return temperature probe 3 alarm"
|
|
::= { wibAlarmPrefix 176}
|
|
|
|
trpinverterGeneralAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"inverter general alarm"
|
|
::= { wibAlarmPrefix 177}
|
|
|
|
trpinverterGlobalAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"inverter global alarm"
|
|
::= { wibAlarmPrefix 178}
|
|
|
|
trpinverterOfflineAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"inverter offline alarm"
|
|
::= { wibAlarmPrefix 179}
|
|
|
|
|
|
trphumidifierThermicAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier thermal protection alarm"
|
|
::= { wibAlarmPrefix 180}
|
|
|
|
|
|
trpcondensateWaterLevelAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"condensate water level alarm"
|
|
::= { wibAlarmPrefix 181}
|
|
|
|
|
|
trpoutdoorUnitAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"outdoor unit alarm"
|
|
::= { wibAlarmPrefix 182}
|
|
|
|
|
|
trpoutdoorUnitCommunicationAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"outdoor unit communication alarm"
|
|
::= { wibAlarmPrefix 183}
|
|
|
|
|
|
trpminimumTemperatureAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"minimum temperature alarm"
|
|
::= { wibAlarmPrefix 184}
|
|
|
|
|
|
trpmaximumTemperatureAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"maximum temperature alarm"
|
|
::= { wibAlarmPrefix 185}
|
|
|
|
trpiccCompressorShutOff NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC state that shut of the compressor"
|
|
::= { wibAlarmPrefix 186}
|
|
|
|
trpiccProbeBrokenB3 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC probe B3 broken"
|
|
::= { wibAlarmPrefix 187}
|
|
|
|
trpiccProbeBrokenB4 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC probe B4 broken"
|
|
::= { wibAlarmPrefix 188}
|
|
|
|
trpiccProbeBrokenB5 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC probe B5 broken"
|
|
::= { wibAlarmPrefix 189}
|
|
|
|
trpiccProbeBrokenB6 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC probe B6 broken"
|
|
::= { wibAlarmPrefix 190}
|
|
|
|
trpiccMaxDischargePressure NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC maximum discharge pressure exceeded"
|
|
::= { wibAlarmPrefix 191}
|
|
|
|
trpiccMinSuctionPressure NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC below minimum suction pressure"
|
|
::= { wibAlarmPrefix 192}
|
|
|
|
trpiccDischargeTemperature NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC discharge temperature alarm"
|
|
::= { wibAlarmPrefix 193}
|
|
|
|
trpiccPressuredifferenceTooLow NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC pressure difference lower than minimum"
|
|
::= { wibAlarmPrefix 194}
|
|
|
|
trpiccCompressorStartFailure NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC compressor failed to start"
|
|
::= { wibAlarmPrefix 195}
|
|
|
|
trpiccCompressorOutOfWorkEnv NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC compressor exceeds max time working out of its envelope"
|
|
::= { wibAlarmPrefix 196}
|
|
|
|
trpiccEEVlowSuperheat NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC EEV low superheat alarm"
|
|
::= { wibAlarmPrefix 197}
|
|
|
|
trpiccEEVmopAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC EEV mop alarm"
|
|
::= { wibAlarmPrefix 198}
|
|
|
|
trpiccEEVsuctionTempTooLow NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC EEV suction temperature too low"
|
|
::= { wibAlarmPrefix 199}
|
|
|
|
trpiccEVDevotunesAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC evd evotuned alarm"
|
|
::= { wibAlarmPrefix 200}
|
|
|
|
trpiccEVDregulationAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC evd evo regulation alarm"
|
|
::= { wibAlarmPrefix 201}
|
|
|
|
trpiccEVDevoSystemProbeError NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC evd evo system alarm prober error"
|
|
::= { wibAlarmPrefix 202}
|
|
|
|
|
|
trpiccgeneralInverterError NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC general inverter error"
|
|
::= { wibAlarmPrefix 203}
|
|
|
|
trpiccInverterCommunicationLost NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC communication with power inverter lost"
|
|
::= { wibAlarmPrefix 204}
|
|
|
|
|
|
trpiccCommunicationLost NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC communication with icc controller lost"
|
|
::= { wibAlarmPrefix 205}
|
|
|
|
trpiccInverterIncompatible NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC inverter incompatible"
|
|
::= { wibAlarmPrefix 206}
|
|
|
|
|
|
trpMaxDeltaPexceeded NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"max delta p exceeded"
|
|
::= { wibAlarmPrefix 207}
|
|
|
|
trpCondFanThermalProtection NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"condensor fan thermal protection"
|
|
::= { wibAlarmPrefix 208}
|
|
|
|
trpOil1OilLevelAlarmCompressor1 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"oil level alarm compressor 1"
|
|
::= { wibAlarmPrefix 209}
|
|
|
|
trpOil2OilLevelAlarmCompressor2 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"oil level alarm compressor 2"
|
|
::= { wibAlarmPrefix 210}
|
|
|
|
trpprotectionDeviceCompressor1 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 1 protection device triggered"
|
|
::= { wibAlarmPrefix 211}
|
|
|
|
trpprotectionDeviceCompressor2 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 2 protection device triggered"
|
|
::= { wibAlarmPrefix 212}
|
|
|
|
trpprotectionDeviceCompressor3 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 3 protection device triggered"
|
|
::= { wibAlarmPrefix 213}
|
|
|
|
trpprotectionDeviceCompressor4 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 4 protection device triggered"
|
|
::= { wibAlarmPrefix 214}
|
|
|
|
trpprotectionDeviceCompressor5 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 5 protection device triggered"
|
|
::= { wibAlarmPrefix 215}
|
|
|
|
trpprotectionDeviceCompressor6 NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 6 protection device triggered"
|
|
::= { wibAlarmPrefix 216}
|
|
|
|
trpuPCalarmShutOffCompressor NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"uPC alarm state that shut off the compressor"
|
|
::= { wibAlarmPrefix 217}
|
|
|
|
trpuPCiocOffline NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"uPC BMS offline"
|
|
::= { wibAlarmPrefix 218}
|
|
|
|
trpuPCglobalAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"uPC global general alarm"
|
|
::= { wibAlarmPrefix 219}
|
|
|
|
trpuPCdeltaPtooHigh NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"uPC delta P larger than allowable at startup"
|
|
::= { wibAlarmPrefix 220}
|
|
|
|
trpuPCdpStartDisable NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"uPC difference pressure start disable alarm"
|
|
::= { wibAlarmPrefix 221}
|
|
|
|
trpComp1MinOilLevelAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 1 minimum oil level alarm"
|
|
::= { wibAlarmPrefix 222}
|
|
|
|
trpComp2MinOilLevelAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 2 minimum oil level alarm"
|
|
::= { wibAlarmPrefix 223}
|
|
|
|
trpComp3MinOilLevelAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 3 minimum oil level alarm"
|
|
::= { wibAlarmPrefix 224}
|
|
|
|
trpComp4MinOilLevelAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 4 minimum oil level alarm"
|
|
::= { wibAlarmPrefix 225}
|
|
|
|
trpComp5MinOilLevelAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 5 minimum oil level alarm"
|
|
::= { wibAlarmPrefix 226}
|
|
|
|
trpComp6MinOilLevelAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 6 minimum oil level alarm"
|
|
::= { wibAlarmPrefix 227}
|
|
|
|
trpComp1CircuitbreakerAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 1 circuitbreaker triggered alarm"
|
|
::= { wibAlarmPrefix 228}
|
|
|
|
trpComp2CircuitbreakerAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 2 circuitbreaker triggered alarm"
|
|
::= { wibAlarmPrefix 229}
|
|
|
|
trpComp3CircuitbreakerAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 3 circuitbreaker triggered alarm"
|
|
::= { wibAlarmPrefix 230}
|
|
|
|
trpComp4CircuitbreakerAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 4 circuitbreaker triggered alarm"
|
|
::= { wibAlarmPrefix 231}
|
|
|
|
trpComp5CircuitbreakerAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 5 circuitbreaker triggered alarm"
|
|
::= { wibAlarmPrefix 232}
|
|
|
|
trpComp6CircuitbreakerAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 6 circuitbreaker triggered alarm"
|
|
::= { wibAlarmPrefix 233}
|
|
|
|
trpComp1EnvelopLeftAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 1 left operating envelop alarm"
|
|
::= { wibAlarmPrefix 234}
|
|
|
|
trpComp2EnvelopLeftAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 2 left operating envelop alarm"
|
|
::= { wibAlarmPrefix 235}
|
|
|
|
trpComp3EnvelopLeftAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 3 left operating envelop alarm"
|
|
::= { wibAlarmPrefix 236}
|
|
|
|
trpComp4EnvelopLeftAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 4 left operating envelop alarm"
|
|
::= { wibAlarmPrefix 237}
|
|
|
|
trpComp5EnvelopLeftAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 5 left operating envelop alarm"
|
|
::= { wibAlarmPrefix 238}
|
|
|
|
trpComp6EnvelopLeftAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 6 left operating envelop alarm"
|
|
::= { wibAlarmPrefix 239}
|
|
|
|
trpFreecoolingFailedAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling failed"
|
|
::= { wibAlarmPrefix 240}
|
|
|
|
trpSupAirPresTooHighAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply air pressure too high"
|
|
::= { wibAlarmPrefix 241}
|
|
|
|
trpSupAirPresTooLowAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply air pressure too low"
|
|
::= { wibAlarmPrefix 242}
|
|
|
|
trpWaterflowfailure2Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"waterflow failure 2"
|
|
::= { wibAlarmPrefix 243}
|
|
|
|
trpExternalUnit1Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"external unit 1 alarm"
|
|
::= { wibAlarmPrefix 244}
|
|
|
|
trpFreecoolingValveFeedbackAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling valve feedback alarm"
|
|
::= { wibAlarmPrefix 245}
|
|
|
|
trpSupAirPresTooHighPreAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"prealarm supplyair pressure too high"
|
|
::= { wibAlarmPrefix 246}
|
|
|
|
trpSupAirPresTooLowPreAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"prealarm supplyair pressure too low"
|
|
::= { wibAlarmPrefix 247}
|
|
|
|
trpFrostCirculationAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"frost circulation"
|
|
::= { wibAlarmPrefix 248}
|
|
|
|
trpPhaseFailure1Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"phase 1 failure"
|
|
::= { wibAlarmPrefix 249}
|
|
|
|
trpPhaseFailure2Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"phase 2 failure"
|
|
::= { wibAlarmPrefix 250}
|
|
|
|
trpPhaseFailure3Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"phase 3 failure"
|
|
::= { wibAlarmPrefix 251}
|
|
|
|
trpPhaseFailure4Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"phase 4 failure"
|
|
::= { wibAlarmPrefix 252}
|
|
|
|
trpLouver1Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver 1 alarm"
|
|
::= { wibAlarmPrefix 253}
|
|
|
|
trpLouver2Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver 2 alarm"
|
|
::= { wibAlarmPrefix 254}
|
|
|
|
trpLouver3Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver 3 alarm"
|
|
::= { wibAlarmPrefix 255}
|
|
|
|
trpFan4Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan 4 alarm"
|
|
::= { wibAlarmPrefix 256}
|
|
|
|
trpFan4FilterAlarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan 4 filter alarm"
|
|
::= { wibAlarmPrefix 257}
|
|
|
|
trpExternalUnit2Alarm NOTIFICATION-TYPE
|
|
OBJECTS {wibAlarmText}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"external unit 2 alarm"
|
|
::= { wibAlarmPrefix 258}
|
|
|
|
-- End of trap definitions
|
|
wibObjects OBJECT-GROUP
|
|
OBJECTS {wibFirmware, wibAlarmText, wibBusNumber, unitType, sWVersion, numberOfModules, globalAdress, hardwareTypeControllerType, generalError, busalarm, busalarmcommon, busadrconflict, busadrconflictcommon, busalarmprio, busalarmdelay, busadrconflictprio, busadrconflictdelay, unitFamily, pCSTOPMonitoringBMSStop1, rEMOTESTOPContact, lOCALSTOP, tIMERSTOPWeeklyOper, sEQStop0No1Yes, wARMUPSTOPDelayedStart, remoteUPS, localUPS, resetManualOperation, commonAlarm, resetAllAlarms, unitOnOff, maintenanceNecessary, unitWinterMode, dayNightMode, cW2ChangeOver, cW2ChangeOverState, oTEModeOff, unitStartByRemoteOnOff, unitLastMaintenanceYear, unitLastMaintenanceMonth, unitLastMaintenanceDay, unitMaintenanceIntervall, unitRuntimeUnit, unitStoptimeUnit, unitRuntimeCooling, unitRuntimeHeating, unitRuntimeHumidification, unitRuntimeDehumidification, unitAirTemperature, unitHumidity, unitEmergencyTemperature, unitSetpointTemperatureDay, unitSetpointTemperatureNight, unitSetpointAirTratureCorrected, unitSetpointHumidity, unitSetpointHumidityCorrected, temperatureSetpointShift, unitControlTypeAirAcUnits, limitedControlStartTemperature, limitedControlLiangeTemperature, limitedControlStartHumidity, limitedControlLiaryRangeHumidity, unitWinterModeStarttemp, unitWinterModeHysteresis, unitIntegralFactor, waterInTemperatu1ChillersPrimary, unitReturnAirTemperature, unitSupplyAirTemperature, unitReturnAirHumidity, unitSupplyAirHumidity, unitOutsideAirTemperature, unitOutsideAirHumidity, unitCoolingPriority, outsideTemperatureForPressure, gradientForPressure, waterInTemperatuhillersSecondary, unitRuntimeFreecooling, unitRuntimeFreecoolMixmode, unitStartDelay, waterOutTemperatChillersPrimary, waterOutTemperatillersSecondary, currentRaisedFloorPressure, setpointRaisedFloorPressure, universalTemperature1, unitSetpointWaterPressure, unitCurrentWaterPressure, unitSetpointCondPressureMixMode, unitSetpointCondonPressureDXMode, unitSetpointCondPressure2MixMode, unitSetpointCondPressure2DXMode, limitedControlStartTemperature2, controlTypeWaterChiller, freezeCirculationStarttemp, freezeCirculationStopHysteresis, pump12SequencingTime, pump12HandoverTime, waterTemperatureSetpoint1, waterTemperatureSetpoint2, unitOverloadSwitchOnByWatertemp, waterTemperaturetpointCorrected, unitSupplyAirTemperature3, unitReturnAirTemperature2, unitReturnAirTemperature3, unitReturnAirTemrnAirTemperature, unitSupplyAirTemlyAirTemperature, unitSupplyAirTemperature2, waterFlowVolume, setpointAirDewpoint, airDewpoint, returnAirDewpoint, supplyAirDewpoint, outsideAirDewpoint, electricEnergy, effectiveElectricPower, setpointRoomPressure, currentRoomPressure, limitedControlMinimumTemperature, limitedControlMaximumTemperature, currentAirVolumeFlow, outsideMoistureCmForFreeCooling, outsideMoistureCisForFreeCooling, outsideMoistureCtentCurrentValue, unitSetpointCondPressureDynamic1, unitSetpointCondPressureDynamic2, compressorCabinetTemp, electricCabinetTemp, intermediateTempMixTemp, limitWaterInlet1MinTemperature, limitWaterInlet1MaxTemperature, limitWaterOutlet1MinTemperature, limitWaterOutlet1MaxTemperature, limitWaterInlet2MinTemperature, limitWaterInlet2MaxTemperature, limitWaterOutlet2MinTemperature, limitWaterOutlet2MaxTemperature, waterInlet1MinTeatureAlarmdelay, waterInlet1MaxTeatureAlarmdelay, waterOutlet1MinTratureAlarmdelay, waterOutlet1MaxTratureAlarmdelay, waterInlet2MinTeatureAlarmdelay, waterInlet2MaxTeatureAlarmdelay, waterOutlet2MinTratureAlarmdelay, waterOutlet2MaxTratureAlarmdelay, waterInlet1MinTeeratureAlarmprio, waterInlet1MaxTeeratureAlarmprio, waterOutlet1MinTratureAlarmprio, waterOutlet1MaxTratureAlarmprio, waterInlet2MinTeeratureAlarmprio, waterInlet2MaxTeeratureAlarmprio, waterOutlet2MinTratureAlarmprio, waterOutlet2MaxTratureAlarmprio, waterInlet1MinTeatureCommonalarm, waterInlet1MaxTeatureCommonalarm, waterOutlet1MinTtureCommonalarm, waterOutlet1MaxTtureCommonalarm, waterInlet2MinTeatureCommonalarm, waterInlet2MaxTeatureCommonalarm, waterOutlet2MinTtureCommonalarm, waterOutlet2MaxTtureCommonalarm, circuit1LPManagemmonAlarmConfig, circuit1LPManagementDigitalIn, circuit1LPManagementAlarmdelay, circuit1LPManagentAlarmpriority, circuit1LPManagementTime, circuit1LPManagementMinPressure, circuit1LPManagementTries, circuit1HPManagemmonAlarmConfig, circuit1HPManagementDigitalIn, circuit1HPManagementAlarmdelay, circuit1HPManagentAlarmpriority, circuit1HPManagementTime, circuit1HPManagementMaxPressure, circuit1HPManagementTries, circuit1HPManagementMode, circuit1CondensireHighAlarmdelay, circuit2LPManagemmonAlarmConfig, circuit2LPManagementDigitalIn, circuit2LPManagementAlarmdelay, circuit2LPManagentAlarmpriority, circuit2LPManagementTime, circuit2LPManagementMinPressure, circuit2LPManagementTries, circuit2HPManagemmonAlarmConfig, circuit2HPManagementDigitalIn, circuit2HPManagementAlarmdelay, circuit2HPManagentAlarmpriority, circuit2HPManagementTime, circuit2HPManagementMaxPressure, circuit2HPManagementTries, circuit2HPManagementMode, commonAlarmDOUT, winterModeFCPossibleDOUT, remoteOnOffDIN, upsDIN, fireAlarmDIN, waterAlarmDIN, waterflowAlarmDIN, phaseAlarmDIN, cWDisableDXEnableDIN, temperatureAOUT, humidityAOUT, fireAlarmPriorities, fireAlarmDelay, waterAlarmPriorities, waterAlarmDelay, phaseAlarmPriorities, phaseAlarmDelay, maintenanceAlarmPrio, waterflowAlarmPriority, waterflowAlarmDelay, freezeAlarmDelay, localStopDigitalOut, freecoolingDOUTAuallyCoolingByFC, freeCoolingWinterModeAnalogAout, unitOnOffDOUT, unitFreecoolingDolerReleaseDout, fanRunningDOUT, pCStopDigitalOut, limitSupplyAirPrsureTooHighLimit, limitSupplyAirPrsureTooHighDelay, limitSupplyAirPrTooHighDoutPrio, limitSupplyAirPrsureTooLowLimit, limitSupplyAirPrsureTooLowDelay, limitSupplyAirPrreTooLowDoutPrio, unitCurrentSupplyAirPressure, unitSetpointSupplyAirPressure, apparentElectricPower, apparentElectricwerExternalLimit, eER, waterFlowVolumeB, coolingPower, fireAlarmCommonAlarmConfig, waterAlarmCommonAlarmConfig, phaseAlarmCommonAlarmConfig, maintenanceCommonAlarmConfig, autoRestartAfterPhaseAlarm, waterflowAlarmCommonAlarmConfig, upsActionFan, upsActionCooling, upsActionHeating, upsActionHumidification, upsActionDehumidification, unitCooling, unitHeating, unitHumidification, unitDehumidification, numberOfEDIO, numberOfEAIO, typeOfEBUS, numberOfCompressors, numberOfSuctionValve, numberOfDrycoolers, numberOfPumps, numberOfEHeatings, numberOfHumidifiers, numberOfFans, numberOfLouvers, numberOfSensors, numberOfExtAlarmIn, numberOfGeCwValves, numberOfHotgasReheat, numberOfPwwHeatings, numberOfDehumidifiers, numberOfEEIO, numberOfEEVs, coldWaterRequest, freezeCirculationRunning, coolingEnable, fans, bMSStop2, condensationPressureDynamic1, condensationPressureDynamic2, numberOfHotgasBypass, coolingMode, numberGValves, numberOfCondenserFans, numberOfAELouvers, condensationPresmic1SetpointEp1, condensationPresmic1SetpointCp1, condensationPresmic1SetpointEp2, condensationPresmic1SetpointCp2, condensationPresmic2SetpointEp1, condensationPresmic2SetpointCp1, condensationPresmic2SetpointEp2, condensationPresmic2SetpointCp2, dIN1, dIN2, dIN3, dIN4, dIN5, dIN6, dIN7, dIN8, dIN9, dIN10, dIN11, dIN12, dIN13, dIN14, dIN15, dIN16, dIN17, dIN18, dIN19, dIN20, dIN21, dIN22, dIN23, dIN24, dIN25, dIN26, dIN27, dIN28, dIN29, dIN30, dIN31, dIN32, dIN33, dIN34, dIN35, dIN36, dIN37, dIN38, dIN39, dIN40, dIN41, dIN42, dIN43, dOUT1, dOUT2, dOUT3, dOUT4, dOUT5, dOUT6, dOUT7, dOUT8, dOUT9, dOUT10, dOUT11, dOUT12, dOUT13, dOUT14, dOUT15, dOUT16, dOUT17, dOUT18, dOUT19, dOUT20, dOUT21, dOUT22, dOUT23, dOUT24, dOUT25, dOUT26, dOUT27, dOUT28, dOUT29, dOUT30, dOUT31, prealarmSupplyAiureTooHighLimit, prealarmSupplyAiooHighAlarmDelay, prealarmSupplyAiooHighDigOutPrio, prealarmSupplyAissureTooLowLimit, prealarmSupplyAiooLowAlarmDelay, prealarmSupplyAiooLowDigOutPrio, freecoolingPower, aIN1, aIN2, aIN3, aIN4, aIN5, aIN6, aIN7, aIN8, aIN9, aIN10, aIN11, aIN12, aIN13, aIN14, aIN15, aIN16, aIN17, aIN18, aIN19, aIN20, aIN21, aOUT1, aOUT2, aOUT3, aOUT4, aOUT5, aOUT6, aOUT7, aOUT8, aOUT9, aOUT10, aOUT11, aOUT12, aOUT13, aOUT14, aOUT15, aOUT16, aOUT17, aOUT18, aOUT19, aOUT20, unitSuctionGasTemperature1, unitEvaporationPressure1, unitHotGasTemperature1, unitCondensationPressure1, unitFreecoolingValve, limitReturnAirTempTooHighAlarm, limitReturnAirTempTooLowAlarm, limitSupplyAirTempTooHighAlarm, limitSupplyAirTempTooLowAlarm, limitWaterTempInTooHighAlarm, limitWaterTempInTooLowAlarm, limitReturnAirHumidTooHighAlarm, limitReturnAirHumidTooLowAlarm, limitSupplyAirHumidTooHighAlarm, limitSupplyAirHumidTooLowAlarm, lowpressureWinterdelay, unitCondensationPressure2, unitTempOffsetBoostCooling, limitReturnAirTehAlarmPriorities, limitReturnAirTeoHighAlarmDelay, limitReturnAirTeAlarmPriorities, limitReturnAirTeTooLowAlarmDelay, limitSupplyAirTehAlarmPriorities, limitSupplyAirTeoHighAlarmDelay, limitSupplyAirTeAlarmPriorities, limitSupplyAirTeTooLowAlarmDelay, limitWaterTempTohAlarmPriorities, limitWaterTempTooHighAlarmDelay, limitWaterTempToAlarmPriorities, limitWaterTempTooLowAlarmDelay, limitReturnAirHuAlarmPriorities, limitReturnAirHuooHighAlarmDelay, limitReturnAirHuwAlarmPriorities, limitReturnAirHuooLowAlarmDelay, limitSupplyAirHuAlarmPriorities, limitSupplyAirHuooHighAlarmDelay, limitSupplyAirHuwAlarmPriorities, limitSupplyAirHuooLowAlarmDelay, unitHotGasTemperature2, unitEvaporationPressure2, unitSuctionGasTemperature2, unitHumidityOffsBoostHumidifying, unitSuctionPressure1, unitSuctionPressure2, unitHumidityOffsostDehumidifying, saturatedSuctionGasTemperature1, saturatedSuctionGasTemperature2, limitReturnAirTeommonAlarmConfig, limitReturnAirTemmonAlarmConfig, limitSupplyAirTeommonAlarmConfig, limitSupplyAirTemmonAlarmConfig, limitWaterTempToommonAlarmConfig, limitWaterTempTommonAlarmConfig, limitReturnAirHummonAlarmConfig, limitReturnAirHuommonAlarmConfig, limitSupplyAirHummonAlarmConfig, limitSupplyAirHuommonAlarmConfig, limitSupplyAirPrommonAlarmConfig, limitSupplyAirPrmmonAlarmConfig, prealarmSupplyAimmonAlarmConfig, prealarmSupplyAiommonAlarmConfig, sensor1ConfigActive, sensor1DefectCommonAlarmConfig, sensor1LimitCommonAlarmConfig, sensor1ManualOperationActive, sensor1BmsValueActive, sensor1PurposeUse, sensor1Type, sensor1AnalogInput, sensor1MinValue, sensor1MaxValue, sensor1MinPhysValue, sensor1MaxPhysValue, sensor1Tolerance, sensor1AlarmPriorities, sensor1AlarmDelay, sensor1FailureAlarmPriorities, sensor1FailureAlarmDelay, sensor1AdjustOffset, sensor1CurrentPhysValue, sensor1CurrentValue, sensor1ManualOperationValue, sensor1BmsValue, sensor2ConfigActive, sensor2DefectCommonAlarmConfig, sensor2LimitCommonAlarmConfig, sensor2ManualOperationActive, sensor2BmsValueActive, sensor2Purpose, sensor2Type, sensor2AnalogInput, sensor2MinValue, sensor2MaxValue, sensor2MinPhysValue, sensor2MaxPhysValue, sensor2Tolerance, sensor2AlarmPriorities, sensor2AlarmDelay, sensor2FailureAlarmPriorities, sensor2FailureAlarmDelay, sensor2AdjustOffset, sensor2CurrentPhysValue, sensor2CurrentValue, sensor2ManualOperationValue, sensor2BmsValue, sensor3ConfigActive, sensor3DefectCommonAlarmConfig, sensor3LimitCommonAlarmConfig, sensor3ManualOperationActive, sensor3BmsValueActive, sensor3Purpose, sensor3Type, sensor3AnalogInput, sensor3MinValue, sensor3MaxValue, sensor3MinPhysValue, sensor3MaxPhysValue, sensor3Tolerance, sensor3AlarmPriorities, sensor3AlarmDelay, sensor3FailureAlarmPriorities, sensor3FailureAlarmDelay, sensor3AdjustOffset, sensor3CurrentPhysValue, sensor3CurrentValue, sensor3ManualOperationValue, sensor3BmsValue, sensor4ConfigActive, sensor4DefectCommonAlarmConfig, sensor4LimitCommonAlarmConfig, sensor4ManualOperationActive, sensor4BmsValueActive, sensor4Purpose, sensor4Type, sensor4AnalogInput, sensor4MinValue, sensor4MaxValue, sensor4MinPhysValue, sensor4MaxPhysValue, sensor4Tolerance, sensor4AlarmPriorities, sensor4AlarmDelay, sensor4FailureAlarmPriorities, sensor4FailureAlarmDelay, sensor4AdjustOffset, sensor4CurrentPhysValue, sensor4CurrentValue, sensor4ManualOperationValue, sensor4BmsValue, sensor5ConfigActive, sensor5DefectCommonAlarmConfig, sensor5LimitCommonAlarmConfig, sensor5ManualOperationActive, sensor5BmsValueActive, sensor5Purpose, sensor5Type, sensor5AnalogInput, sensor5MinValue, sensor5MaxValue, sensor5MinPhysValue, sensor5MaxPhysValue, sensor5Tolerance, sensor5AlarmPriorities, sensor5AlarmDelay, sensor5FailureAlarmPriorities, sensor5FailureAlarmDelay, sensor5AdjustOffset, sensor5CurrentPhysValue, sensor5CurrentValue, sensor5ManualOperationValue, sensor5BmsValue, sensor6ConfigActive, sensor6DefectCommonAlarmConfig, sensor6LimitCommonAlarmConfig, sensor6ManualOperationActive, sensor6BmsValueActive, sensor6Purpose, sensor6Type, sensor6AnalogInput, sensor6MinValue, sensor6MaxValue, sensor6MinPhysValue, sensor6MaxPhysValue, sensor6Tolerance, sensor6AlarmPriorities, sensor6AlarmDelay, sensor6FailureAlarmPriorities, sensor6FailureAlarmDelay, sensor6AdjustOffset, sensor6CurrentPhysValue, sensor6CurrentValue, sensor6ManualOperationValue, sensor6BmsValue, sensor7ConfigActive, sensor7DefectCommonAlarmConfig, sensor7LimitCommonAlarmConfig, sensor7ManualOperationActive, sensor7BmsValueActive, sensor7Purpose, sensor7Type, sensor7AnalogInput, sensor7MinValue, sensor7MaxValue, sensor7MinPhysValue, sensor7MaxPhysValue, sensor7Tolerance, sensor7AlarmPriorities, sensor7AlarmDelay, sensor7FailureAlarmPriorities, sensor7FailureAlarmDelay, sensor7AdjustOffset, sensor7CurrentPhysValue, sensor7CurrentValue, sensor7ManualOperationValue, sensor7BmsValue, sensor8ConfigActive, sensor8DefectCommonAlarmConfig, sensor8LimitCommonAlarmConfig, sensor8ManualOperationActive, sensor8BmsValueActive, sensor8Purpose, sensor8Type, sensor8AnalogInput, sensor8MinValue, sensor8MaxValue, sensor8MinPhysValue, sensor8MaxPhysValue, sensor8Tolerance, sensor8AlarmPriorities, sensor8AlarmDelay, sensor8FailureAlarmPriorities, sensor8FailureAlarmDelay, sensor8AdjustOffset, sensor8CurrentPhysValue, sensor8CurrentValue, sensor8ManualOperationValue, sensor8BmsValue, sensor9ConfigActive, sensor9DefectCommonAlarmConfig, sensor9LimitCommonAlarmConfig, sensor9ManualOperationActive, sensor9BmsValueActive, sensor9Purpose, sensor9Type, sensor9AnalogInput, sensor9MinValue, sensor9MaxValue, sensor9MinPhysValue, sensor9MaxPhysValue, sensor9Tolerance, sensor9AlarmPriorities, sensor9AlarmDelay, sensor9FailureAlarmPriorities, sensor9FailureAlarmDelay, sensor9AdjustOffset, sensor9CurrentPhysValue, sensor9CurrentValue, sensor9ManualOperationValue, sensor9BmsValue, sensor10ConfigActive, sensor10DefectCommonAlarmConfig, sensor10LimitCommonAlarmConfig, sensor10ManualOperationActive, sensor10BmsValueActive, sensor10Purpose, sensor10Type, sensor10AnalogInput, sensor10MinValue, sensor10MaxValue, sensor10MinPhysValue, sensor10MaxPhysValue, sensor10Tolerance, sensor10AlarmPriorities, sensor10AlarmDelay, sensor10FailureAlarmPriorities, sensor10FailureAlarmDelay, sensor10AdjustOffset, sensor10CurrentPhysValue, sensor10CurrentValue, sensor10ManualOperationValue, sensor10BmsValue, sensor11ConfigActive, sensor11DefectCommonAlarmConfig, sensor11LimitCommonAlarmConfig, sensor11ManualOperationActive, sensor11BmsValueActive, sensor11Purpose, sensor11Type, sensor11AnalogInput, sensor11MinValue, sensor11MaxValue, sensor11MinPhysValue, sensor11MaxPhysValue, sensor11Tolerance, sensor11AlarmPriorities, sensor11AlarmDelay, sensor11FailureAlarmPriorities, sensor11FailureAlarmDelay, sensor11AdjustOffset, sensor11CurrentPhysValue, sensor11CurrentValue, sensor11ManualOperationValue, sensor11BmsValue, sensor12ConfigActive, sensor12DefectCommonAlarmConfig, sensor12LimitCommonAlarmConfig, sensor12ManualOperationActive, sensor12BmsValueActive, sensor12Purpose, sensor12Type, sensor12AnalogInput, sensor12MinValue, sensor12MaxValue, sensor12MinPhysValue, sensor12MaxPhysValue, sensor12Tolerance, sensor12AlarmPriorities, sensor12AlarmDelay, sensor12FailureAlarmPriorities, sensor12FailureAlarmDelay, sensor12AdjustOffset, sensor12CurrentPhysValue, sensor12CurrentValue, sensor12ManualOperationValue, sensor12BmsValue, sensor13ConfigActive, sensor13DefectCommonAlarmConfig, sensor13LimitCommonAlarmConfig, sensor13ManualOperationActive, sensor13BmsValueActive, sensor13Purpose, sensor13Type, sensor13AnalogInput, sensor13MinValue, sensor13MaxValue, sensor13MinPhysValue, sensor13MaxPhysValue, sensor13Tolerance, sensor13AlarmPriorities, sensor13AlarmDelay, sensor13FailureAlarmPriorities, sensor13FailureAlarmDelay, sensor13AdjustOffset, sensor13CurrentPhysValue, sensor13CurrentValue, sensor13ManualOperationValue, sensor13BmsValue, sensor14ConfigActive, sensor14DefectCommonAlarmConfig, sensor14LimitCommonAlarmConfig, sensor14ManualOperationActive, sensor14BmsValueActive, sensor14Purpose, sensor14Type, sensor14AnalogInput, sensor14MinValue, sensor14MaxValue, sensor14MinPhysValue, sensor14MaxPhysValue, sensor14Tolerance, sensor14AlarmPriorities, sensor14AlarmDelay, sensor14FailureAlarmPriorities, sensor14FailureAlarmDelay, sensor14AdjustOffset, sensor14CurrentPhysValue, sensor14CurrentValue, sensor14ManualOperationValue, sensor14BmsValue, sensor15ConfigActive, sensor15DefectCommonAlarmConfig, sensor15LimitCommonAlarmConfig, sensor15ManualOperationActive, sensor15BmsValueActive, sensor15Purpose, sensor15Type, sensor15AnalogInput, sensor15MinValue, sensor15MaxValue, sensor15MinPhysValue, sensor15MaxPhysValue, sensor15Tolerance, sensor15AlarmPriorities, sensor15AlarmDelay, sensor15FailureAlarmPriorities, sensor15FailureAlarmDelay, sensor15AdjustOffset, sensor15CurrentPhysValue, sensor15CurrentValue, sensor15ManualOperationValue, sensor15BmsValue, sensor16ConfigActive, sensor16DefectCommonAlarmConfig, sensor16LimitCommonAlarmConfig, sensor16ManualOperationActive, sensor16BmsValueActive, sensor16Purpose, sensor16Type, sensor16AnalogInput, sensor16MinValue, sensor16MaxValue, sensor16MinPhysValue, sensor16MaxPhysValue, sensor16Tolerance, sensor16AlarmPriorities, sensor16AlarmDelay, sensor16FailureAlarmPriorities, sensor16FailureAlarmDelay, sensor16AdjustOffset, sensor16CurrentPhysValue, sensor16CurrentValue, sensor16ManualOperationValue, sensor16BmsValue, sensor17ConfigActive, sensor17DefectCommonAlarmConfig, sensor17LimitCommonAlarmConfig, sensor17ManualOperationActive, sensor17BmsValueActive, sensor17Purpose, sensor17Type, sensor17AnalogInput, sensor17MinValue, sensor17MaxValue, sensor17MinPhysValue, sensor17MaxPhysValue, sensor17Tolerance, sensor17AlarmPriorities, sensor17AlarmDelay, sensor17FailureAlarmPriorities, sensor17FailureAlarmDelay, sensor17AdjustOffset, sensor17CurrentPhysValue, sensor17CurrentValue, sensor17ManualOperationValue, sensor17BmsValue, sensor18ConfigActive, sensor18DefectCommonAlarmConfig, sensor18LimitCommonAlarmConfig, sensor18ManualOperationActive, sensor18BmsValueActive, sensor18Purpose, sensor18Type, sensor18AnalogInput, sensor18MinValue, sensor18MaxValue, sensor18MinPhysValue, sensor18MaxPhysValue, sensor18Tolerance, sensor18AlarmPriorities, sensor18AlarmDelay, sensor18FailureAlarmPriorities, sensor18FailureAlarmDelay, sensor18AdjustOffset, sensor18CurrentPhysValue, sensor18CurrentValue, sensor18ManualOperationValue, sensor18BmsValue, sensor19ConfigActive, sensor19DefectCommonAlarmConfig, sensor19LimitCommonAlarmConfig, sensor19ManualOperationActive, sensor19BmsValueActive, sensor19Purpose, sensor19Type, sensor19AnalogInput, sensor19MinValue, sensor19MaxValue, sensor19MinPhysValue, sensor19MaxPhysValue, sensor19Tolerance, sensor19AlarmPriorities, sensor19AlarmDelay, sensor19FailureAlarmPriorities, sensor19FailureAlarmDelay, sensor19AdjustOffset, sensor19CurrentPhysValue, sensor19CurrentValue, sensor19ManualOperationValue, sensor19BmsValue, sensor20ConfigActive, sensor20DefectCommonAlarmConfig, sensor20LimitCommonAlarmConfig, sensor20ManualOperationActive, sensor20BmsValueActive, sensor20Purpose, sensor20Type, sensor20AnalogInput, sensor20MinValue, sensor20MaxValue, sensor20MinPhysValue, sensor20MaxPhysValue, sensor20Tolerance, sensor20AlarmPriorities, sensor20AlarmDelay, sensor20FailureAlarmPriorities, sensor20FailureAlarmDelay, sensor20AdjustOffset, sensor20CurrentPhysValue, sensor20CurrentValue, sensor20ManualOperationValue, sensor20BmsValue, sensor21ConfigActive, sensor21DefectCommonAlarmConfig, sensor21LimitCommonAlarmConfig, sensor21ManualOperationActive, sensor21BmsValueActive, sensor21Purpose, sensor21Type, sensor21AnalogInput, sensor21MinValue, sensor21MaxValue, sensor21MinPhysValue, sensor21MaxPhysValue, sensor21Tolerance, sensor21AlarmPriorities, sensor21AlarmDelay, sensor21FailureAlarmPriorities, sensor21FailureAlarmDelay, sensor21AdjustOffset, sensor21CurrentPhysValue, sensor21CurrentValue, sensor21ManualOperationValue, sensor21BmsValue, compressor1ConfigActive, compr1ManualOperationActive, compr1ManualOperationState, compr1Running, compr1EconomizerActive, compr1CommonAlarmConfig, compr1LowPressCommonAlarmConfig, compressor1StartTempSummer, compressor1HysteresisSummer, compressor1StartTempWinter, compressor1HysteresisWinter, compr1DigitalOut, compr1AlarmDigitalIn, compr1AlarmPriorities, compr1AlarmDelay, compr1LowPressDigitalIn, compr1LowPressAlarmPriorities, compr1LowPressAlarmDelay, compr1Break, compr1Runtime, compr1LowPressManagTime, compr1LowPressManagPress, compr1LowPressManagRestarts, compr1HighPressManagTime, compr1HighPressManagPress, compr1HighPressManagRestarts, compr1HighPressManagMode, compr1MinimumRuntime, compr1ActualCurrReadBackFromComp, compr1DesiredSpeedPower, compr1OilTemperature, compr1ASTPThreshold, compr1ASTPHysteresis, compressor2ConfigActive, compr2ManualOperationActive, compr2ManualOperationState, compr2Running, compr2EconomizerActive, compr2CommonAlarmConfig, compr2LowPressCommonAlarmConfig, compressor2StartTempSummer, compressor2HysteresisSummer, compressor2StartTempWinter, compressor2HysteresisWinter, compr2DigitalOut, compr2AlarmDigitalIn, compr2AlarmPriorities, compr2AlarmDelay, compr2LowPressDigitalIn, compr2LowPressAlarmPriorities, compr2LowPressAlarmDelay, compr2Break, compr2Runtime, compr2LowPressManagTime, compr2LowPressManagPress, compr2LowPressManagRestarts, compr2HighPressManagTime, compr2HighPressManagPress, compr2HighPressManagRestarts, compr2HighPressManagMode, compr2MinimumRuntime, compr2actualCurrReadBackFromComp, compr2DesiredSpeedPower, compr2OilTemperature, compr2ASTPThreshold, compr2ASTPHysteresis, suctionvalve1ConfigActive, suctionvalve1ManlOperationActive, suctionvalve1StartTemperature, suctionvalve1LinearRange, suctionvalve1AnalogOut, suctionvalve1CurrentValue, suctionvalve1ManlOperationValue, suctionvalve1MinOpeningGrade, suctionvalve2ConfigActive, suctionvalve2ManlOperationActive, suctionvalve2StartTemperature, suctionvalve2LinearRange, suctionvalve2AnalogOut, suctionvalve2CurrentValue, suctionvalve2ManlOperationValue, suctionvalve2MinOpeningGrade, elecHeating1ConfigActive, elecHeating1ManuOperationActive, elecHeating1Running, elecHeating1ManuOperationRunning, elecHeating1CommonAlarmConfig, elecHeating1Type, elecHeating1StartTemperature, elecHeating1Hysteresis, elecHeating1LinearRange, elecHeating1DigitalOut, elecHeating1AlarmDigitalIn, elecHeating1AlarmPriorities, elecHeating1AlarmDelay, elecHeating1Runtime, elecHeating1PWMGrade, elecHeating1ManuerationPWMGrade, elecHeating2ConfigActive, elecHeating2ManuOperationActive, elecHeating2Running, elecHeating2ManuOperationRunning, elecHeating2CommonAlarmConfig, elecHeating2Type, elecHeating2StartTemperature, elecHeating2Hysteresis, elecHeating2LinearRange, elecHeating2DigitalOut, elecHeating2AlarmDigitalIn, elecHeating2AlarmPriorities, elecHeating2AlarmDelay, elecHeating2Runtime, elecHeating3ConfigActive, elecHeating3ManuOperationActive, elecHeating3Running, elecHeating3ManuOperationRunning, elecHeating3CommonAlarmConfig, elecHeating3Type, elecHeating3StartTemperature, elecHeating3Hysteresis, elecHeating3LinearRange, elecHeating3DigitalOut, elecHeating3AlarmDigitalIn, elecHeating3AlarmPriorities, elecHeating3AlarmDelay, elecHeating3Runtime, elecHeating4ConfigActive, elecHeating4ManuOperationActive, elecHeating4Running, elecHeating4ManuOperationRunning, elecHeating4CommonAlarmConfig, elecHeating4Type, elecHeating4StartTemperature, elecHeating4Hysteresis, elecHeating4LinearRange, elecHeating4DigitalOut, elecHeating4AlarmDigitalIn, elecHeating4AlarmPriorities, elecHeating4AlarmDelay, elecHeating4Runtime, gECWValveConfigActive, gECWValveManualOperationActive, gECWValveCloseWithComprStart, gECWValveCloseIfWTOverSP, gECWValveHeatingPermitted, gECWValveOpen, gECWValveStartTemperature1, gECWValveLinearRange1, gECWValveAnalogOut1, gECWValveGEOffTempAbsolute, gECWValveOpeningGrade1, gECWValveManOperionOpeningGrade, gECWValveAnalogOut2, gECWValveDinForSwitch, gECWValveOpeningGradeSetpoint, gECWValveStartTemperature2, gECWValveLinearRange2, gECWValveDoutForSwitch, gECWValveOperationMode, gECWValveOpeningGrade2, gECWValveAnalogIn1, gECWValveOpeningGradeReturned1, gECWValveOpeningve1DuringSwitch, gECWValveAnalogIn2, gECWValveOpeningGradeReturned2, gECWValveControlCycle, gECWValvePFactor, gECWValveIFactor, gECWValveDFactor, gECWValveMaximumOpeningTime, gECWValveMaxAdjust, gECWValveMaxAdjustCalculated, gECWValveChillerSaver100Jump, gECWValveChillerverAnalogOutput, gECWValveChillerSaverSignalStart, gECWValveChillerSaverSignalEnd, gECWValveChillerSaverSignal, gECWValveControlStart, gECWValveGEOffTempRelative, gValve1ConfigActive, gValve1ManualOperationActive, gValve1PressureSetpoint, gValve1AnalogOut, gValve1PreOpeningTime, gValve1PreOpeningGrade, gValve1OpeningGrade, gValve1ManualOpetionOpeningGrade, gValve1IFactor, gValve1DFactor, gValve1ControlCycle, gValve1MaxAdjust, gValve1ControlFactorPFactor, gValve1OpeningGradeSetpoint, gValve1OpeningGradeMin, gValve1MaximumOpeningTime, gValve1MaxAdjustCalculated, gValve1OpeningGreWatertempStart, gValve1OpeningGradeStart, gValve1OpeningGradeWatertempStop, gValve1OpeningGradeStop, gValve1PreOpeningGradeCalculated, gValve1ControlStart, gValve1StartingTmumOpeninggrade, gValve1GradientFantOpeninggrade, gValve2ConfigActive, gValve2ManualOperationActive, gValve2AnalogOut, gValve2PreOpeningTime, gValve2PreOpeningGrade, gValve2OpeningGrade, gValve2ManualOpetionOpeningGrade, gValve2IFactor, gValve2DFactor, gValve2MaxAdjust, gValve2ControlFactorPFactor, gValve2OpeningGradeSetpoint, gValve2OpeningGradeMin, gValve2ControlStart, gValve2StartingTmumOpeninggrade, gValve2GradientFantOpeninggrade, drycooler1ConfigActive, drycooler1ManualOperationActive, drycooler1Running, drycooler1ManualOperationRunning, drycooler1CommonAlarmConfig, drycooler1StartTemperatureWinter, drycooler1StartTemperatureSummer, drycooler1Hysteresis, drycooler1DigitalOut, drycooler1AlarmDigitalIn, drycooler1AlarmPriorities, drycooler1AlarmDelay, drycooler1Runtime, drycooler1Speed, drycooler1AnalogOut, drycooler1PreRunningSpeed, drycooler1ControlCycle, drycooler1MaxAdjust, drycooler1ControlFactorPFactor, drycooler1ManualOperationSpeed, drycooler1WaterStPrimaryInFCMode, drycooler1IFactor, drycooler1DFactor, drycooler1MaxSpeedInDXMode, drycooler1MinimumSpeed, drycooler2ConfigActive, drycooler2ManualOperationActive, drycooler2Running, drycooler2ManualOperationRunning, drycooler2CommonAlarmConfig, drycooler2StartTemperatureWinter, drycooler2StartTemperatureSummer, drycooler2Hysteresis, drycooler2DigitalOut, drycooler2AlarmDigitalIn, drycooler2AlarmPriorities, drycooler2AlarmDelay, drycooler2Runtime, drycooler3ConfigActive, drycooler3ManualOperationActive, drycooler3Running, drycooler3ManualOperationRunning, drycooler3CommonAlarmConfig, drycooler3StartTemperatureWinter, drycooler3StartTemperatureSummer, drycooler3Hysteresis, drycooler3DigitalOut, drycooler3AlarmDigitalIn, drycooler3AlarmPriorities, drycooler3AlarmDelay, drycooler3Runtime, drycooler4ConfigActive, drycooler4ManualOperationActive, drycooler4Running, drycooler4ManualOperationRunning, drycooler4CommonAlarmConfig, drycooler4StartTemperatureWinter, drycooler4StartTemperatureSummer, drycooler4Hysteresis, drycooler4DigitalOut, drycooler4AlarmDigitalIn, drycooler4AlarmPriorities, drycooler4AlarmDelay, drycooler4Runtime, pump1ConfigActive, pump1ManualOperationActive, pump1Running, pump1CommonAlarmConfig, pump1ManualOperationRunning, pump1Type, pump1StartTemperature, pump1Hysteresis, pump1LinearRange, pump1PressureSetpoint, pump1DigitalOut, pump1AnalogOut, pump1AlarmDigitalIn, pump1AlarmPriorities, pump1AlarmDelay, pump1PreRuntime, pump1PreSpeed, pump1Runtime, pump1Speed, pump1ManualOperationSpeed, pump1PartnerPump, pump1IFactor, pump1DFactor, pump1ControlCycle, pump1MaxAdjust, pump1ControlFactor, pump1SetpointSpeed, pump1MinSpeed, pump1AfterRuntime, pump2ConfigActive, pump2ManualOperationActive, pump2Running, pump2CommonAlarmConfig, pump2ManualOperationRunning, pump2Type, pump2StartTemperature, pump2Hysteresis, pump2LinearRange, pump2DigitalOut, pump2AnalogOut, pump2AlarmDigitalIn, pump2AlarmPriorities, pump2AlarmDelay, pump2PreRuntime, pump2PreSpeed, pump2Runtime, pump2Speed, pump2ManualOperationSpeed, pump2PartnerPump, pump2IFactor, pump2DFactor, pump2ControlCycle, pump2MaxAdjust, pump2ControlFactor, pump2SetpointSpeed, pump2MinSpeed, pump3ConfigActive, pump3ManualOperationActive, pump3Running, pump3CommonAlarmConfig, pump3ManualOperationRunning, pump3Type, pump3StartTemperature, pump3Hysteresis, pump3LinearRange, pump3DigitalOut, pump3AnalogOut, pump3AlarmDigitalIn, pump3AlarmPriorities, pump3AlarmDelay, pump3PreRuntime, pump3PreSpeed, pump3Runtime, pump3Speed, pump3ManualOperationSpeed, pump3PartnerPump, pump3IFactor, pump3DFactor, pump3ControlCycle, pump3MaxAdjust, pump3ControlFactorPFactor, pump3SetpointSpeed, pump3MinSpeed, pump4ConfigActive, pump4ManualOperationActive, pump4Running, pump4CommonAlarmConfig, pump4ManualOperationRunning, pump4Type, pump4StartTemperature, pump4Hysteresis, pump4LinearRange, pump4DigitalOut, pump4AnalogOut, pump4AlarmDigitalIn, pump4AlarmPriorities, pump4AlarmDelay, pump4PreRuntime, pump4PreSpeed, pump4Runtime, pump4Speed, pump4ManualOperationSpeed, pump4PartnerPump, pump4IFactor, pump4DFactor, pump4ControlCycle, pump4MaxAdjust, pump4ControlFactorPFactor, pump4SetpointSpeed, pump4MinSpeed, hotgasHeatingConfigActive, hotgasHeatingManlOperationActive, hotgasHeatingRunning, hotgasHeatingManperationRunning, hotgasHeatingCommonAlarmConfig, hotgasHeatingStartTemperature, hotgasHeatingHysteresis, hotgasHeatingDigitalOut, hotgasHeatingAlarmDigitalIn, hotgasHeatingAlarmPriorities, hotgasHeatingAlarmDelay, pWWHeatingConfigActive, pWWHeatingManualOperationActive, pWWHeatingRunning, pWWHeatingManualOperationRunning, pWWHeatingType, pWWHeatingStartTemperature, pWWHeatingHysteresis, pWWHeatingLinearRange, pWWHeatingDigitalOut, pWWHeatingAnalogOut, pWWHeatingCurrentValue, pWWHeatingManualOperationValue, humidifier1ConfigActive, humidifier1ManualOperationActive, humidifier1Running, humidifier1ManuaperationRunning, humidifier1CommonAlarmConfig, humidifier1ConductivityConfig, humidifier15uSCommonAlarmConfig, humidifier120uSCommonAlarmConfig, humidifier1DrainlOperationActive, humidifier1DrainValveOpened, humidifier1DrainlOperationStatus, humidifier1Type, humidifier1StartHumidity, humidifier1StartHumidity2, humidifier1Hysteresis, humidifier1LinearRange, humidifier1DigitalOut, humidifier1AnalogOut, humidifier1AlarmDigitalIn, humidifier1AlarmPriorities, humidifier1AlarmDelay, humidifier1Runtime, humidifier1CurrentValue, humidifier1ManualOperationValue, humidifier1AlarmDigitalIn5uS, humidifier1AlarmDigitalIn20uS, humidifier1AlarmDelay5uS, humidifier1AlarmDelay20uS, humidifier1AlarmPriorities5uS, humidifier1AlarmPriorities20uS, humidifier1DrainValveDigitalOut, humidifier1DraineOpeningDuration, humidifier2ConfigActive, humidifier2ManualOperationActive, humidifier2Running, humidifier2ManuaperationRunning, humidifier2CommonAlarmConfig, humidifier2ConductivityConfig, humidifier25uSCommonAlarmConfig, humidifier220uSCommonAlarmConfig, humidifier2DrainlOperationActive, humidifier2DrainValveOpened, humidifier2DrainlOperationStatus, humidifier2Type, humidifier2StartHumidity, humidifier2StartHumidity2, humidifier2Hysteresis, humidifier2LinearRange, humidifier2DigitalOut, humidifier2AnalogOut, humidifier2AlarmDigitalIn, humidifier2AlarmPriorities, humidifier2AlarmDelay, humidifier2Runtime, humidifier2CurrentValue, humidifier2ManualOperationValue, humidifier2AlarmDigitalIn5uS, humidifier2AlarmDigitalIn20uS, humidifier2AlarmDelay5uS, humidifier2AlarmDelay20uS, humidifier2AlarmPriorities5uS, humidifier2AlarmPriorities20uS, humidifier2DrainValveDigitalOut, humidifier2DraineOpeningDuration, humidifier3ConfigActive, humidifier3ManualOperationActive, humidifier3Running, humidifier3ManuaperationRunning, humidifier3CommonAlarmConfig, humidifier3ConductivityConfig, humidifier35uSCommonAlarmConfig, humidifier320uSCommonAlarmConfig, humidifier3DrainlOperationActive, humidifier3DrainValveOpened, humidifier3DrainlOperationStatus, humidifier3Type, humidifier3StartHumidity, humidifier3StartHumidity2, humidifier3Hysteresis, humidifier3LinearRange, humidifier3DigitalOut, humidifier3AnalogOut, humidifier3AlarmDigitalIn, humidifier3AlarmPriorities, humidifier3AlarmDelay, humidifier3Runtime, humidifier3CurrentValue, humidifier3ManualOperationValue, humidifier3AlarmDigitalIn5uS, humidifier3AlarmDigitalIn20uS, humidifier3AlarmDelay5uS, humidifier3AlarmDelay20uS, humidifier3AlarmPriorities5uS, humidifier3AlarmPriorities20uS, humidifier3DrainValveDigitalOut, humidifier3DraineOpeningDuration, dehumidificationlveConfigActive, dehumidificationOperationActive, dehumidificationRunning, dehumidificationOperationRunning, dehumidificationpassConfigActive, dehumidificationValveValue, dehumidificationtgasbypassValue, dehumidifierStartHumidity, dehumidificationHysteresis, dehumidificationDigitalOut, dehumidifierMinWaterTemp, dehumidifierMaxWaterTemp, dehumidificationStopOnRoomTemp, minFanSpeedWhenPDehumidification, fan1ConfigActive, fan1ManualOperationActive, fan1Running, fan1ManualOperationRunning, fan1CommonAlarmConfig, fan1FilterCommonAlarmConfig, fan1Type, fan1SpeedNmax, fan1CWModeNmax, fan1PreRuntime, fan1RunAfterTime, fan1StartTemp, fan1StartSpeed, fan1Start100Time, fan1ReduceTime, fan1ReduceSpeed, fan1Offset, fan1DehumidificationSpeed, fan1UpsSpeed, fan1OffsetFilterClogged, fan1DigitalOut, fan1AnalogOut, fan1AlarmDigitalIn, fan1AlarmPriorities, fan1AlarmDelay, fan1FilterAlarmDigitalIn, fan1FilterAlarmPriorities, fan1FilterAlarmDelay, fan1Runtime, fan1Speed, fan1ManualOperationSpeed, fan1MinSpeedDXMode, fan1ControlCycle, fan1MaxAdjust, fan1ControlFactor, fan1EmergencyStarttemp, fan1EmergencyEndtemp, fan1Emergencyspeed, fan1DehumiTimeDelay, fan1MinSpeedCWMode, fan1StarttempFretdoorTemperature, fan1PowerConsumption, fan1RpmSpeed, fan1CurrentConsumption, fan1SpeedNmaxInEFCMIXModeForDFC, fan1DiffTempContatureDifference, fan1DiffTempContemperatureRange, fan1ProportionalCoefficient, fan1IntegralCoefficient, fan1DerivativeCoefficient, fan1StopIfCoolingNotPossible, fan1FilterMaxPressureDrop, fan1FilterCurrentPressureDrop, fan1DiffTempControlType, fan2ConfigActive, fan2ManualOperationActive, fan2Running, fan2ManualOperationRunning, fan2CommonAlarmConfig, fan2FilterCommonAlarmConfig, fan2Type, fan2SpeedNmax, fan2CWModeNmax, fan2PreRuntime, fan2RunAfterTime, fan2StartTemp, fan2StartSpeed, fan2Start100Time, fan2ReduceTime, fan2ReduceSpeed, fan2Offset, fan2DehumidificationSpeed, fan2UpsSpeed, fan2OffsetFilterClogged, fan2DigitalOut, fan2AnalogOut, fan2AlarmDigitalIn, fan2AlarmPriorities, fan2AlarmDelay, fan2FilterAlarmDigitalIn, fan2FilterAlarmPriorities, fan2FilterAlarmDelay, fan2Runtime, fan2Speed, fan2ManualOperationSpeed, fan2MinSpeedDXMode, fan2ControlCycle, fan2MaxAdjust, fan2ControlFactor, fan2EmergencyStarttemp, fan2EmergencyEndtemp, fan2Emergencyspeed, fan2DehumiTimeDelay, fan2MinSpeedCWMode, fan2StarttempFretdoorTemperature, fan2PowerConsumption, fan2RpmSpeed, fan2CurrentConsumption, fan2SpeedNmaxInEFCMIXModeForDFC, fan2DiffTempContatureDifference, fan2DifferentialTemperatureRange, fan2ProportionalCoefficient, fan2IntegralCoefficient, fan2DerivativeCoefficient, fan2StopIfCoolingNotPossible, fan2FilterMaxPressureDrop, fan2FilterCurrentPressureDrop, fan2DiffTempControlType, fan3ConfigActive, fan3ManualOperationActive, fan3Running, fan3ManualOperationRunning, fan3CommonAlarmConfig, fan3FilterCommonAlarmConfig, fan3Type, fan3SpeedNmax, fan3CWModeNmax, fan3PreRuntime, fan3RunAfterTime, fan3StartTemp, fan3StartSpeed, fan3Start100Time, fan3ReduceTime, fan3ReduceSpeed, fan3Offset, fan3DehumidificationSpeed, fan3UpsSpeed, fan3OffsetFilterClogged, fan3DigitalOut, fan3AnalogOut, fan3AlarmDigitalIn, fan3AlarmPriorities, fan3AlarmDelay, fan3FilterAlarmDigitalIn, fan3FilterAlarmPriorities, fan3FilterAlarmDelay, fan3Runtime, fan3Speed, fan3ManualOperationSpeed, fan3MinSpeedDXMode, fan3ControlCycle, fan3MaxAdjust, fan3ControlFactor, fan3EmergencyStarttemp, fan3EmergencyEndtemp, fan3Emergencyspeed, fan3DehumiTimeDelay, fan3MinSpeedCWMode, fan3StarttempFretdoorTemperature, fan3PowerConsumption, fan3RpmSpeed, fan3CurrentConsumption, fan3SpeedNmaxInEFCMIXModeForDFC, fan3DiffTempContatureDifference, fan3DifferentialTemperatureRange, fan3ProportionalCoefficient, fan3IntegralCoefficient, fan3DerivativeCoefficient, fan3StopIfCoolingNotPossible, fan3FilterMaxPressureDrop, fan3FilterCurrentPressureDrop, fan3DiffTempControlType, louver1ConfigActive, louver1ManualOperationActive, louver1Open, louver1ManualOperationOpen, louver1Delay, louver1DigitalOut, louver2ConfigActive, louver2ManualOperationActive, louver2Open, louver2ManualOperationOpen, louver2Delay, louver2DigitalOut, louver3ConfigActive, louver3ManualOperationActive, louver3Open, louver3ManualOperationOpen, louver3Delay, louver3DigitalOut, extAlarmConfigActive1, extAlarmManualOperationEnable1, extAlarmManualOperationActive1, extAlarm1CommonAlarmConfig, extAlarm1DigitalIn, extAlarm1Priorities, extAlarm1Delay, extAlarm1Text0, extAlarmConfigActive2, extAlarmManualOperationEnable2, extAlarmManualOperationActive2, extAlarm2CommonAlarmConfig, extAlarm2DigitalIn, extAlarm2Priorities, extAlarm2Delay, extAlarm2Text0, extAlarmConfigActive3, extAlarmManualOperationEnable3, extAlarmManualOperationActive3, extAlarm3CommonAlarmConfig, extAlarm3DigitalIn, extAlarm3Priorities, extAlarm3Delay, extAlarm3Text0, extAlarmConfigActive4, extAlarmManualOperationEnable4, extAlarmManualOperationActive4, extAlarm4CommonAlarmConfig, extAlarm4DigitalIn, extAlarm4Priorities, extAlarm4Delay, extAlarm4Text0, extAlarmConfigActive5, extAlarmManualOperationEnable5, extAlarmManualOperationActive5, extAlarm5CommonAlarmConfig, extAlarm5DigitalIn, extAlarm5Priorities, extAlarm5Delay, extAlarm5Text0, extAlarmConfigActive6, extAlarmManualOperationEnable6, extAlarmManualOperationActive6, extAlarm6CommonAlarmConfig, extAlarm6DigitalIn, extAlarm6Priorities, extAlarm6Delay, extAlarm6Text0, extAlarmConfigActive7, extAlarmManualOperationEnable7, extAlarmManualOperationActive7, extAlarm7CommonAlarmConfig, extAlarm7DigitalIn, extAlarm7Priorities, extAlarm7Delay, extAlarm7Text0, extAlarmConfigActive8, extAlarmManualOperationEnable8, extAlarmManualOperationActive8, extAlarm8CommonAlarmConfig, extAlarm8DigitalIn, extAlarm8Priorities, extAlarm8Delay, extAlarm8Text0, extAlarmConfigActive9, extAlarmManualOperationEnable9, extAlarmManualOperationActive9, extAlarm9CommonAlarmConfig, extAlarm9DigitalIn, extAlarm9Priorities, extAlarm9Delay, extAlarm9Text0, extAlarmConfigActive10, extAlarmManualOperationEnable10, extAlarmManualOperationActive10, extAlarm10CommonAlarmConfig, extAlarm10DigitalIn, extAlarm10Priorities, extAlarm10Delay, extAlarm10Text0, airflow1, airflow2, airflow3, highpressure1, highpressure2, waterDetector, phasecheck, fireSmoke, returnAirTempTooHighAlarm, returnAirHumidTooHighAlarm, supplyAirTempTooHighAlarm, supplyAirHumidTooHighAlarm, waterTempTooHighAlarm, returnAirTempTooLowAlarm, returnAirHumidTooLowAlarm, supplyAirTempTooLowAlarm, supplyAirHumidTooLowAlarm, waterTempTooLowAlarm, sensor1LimitAlarm, sensor2LimitAlarm, sensor3LimitAlarm, sensor4LimitAlarm, sensor5LimitAlarm, sensor6LimitAlarm, sensor7LimitAlarm, sensor8LimitAlarm, sensor9LimitAlarm, sensor10LimitAlarm, sensor11LimitAlarm, sensor12LimitAlarm, sensor13LimitAlarm, sensor14LimitAlarm, sensor15LimitAlarm, sensor16LimitAlarm, sensor17LimitAlarm, sensor18LimitAlarm, sensor19LimitAlarm, sensor20LimitAlarm, sensor21LimitAlarm, sensor1DefectAlarm, sensor2DefectAlarm, sensor3DefectAlarm, sensor4DefectAlarm, sensor5DefectAlarm, sensor6DefectAlarm, sensor7DefectAlarm, sensor8DefectAlarm, sensor9DefectAlarm, sensor10DefectAlarm, sensor11DefectAlarm, sensor12DefectAlarm, sensor13DefectAlarm, sensor14DefectAlarm, sensor15DefectAlarm, sensor16DefectAlarm, sensor17DefectAlarm, sensor18DefectAlarm, sensor19DefectAlarm, sensor20DefectAlarm, sensor21DefectAlarm, compr1Alarm, compr2Alarm, lowPressAlarm1, lowPressAlarm2, elecHeating1Alarm, elecHeating2Alarm, elecHeating3Alarm, elecHeating4Alarm, drycooler1Alarm, drycooler2Alarm, drycooler3Alarm, drycooler4Alarm, pump1Alarm, pump2Alarm, pump3Alarm, pump4Alarm, humidifier1Alarm, humidifier2Alarm, humidifier3Alarm, humidifier1Alarm5uS, humidifier2Alarm5uS, humidifier3Alarm5uS, humidifier1Alarm20uS, humidifier2Alarm20uS, humidifier3Alarm20uS, fan1Alarm, fan2Alarm, fan3Alarm, fan1FilterAlarm, fan2FilterAlarm, fan3FilterAlarm, extAlarm1Active, extAlarm2Active, extAlarm3Active, extAlarm4Active, extAlarm5Active, extAlarm6Active, extAlarm7Active, extAlarm8Active, extAlarm9Active, extAlarm10Active, hotgasHeatingAlarm, eev1PressureSensorError, eev1TemperatureSensorError, eev1StepperMotorError, eev2PressureSensorError, eev2TemperatureSensorError, eev2StepperMotorError, waterflowFailure, valveTestAlarm, compr3Alarm, compr4Alarm, compr5Alarm, compr6Alarm, condenser1Alarm, condenser2Alarm, outsideAirTempTooHighAlarm, outsideAirTempTooLowAlarm, ioExtensionError, waterOutTemperatooHighFlowWater, waterOutTemperateTooLowFlowWater, freezeAlarmEqualsDP2226, unit1Failure, unit2Failure, transmissionFailure, controllerFailure, reheatFailure, roomHighPressureAlarm, filter1Alarm, filter2Alarm, filter3Alarm, rC1CircuitBreakerTripped, rC2CircuitBreakerTripped, fan1Blocked, fan2Blocked, powerFailure, compressor1MotorProtection, compressor2MotorProtection, intrusionAlarm, condensorFan1Blocked, condensorFan2Blocked, internalTemperatureProbe, externalTemperatureProbe, condensorTemperatureProbe, supplyTemperatureProbe1, supplyTemperatureProbe2, moveableCoilAlarm, fan1ThermalMotorectionTriggered, externalFilterAlarm, waterTempInlet1TooLowAlarm, waterTempInlet1TooHighAlarm, waterTempOutlet1TooLowAlarm, waterTempOutlet1TooHighAlarm, waterTempInlet2TooLowAlarm, waterTempInlet2TooHighAlarm, waterTempOutlet2TooLowAlarm, waterTempOutlet2TooHighAlarm, eev1ReliabilityAlarmCarelEVD, eev2ReliabilityAlarmCarelEVD, fan3Blocked, fan4Blocked, fan5Blocked, fan6Blocked, fan2ThermalMotorectionTriggered, fan3ThermalMotorectionTriggered, waterflowMaximumExceeded, supplyTemperatureProbe3, returnTemperatureProbe1, returnTemperatureProbe2, returnTemperatureProbe3, inverterGeneralAlarm, extensionBoardAlarm, inverterOffline, humidifier1ThermicFailure, condensateWaterLevelAlarm, outdoorUnitAlarm, outdoorUnitCommunicationError, minimumTemperatureAlarm, maximumTemperatureAlarm, stateThatShutOfflopAlarmsUPCDP15, probeBrokenAnalogInputB3UPCDP18, probeBrokenAnalogInputB4UPCDP19, probeBrokenAnalogInputB5UPCDP20, probeBrokenAnalogInputB6UPCDP21, maximumDischargePressureUPCDP23, minimumSuctionPressureUPCDP24, dischargeTemperatureAlarmUPCDP25, pressureDifferennMinimumUPCDP26, compressorFailsToStartUPCDP27, compressorExceedlopLimitsUPCDP28, lowSuperHeatAlarmEeValveUPCDP29, mopAlarmEeValveUPCDP30, lowSuctionTemperrmEeValveUPCDP31, evdEvoEvotunesAlarmUPCDP32, evdEvoRegulationctionTempUPCDP33, evdEvoSystemAlarobeErrorUPCDP34, generalInverterAlarmUPCDP35, communicationLosInverterUPCDP36, communicationLosithIccController, inverterModelNotmpressorUPCDP44, eev1ConfigActive, eev1BatterySupplyAlcoVCM, eev1MOPControlAlcoVCM, eev1SuperheatControlModeAlcoVCM, eev1ManualOperation, eev1PressureSensommonAlarmConfig, eev1TemperatureSmmonAlarmConfig, eev1StepperMotorommonAlarmConfig, eev1ReliabilityCmonAlarmCarelEVD, eev1BatteryHoldingTimeAlcoVCM, eev1RefrigerantAlcoVCM, eev1MOPTemperatureAlcoVCM, eev1SuperheatSetpointAlcoVCM, eev1DehumidificatSetpointAlcoVCM, eev1StartUpOpeniDurationAlcoVCM, eev1StartUpOpening, eev1ValveTypeAlcoVCM, eev1SensorTypeEvPressureAlcoVCM, eev1ManualOperationValue, eev1CurrentSuperheatSetpoint, eev1SuctionPressureAlcoVCM, eev1SaturationTemperatureAlcoVCM, eev1CoilOutTemperatureAlcoVCM, eev1Superheat, eev1ValveOpening, eev1PressureSensorErrorAlarmprio, eev1TemperatureSrErrorAlarmprio, eev1StepperMotorErrorAlarmprio, eev1Controller, eev1ReliabilityCarelEVD, eev1SuperheatSetpointCarelEVD, eev1DehumidificaetpointCarelEVD, eev1MOPTemperatureCarelEVD, eev1RefrigerantCarelEVD, eev1ValveTypeCarelEVD, eev1SensorTypeEvPressureCarelEVD, eev1SuctionTemperatureCarelEVD, eev1EvaporationTperatureCarelEVD, eev1EvaporationPressureCarelEVD, eev1ReliabilityAlarmprioCarelEVD, eev2ConfigActive, eev2BatterySupply, eev2MOPControl, eev2SuperheatControlMode, eev2ManualOperation, eev2PressureSensommonAlarmConfig, eev2TemperatureSmmonAlarmConfig, eev2StepperMotorommonAlarmConfig, eev2AvailabilityErrorCommonAlarm, eev2BatteryHoldingTime, eev2Refrigerant, eev2MOPTemperature, eev2SuperheatSetpoint, eev2DehumidificaperheatSetpoint, eev2StartUpOpeningDuration, eev2StartUpOpening, eev2ValveType, eev2SensorTypeEvorationgPressure, eev2ManualOperationValue, eev2CurrentSuperheatSetpoint, eev2SuctionPressure, eev2SaturationTemperature, eev2CoilOutTemperature, eev2Superheat, eev2ValveOpening, eev2PressureSensorErrorAlarmprio, eev2TemperatureSrErrorAlarmprio, eev2StepperMotorErrorAlarmprio, eev2Controller, eev2AvailabilityCarelEVD, eev2SuperheatSetpointCarelEVD, eev2DehumidificaetpointCarelEVD, eev2MOPTemperatureCarelEVD, eev2RefrigerantCarelEVD, eev2ValveTypeCarelEVD, eev2SensorTypeEvPressureCarelEVD, eev2SuctionTemperatureCarelEVD, eev2EvaporationTperatureCarelEVD, eev2EvaporationPressureCarelEVD, eev2ReliabilityAlarmprioCarelEVD, eev2CurrentCooliCapacityCarelEVD, valout1ConfigActive, valout1PurposeUse, valout1AnalogOutput, valout1MinValue, valout1MaxValue, valout2ConfigActive, valout2PurposeUse, valout2AnalogOutput, valout2MinValue, valout2MaxValue, valout3ConfigActive, valout3PurposeUse, valout3AnalogOutput, valout3MinValue, valout3MaxValue, valout4ConfigActive, valout4PurposeUse, valout4AnalogOutput, valout4MinValue, valout4MaxValue, hgbp1ConfigActive, hgbp1ManualOperationActive, hgbp1PFactor, hgbp1IFactor, hgbp1DFactor, hgbp1ControlCycle, hgbp1PreOpeningTime, hgbp1PreOpeningGrade, hgbp1MinOpeningGrade, hgbp1MaxOpeningGrade, hgbp1AnalogOut, hgbp1ManOperationOpeningGrade, hgbp1OpeningGrade, hgbp2ConfigActive, hgbp2ManualOperationActive, hgbp2PFactor, hgbp2IFactor, hgbp2DFactor, hgbp2ControlCycle, hgbp2PreOpeningTime, hgbp2PreOpeningGrade, hgbp2MinOpeningGrade, hgbp2MaxOpeningGrade, hgbp2AnalogOut, hgbp2ManOperationOpeningGrade, hgbp2OpeningGrade, compressor3ConfigActive, compr3ManualOperationActive, compr3ManualOperationState, compr3Running, compr3EconomizerActive, compr3CommonAlarmConfig, compressor3StartTempSummer, compressor3HysteresisSummer, compressor3StartTempWinter, compressor3HysteresisWinter, compr3DigitalOut, compr3AlarmDigitalIn, compr3AlarmPriorities, compr3AlarmDelay, compr3LowPressDigitalIn, compr3LowPressAlarmPriorities, compr3LowPressAlarmDelay, compr3Break, compr3Runtime, compr3LowPressManagTime, compr3LowPressManagPress, compr3LowPressManagRestarts, compr3HighPressManagTime, compr3HighPressManagPress, compr3HighPressManagRestarts, compr3HighPressManagMode, compr3MinimumRuntime, compr3ActualCurrReadBackFromComp, compr3DesiredSpeedPower, compr3OilTemperature, compressor4ConfigActive, compr4ManualOperationActive, compr4ManualOperationState, compr4Running, compr4EconomizerActive, compr4CommonAlarmConfig, compressor4StartTempSummer, compressor4HysteresisSummer, compressor4StartTempWinter, compressor4HysteresisWinter, compr4DigitalOut, compr4AlarmDigitalIn, compr4AlarmPriorities, compr4AlarmDelay, compr4LowPressDigitalIn, compr4LowPressAlarmPriorities, compr4LowPressAlarmDelay, compr4Break, compr4Runtime, compr4LowPressManagTime, compr4LowPressManagPress, compr4LowPressManagRestarts, compr4HighPressManagTime, compr4HighPressManagPress, compr4HighPressManagRestarts, compr4HighPressManagMode, compr4MinimumRuntime, compr4ActualCurrReadBackFromComp, compr4DesiredSpeedPower, compr4OilTemperature, compressor5ConfigActive, compr5ManualOperationActive, compr5ManualOperationState, compr5Running, compr5EconomizerActive, compr5CommonAlarmConfig, compressor5StartTempSummer, compressor5HysteresisSummer, compressor5StartTempWinter, compressor5HysteresisWinter, compr5DigitalOut, compr5AlarmDigitalIn, compr5AlarmPriorities, compr5AlarmDelay, compr5LowPressDigitalIn, compr5LowPressAlarmPriorities, compr5LowPressAlarmDelay, compr5Break, compr5Runtime, compr5LowPressManagTime, compr5LowPressManagPress, compr5LowPressManagRestarts, compr5HighPressManagTime, compr5HighPressManagPress, compr5HighPressManagRestarts, compr5HighPressManagMode, compr5MinimumRuntime, compr5ActualCurrReadBackFromComp, compr5DesiredSpeedPower, compr5OilTemperature, compressor6ConfigActive, compr6ManualOperationActive, compr6ManualOperationState, compr6Running, compr6EconomizerActive, compr6CommonAlarmConfig, compressor6StartTempSummer, compressor6HysteresisSummer, compressor6StartTempWinter, compressor6HysteresisWinter, compr6DigitalOut, compr6AlarmDigitalIn, compr6AlarmPriorities, compr6AlarmDelay, compr6LowPressDigitalIn, compr6LowPressAlarmPriorities, compr6LowPressAlarmDelay, compr6Break, compr6Runtime, compr6LowPressManagTime, compr6LowPressManagPress, compr6LowPressManagRestarts, compr6HighPressManagTime, compr6HighPressManagPress, compr6HighPressManagRestarts, compr6HighPressManagMode, compr6MinimumRuntime, compr6ActualCurrReadBackFromComp, compr6DesiredSpeedPower, compr6OilTemperature, eCOLouverConfigActive, eCOLouverManualOperationActive, eCOLouverStartOutdoorTemperature, eCOLouverHysteresis, eCOLouverStartTemperature, eCOLouverLinearRange, eCOLouverAnalogOut, eCOLouverOpeningGrade, eCOLouverManOpOpeningGrade, eCOCOOL2ConfigActive, eCOCOOL2StartOutdoorTemperature, eCOCOOL2Hysteresis, eCOCOOL2DifferenStartTemperature, eCOCOOL2EmergencyHysteresis, eCOCOOL2AntiFreezeTemperature, eCOCOOL2StartDelay, moveableCoilEnabled, moveableCoilDirection, moveableCoilManuOperationActive, moveableCoilManuerationDirection, moveableCoilCommAlarmConfigured, moveableCoilPositionMotor1, moveableCoilPositionMotor2, moveableCoilMaxDifference, moveableCoilSetupTime, moveableCoilEnableDigitalOutput, moveableCoilDireionDigitalOutput, moveableCoilMotor1AnalogInput, moveableCoilMotor2AnalogInput, moveableCoilAlarmDigitalOutput, moveableCoilAlarmDelay, freecoolingConfig, freecoolingPossible, freecoolingStartTemperature, freecoolingHysteresis, freecoolingValveOpeningStart, freecoolingValveGradient, freecoolingStopTemperature, freecoolingStarteratureDrycooler, freecoolingHysteresisDrycooler, fCBPCSTOP, fCBREMOTESTOP, fCBLOCALSTOP, fCBTIMERSTOP, unitStandBy, keyLock, timeDateFormat, condensorTemperature, supplyTemperature1, supplyTemperature2, freecoolingLouverOpeningGrade, dCPowerSupplyVoltage, fANFCB, remoteComfortUnit1, remoteComfortUnit2, lOUVERFCB, remoteComfortUnit3, freecoolingLouverK3, freecoolingLouverK4, fCBCommonAlarm, alarmComfortUnit1, alarmComfortUnit2, reheat1Failure, humidificationFailure, aiflowFailure, filterClogged, auxAlarm1, fireSmokeDetectorTriggered, auxAlarm2, auxAlarm3, roomAirTemperatureTooHighAlarm, roomAirHumidityTooHighAlarm, badWorkingComfortUnit1, badWorkingComfortUnit2, roomAirTempTooLow, roomAirHumidityTooLow, fireSmokeDetectorAlarm, fCBSensorFailure, fCBControllerFailure, fCBIOBoardTransmissionFailure, fCBRoomAirTemperature, fCBRoomAirHumidity, supplyAirTemperatureComfortUnit1, supplyAirTemperatureComfortUnit2, fCBOutsideAirTemperature, fCBOutsideAirHumidity, analogueOutFanACFan, analogueOutLouverFCB, fCBAnalogueOutHumidifier, setpointTemperatureCooling, setpointTemperatureHeating, secondSetpointTemperatureHeating, setpointHumidity, colingBand, heatingBand, humidityBand, limitRoomTempMax, limitRoomTempMin, limitRoomHumidityTooLow, limitRoomHumidityTooHigh, errorLevel, coolingSetpoint, heatingSetpoint, highTemperatureAlarmThreshold, lowTemperatureAlarmThreshold, cyclesFreecoolingK3, cyclesFreecoolingK4, runningHoursFliter, runningHoursController, runningHoursAirco1, runningHoursAirco2, runningHoursAirco3, fanTotalCurrentConsumption, fanTotalPowerConsumption, userPassword, language, aEControlActive, commonAlarmConfioomHighPressure, forceSummerMode, actionOnHumidityTooHighAlarm, actionOnWaterAlarm, summerModeTempersetFromSetpoint, antiFreezeModeTesetFromSetpoint, forceSummerModeEernallyDigitalIn, roomHighPressurearmDigitalInput, roomHighPressurearmDigitalOutput, roomHighPressureAlarmDelay, fanStartDelay, operationMode, reasonForSummerMode, transitionDelayFcAfFc, antiFreezeTemperatureAbsolut, mixedAirTemperatureSetpoint, emergencyHysteresis, freeCoolingStartDelay, freshAirLouverConfigActive, freshAirLouverMaOperationActive, freshAirLouverAnogOutputInverted, freshAirLouverOpeningGrade, freshAirLouverMaionOpeningGrade, freshAirLouverAnalogOutput, freshAirLouverPronalCoefficient, freshAirLouverIngralCoefficient, freshAirLouverDetiveCoefficient, freshAirLouverMamumOpeningGrade, freshAirLouverAcatorBiasVoltage, antiFreezeLouverigurationActive, antiFreezeLouverOperationActive, antiFreezeLouverogOutputInverted, antiFreezeLouverOpeningGrade, antiFreezeLouverionOpeningGrade, antiFreezeLouverAnalogOutput, antiFreezeLouveronalCoefficient, antiFreezeLouvergralCoefficient, antiFreezeLouvertiveCoefficient, antiFreezeLouvermumOpeningGrade, antiFreezeLouveratorBiasVoltage, circulationLouvefigurationActive, circulationLouvelOperationActive, circulationLouvegOutputInverted, circulationLouverOpeningGrade, circulationLouvetionOpeningGrade, circulationLouverAnalogOutput, circulationLouveionalCoefficient, circulationLouveegralCoefficient, circulationLouveativeCoefficient, circulationLouveimumOpeningGrade, circulationLouveuatorBiasVoltage, exitLouverConfigurationActive, exitLouverManualOperationActive, exitLouverOpeningState, exitLouverManualionOpeningState, exitLouverAnalogOutputInverted, exitLouverDigitalOutput, exitLouverOpeningGrade, exitLouverManualionOpeningGrade, exitLouverAnalogOutput, exitLouverProporonalCoefficient, exitLouverIntegralCoefficient, exitLouverDerivativeCoefficient, exitLouverMaximumOpeningGrade, exitLouverActuatorBiasVoltage, condFan1ConfigurationActive, condFan1ManualOperationActive, condFan1Running, condFan1CommonAlarmConfigured, condFan1ActualSpeed, condFan1ManualOperationSpeed, condFan1Runtime, condFan1ControlCycle, condFan1MaximumSpeedChange, condFan1MinimumSpeed, condFan1PrerunTime, condFan1PrerunSpeed, condFan1ProportionalCoefficient, condFan1IntegralCoefficient, condFan1DerivativeCoefficient, condFan1AnalogOutput, condFan1DigitalOutput, condFan1DigitalAlarmInput, condFan1DigitalAlarmOutput, condFan1AlarmDelay, condFan2ConfigurationActive, condFan2ManualOperationActive, condFan2Running, condFan2CommonAlarmConfigured, condFan2ActualSpeed, condFan2ManualOperationSpeed, condFan2Runtime, condFan2ControlCycle, condFan2MaximumSpeedChange, condFan2MinimumSpeed, condFan2PrerunTime, condFan2PrerunSpeed, condFan2ProportionalCoefficient, condFan2IntegralCoefficient, condFan2DerivativeCoefficient, condFan2AnalogOutput, condFan2DigitalOutput, condFan2DigitalAlarmInput, condFan2DigitalAlarmOutput, condFan2AlarmDelay, filter1ConfigurationActive, filter1CommonAlarmConfigured, filter1ActionOnAlarm, filter1Purpose, filter1MaxPressureDrop, filter1CurrentPressureDrop, filter1DigitalAlarmOutput, filter1AlarmDelay, filter2ConfigurationActive, filter2CommonAlarmConfigured, filter2ActionOnAlarm, filter2Purpose, filter2MaxPressureDrop, filter2CurrentPressureDrop, filter2DigitalAlarmOutput, filter2AlarmDelay, filter3ConfigurationActive, filter3CommonAlarmConfigured, filter3ActionOnAlarm, filter3Purpose, filter3MaxPressureDrop, filter3CurrentPressureDrop, filter3DigitalAlarmOutput, filter3AlarmDelay, externalFilterCoigurationActive, externalFilterCoAlarmConfigured, externalFilterActionOnAlarm, externalFilterDigitalAlarmInput, externalFilterDigitalAlarmOutput, externalFilterAlarmDelay, gECWValve1ConfigActive, gECWValve1ManualOperationActive, gECWValve1CloseIfWTOverSP, gECWValve1HeatingPermitted, gECWValve1AnalogOutputInverted, gECWValve1StartTemperature, gECWValve1AnalogOut, gECWValve1GEOffTempAbsolute, gECWValve1OpeningGrade, gECWValve1ManOpetionOpeningGrade, gECWValve1AnalogIn, gECWValve1OpeningGradeReturned, gECWValve1PFactor, gECWValve1IFactor, gECWValve1DFactor, gECWValve1ControlStart, gECWValve1GEOffTempRelative, gECWValve2ConfigActive, gECWValve2ManualOperationActive, gECWValve2CloseIfWTOverSP, gECWValve2HeatingPermitted, gECWValve2AnalogOutputInverted, gECWValve2StartTemperature, gECWValve2AnalogOut, gECWValve2GEOffTempAbsolute, gECWValve2OpeningGrade, gECWValve2ManOpetionOpeningGrade, gECWValve2AnalogIn, gECWValve2OpeningGradeReturned, gECWValve2PFactor, gECWValve2IFactor, gECWValve2DFactor, gECWValve2ControlStart, gECWValve2GEOffTempRelative, iCCConfigured, manualOperation, commonAlarmAvailability, commonAlarmUpc, commonAlarmLowPressure, compressorPowerOnUPCDP42, enableToOperateUPCDP46, iCCUPCModbusAddress, compressorModel, compressorNMinLimit, compressorNMaxLimit, iccStartTemp, alarmpriorityAvailability, alarmpriorityUpc, pIDControllerKp, pIDControllerKi, pIDControllerKd, manualOperationValue, availability, envelopeWorkingZone, suctionGasTemperature, dischargeGasTemperature, dischargeGasPressure, suctionGasPressure, superheatEeValve, speedRequestToInverter, compressorRotorSpeedRps, compressorRotorSpeedPercent, compressorPowerRequest, inverterErrorCode, eeValvePosition, runtimeCompressor, iccTempHystereseRefIccStartTemp, compressorMinimuIfTempTooLowTime, compressorMinimufTempTooLowTime, alarmpriorityLowPressure, xYZAlarmValidLocalStop, xYZAlarmValidCompLPAlarm, xYZAlarmValidCompAlarm, xYZAlarmValidEHeatingAlarm, xYZAlarmValidHumidifierAlarm, xYZAlarmValidHumidifier5uSAlarm, xYZAlarmValidHumidifier20uSAlarm, xYZAlarmValidAirFlowAlarm, xYZAlarmValidFilterClogged, xYZAlarmValidExternalAlarm, xYZAlarmValidPumpAlarm, xYZAlarmValidDrycoolerAlarm, xYZAlarmValidWaterAlarm, xYZAlarmValidRoomTempTooHigh, xYZAlarmValidRoomHumidityTooHigh, xYZAlarmValidSupplyTempTooHigh, xYZAlarmValidSupyHumidityTooHigh, xYZAlarmValidRoomTempTooLow, xYZAlarmValidRoomHumidityTooLow, xYZAlarmValidSupplyTempTooLow, xYZAlarmValidSupyHumidityTooLow, xYZAlarmValidWaterTempTooHigh, xYZAlarmValidWaterTempTooLow, xYZAlarmValidFireAlarm, xYZAlarmValidSensorAlarm, xYZAlarmValidSensorBreak, xYZAlarmValidHotgasReheatAlarm, xYZAlarmValidPhaseFailure, xYZAlarmValidBMSStop1, xYZAlarmValidRefrigerantCircuit1, xYZAlarmValidRefrigerantCircuit2, xYZAlarmValidRefntCircuits1And2, myZone, myZoneRoomTemperature, myZoneRoomHumidity, myZoneSupplyTemperature, myZoneSupplyHumidity, myZoneSequencingTime, myZoneNumberOfErrorUnits, myZoneEmergencyTemperature, myZoneCWEnergySaveModeActiv, myZoneTestsequencing, myZoneAverageDetonOfTempAndHumi, myZoneStandbyInAgeDetermination, myZoneEmergencyOperationActive, myZoneAverageDetonOfAirPressure, myZoneAverageDetonOfRoomPressure, myZoneNMax, gE3RelativeStartTempOfMyZone, gE3HysteresisOfMyZone, gE3AbsoluteStartTempOfMyZone, gEpAbsoluteStarttertempOfMyZone, gEpWaterHysteresisOfMyZone, numberOfUnitsOfMyZoneForPT, myZoneOutdoorTemperature, myZoneCurrentRaisedFloorPressure, gepRelativeStarttertempOfMyZone, myZoneCurrentRoomPressure, myZoneAverageDetayForTempAndHumi, myZoneCurrentSupplyAirPressure, myZoneNMaxForStayUnitDuringSAPSM, myZoneSupplyAirPeValueSelection, systemName, unitName, maxDeltaPExceeded, condensorFanTherectionTriggered, compressorCabinetTempTooHigh, electricCabinetTempTooHigh, protectionDeviceCompressor1, protectionDeviceCompressor2, protectionDeviceCompressor3, protectionDeviceCompressor4, protectionDeviceCompressor5, protectionDeviceCompressor6, alarmStateThatShtIncludedUPCDP37, bmsOfflineHeartBitFailsUPCDP40, globalGeneralAlarmUPCDP45, deltaPLargerAlloeStartUpUPCDP47, dpStartDisableAlarmUPCDP49, minOilLevelComp1, minOilLevelComp2, minOilLevelComp3, minOilLevelComp4, minOilLevelComp5, minOilLevelComp6, powerSwitchComp1, powerSwitchComp2, powerSwitchComp3, powerSwitchComp4, powerSwitchComp5, powerSwitchComp6, envelopeLeftComp1, envelopeLeftComp2, envelopeLeftComp3, envelopeLeftComp4, envelopeLeftComp5, envelopeLeftComp6, freecoolFailedInrmediateTempHigh, supplyAirPressureTooHighAlarm, supplyAirPressureTooLowAlarm, waterflowFailurecuitCoolingWater, externalUnit1Alarm, fCValveFeedbackAlarm, prealarmSupplyAiureTooHighAlarm, prealarmSupplyAissureTooLowAlarm, frostCirculation, phaseFailure1, phaseFailure2, phaseFailure3, phaseFailure4, louver1, louver2, louver3, fan4Alarm, fan4FilterAlarm, externalUnit2Alarm}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Group for all objects"
|
|
::= {wibGroups 3}
|
|
|
|
-- List of submenus
|
|
|
|
unitTypeAC OBJECT IDENTIFIER ::= { wibUnits 1 }
|
|
info OBJECT IDENTIFIER ::= { unitTypeAC 1 }
|
|
infoValuesControl OBJECT IDENTIFIER ::= { info 1 }
|
|
infoValAir OBJECT IDENTIFIER ::= { infoValuesControl 1 }
|
|
infoValTemperature OBJECT IDENTIFIER ::= { infoValAir 1 }
|
|
infoValHumidity OBJECT IDENTIFIER ::= { infoValAir 2 }
|
|
infoValPressure OBJECT IDENTIFIER ::= { infoValAir 3 }
|
|
infoValWater OBJECT IDENTIFIER ::= { infoValuesControl 2 }
|
|
infoValRefrigerant OBJECT IDENTIFIER ::= { infoValuesControl 3 }
|
|
infoValAEcontrol OBJECT IDENTIFIER ::= { infoValuesControl 4 }
|
|
infoValMiscellaneous OBJECT IDENTIFIER ::= { infoValuesControl 5 }
|
|
infoModulefunctionsComponents OBJECT IDENTIFIER ::= { info 2 }
|
|
infoCooling OBJECT IDENTIFIER ::= { infoModulefunctionsComponents 1 }
|
|
infoCompressor OBJECT IDENTIFIER ::= { infoCooling 1 }
|
|
infoValves OBJECT IDENTIFIER ::= { infoCooling 2 }
|
|
infoSuctionvalves OBJECT IDENTIFIER ::= { infoValves 1 }
|
|
infoGECWValves OBJECT IDENTIFIER ::= { infoValves 2 }
|
|
infoHGBPs OBJECT IDENTIFIER ::= { infoValves 3 }
|
|
infoEEV OBJECT IDENTIFIER ::= { infoValves 4 }
|
|
infoEEV1 OBJECT IDENTIFIER ::= { infoEEV 1 }
|
|
infoEEV2 OBJECT IDENTIFIER ::= { infoEEV 2 }
|
|
infoDrycooler OBJECT IDENTIFIER ::= { infoCooling 3 }
|
|
infoPumps OBJECT IDENTIFIER ::= { infoCooling 4 }
|
|
infoLouver OBJECT IDENTIFIER ::= { infoCooling 5 }
|
|
infoCondesorfan OBJECT IDENTIFIER ::= { infoCooling 6 }
|
|
infoIcc OBJECT IDENTIFIER ::= { infoCooling 7 }
|
|
infoMovableCoil OBJECT IDENTIFIER ::= { infoCooling 8 }
|
|
infoHeating OBJECT IDENTIFIER ::= { infoModulefunctionsComponents 2 }
|
|
infoEHeating OBJECT IDENTIFIER ::= { infoHeating 1 }
|
|
infoHumidity OBJECT IDENTIFIER ::= { infoModulefunctionsComponents 3 }
|
|
infoAir OBJECT IDENTIFIER ::= { infoModulefunctionsComponents 4 }
|
|
infoAirAE OBJECT IDENTIFIER ::= { infoAir 6 }
|
|
infoSensorIORawdata OBJECT IDENTIFIER ::= { infoModulefunctionsComponents 5 }
|
|
infoZoneSequencing OBJECT IDENTIFIER ::= { info 3 }
|
|
infoDataStatistical OBJECT IDENTIFIER ::= { info 4 }
|
|
infoStatDatalog1 OBJECT IDENTIFIER ::= { infoDataStatistical 1 }
|
|
infoStatDatalog2 OBJECT IDENTIFIER ::= { infoDataStatistical 2 }
|
|
infoStatEventlog OBJECT IDENTIFIER ::= { infoDataStatistical 3 }
|
|
infoStatRuntimes OBJECT IDENTIFIER ::= { infoDataStatistical 4 }
|
|
infoStatFunctions OBJECT IDENTIFIER ::= { infoStatRuntimes 1 }
|
|
infoStatComponents OBJECT IDENTIFIER ::= { infoStatRuntimes 2 }
|
|
infoStatCompressors OBJECT IDENTIFIER ::= { infoStatComponents 1 }
|
|
infoStatPumps OBJECT IDENTIFIER ::= { infoStatComponents 2 }
|
|
infoStatEHeatings OBJECT IDENTIFIER ::= { infoStatComponents 3 }
|
|
infoStatDrycoolers OBJECT IDENTIFIER ::= { infoStatComponents 4 }
|
|
infoStatMaintenance OBJECT IDENTIFIER ::= { infoDataStatistical 5 }
|
|
infoSystem OBJECT IDENTIFIER ::= { info 5 }
|
|
operation OBJECT IDENTIFIER ::= { unitTypeAC 2 }
|
|
opValuesControl OBJECT IDENTIFIER ::= { operation 1 }
|
|
opCtrlAir OBJECT IDENTIFIER ::= { opValuesControl 1 }
|
|
opCtrlTemperature OBJECT IDENTIFIER ::= { opCtrlAir 1 }
|
|
opCtrlHumidity OBJECT IDENTIFIER ::= { opCtrlAir 2 }
|
|
opCtrlPressure OBJECT IDENTIFIER ::= { opCtrlAir 3 }
|
|
opCtrlWater OBJECT IDENTIFIER ::= { opValuesControl 2 }
|
|
opCtrlRefrigerant OBJECT IDENTIFIER ::= { opValuesControl 3 }
|
|
opCtrlAEoperation OBJECT IDENTIFIER ::= { opValuesControl 4 }
|
|
opCtrlEcocool OBJECT IDENTIFIER ::= { opValuesControl 5 }
|
|
opModulefunctionsComponents OBJECT IDENTIFIER ::= { operation 2 }
|
|
opCooling OBJECT IDENTIFIER ::= { opModulefunctionsComponents 1 }
|
|
opCompressor OBJECT IDENTIFIER ::= { opCooling 1 }
|
|
opCompressor1 OBJECT IDENTIFIER ::= { opCompressor 1 }
|
|
opCompressor2 OBJECT IDENTIFIER ::= { opCompressor 2 }
|
|
opCompressor3 OBJECT IDENTIFIER ::= { opCompressor 3 }
|
|
opCompressor4 OBJECT IDENTIFIER ::= { opCompressor 4 }
|
|
opCompressor5 OBJECT IDENTIFIER ::= { opCompressor 5 }
|
|
opCompressor6 OBJECT IDENTIFIER ::= { opCompressor 6 }
|
|
opValves OBJECT IDENTIFIER ::= { opCooling 2 }
|
|
opSuctionValve OBJECT IDENTIFIER ::= { opValves 1 }
|
|
opGECWValve OBJECT IDENTIFIER ::= { opValves 2 }
|
|
opGValve OBJECT IDENTIFIER ::= { opValves 3 }
|
|
opEEV OBJECT IDENTIFIER ::= { opValves 4 }
|
|
opEEV1 OBJECT IDENTIFIER ::= { opEEV 1 }
|
|
opEEV2 OBJECT IDENTIFIER ::= { opEEV 2 }
|
|
opChillerFreecoolingValve OBJECT IDENTIFIER ::= { opValves 5 }
|
|
opDrycooler OBJECT IDENTIFIER ::= { opCooling 3 }
|
|
opDrycooler1 OBJECT IDENTIFIER ::= { opDrycooler 1 }
|
|
opDrycooler2 OBJECT IDENTIFIER ::= { opDrycooler 2 }
|
|
opDrycooler3 OBJECT IDENTIFIER ::= { opDrycooler 3 }
|
|
opDrycooler4 OBJECT IDENTIFIER ::= { opDrycooler 4 }
|
|
opPump OBJECT IDENTIFIER ::= { opCooling 4 }
|
|
opPump1 OBJECT IDENTIFIER ::= { opPump 1 }
|
|
opPump2 OBJECT IDENTIFIER ::= { opPump 2 }
|
|
opPump3 OBJECT IDENTIFIER ::= { opPump 3 }
|
|
opPump4 OBJECT IDENTIFIER ::= { opPump 4 }
|
|
opCoolLouver OBJECT IDENTIFIER ::= { opCooling 5 }
|
|
opEcoLouver OBJECT IDENTIFIER ::= { opCoolLouver 1 }
|
|
opCondensorfan OBJECT IDENTIFIER ::= { opCooling 6 }
|
|
opHeating OBJECT IDENTIFIER ::= { opModulefunctionsComponents 2 }
|
|
opEHeat OBJECT IDENTIFIER ::= { opHeating 1 }
|
|
opEHeat1 OBJECT IDENTIFIER ::= { opEHeat 1 }
|
|
opEHeat2 OBJECT IDENTIFIER ::= { opEHeat 2 }
|
|
opEHeat3 OBJECT IDENTIFIER ::= { opEHeat 3 }
|
|
opEHeat4 OBJECT IDENTIFIER ::= { opEHeat 4 }
|
|
opHotgasHeat OBJECT IDENTIFIER ::= { opHeating 2 }
|
|
opHwrValve OBJECT IDENTIFIER ::= { opHeating 3 }
|
|
opHumidity OBJECT IDENTIFIER ::= { opModulefunctionsComponents 3 }
|
|
opHumidifier OBJECT IDENTIFIER ::= { opHumidity 1 }
|
|
opDehumidification OBJECT IDENTIFIER ::= { opHumidity 2 }
|
|
opAir OBJECT IDENTIFIER ::= { opModulefunctionsComponents 4 }
|
|
opFan OBJECT IDENTIFIER ::= { opAir 1 }
|
|
opAirLouver OBJECT IDENTIFIER ::= { opAir 2 }
|
|
opAEfilter OBJECT IDENTIFIER ::= { opAir 6 }
|
|
opSensor OBJECT IDENTIFIER ::= { opModulefunctionsComponents 5 }
|
|
opSensor1 OBJECT IDENTIFIER ::= { opSensor 1 }
|
|
opSensor2 OBJECT IDENTIFIER ::= { opSensor 2 }
|
|
opSensor3 OBJECT IDENTIFIER ::= { opSensor 3 }
|
|
opSensor4 OBJECT IDENTIFIER ::= { opSensor 4 }
|
|
opSensor5 OBJECT IDENTIFIER ::= { opSensor 5 }
|
|
opSensor6 OBJECT IDENTIFIER ::= { opSensor 6 }
|
|
opSensor7 OBJECT IDENTIFIER ::= { opSensor 7 }
|
|
opSensor8 OBJECT IDENTIFIER ::= { opSensor 8 }
|
|
opSensor9 OBJECT IDENTIFIER ::= { opSensor 9 }
|
|
opSensor10 OBJECT IDENTIFIER ::= { opSensor 10 }
|
|
opSensor11 OBJECT IDENTIFIER ::= { opSensor 11 }
|
|
opSensor12 OBJECT IDENTIFIER ::= { opSensor 12 }
|
|
opSensor13 OBJECT IDENTIFIER ::= { opSensor 13 }
|
|
opSensor14 OBJECT IDENTIFIER ::= { opSensor 14 }
|
|
opSensor15 OBJECT IDENTIFIER ::= { opSensor 15 }
|
|
opSensor16 OBJECT IDENTIFIER ::= { opSensor 16 }
|
|
opSensor17 OBJECT IDENTIFIER ::= { opSensor 17 }
|
|
opSensor18 OBJECT IDENTIFIER ::= { opSensor 18 }
|
|
opSensor19 OBJECT IDENTIFIER ::= { opSensor 19 }
|
|
opSensor20 OBJECT IDENTIFIER ::= { opSensor 20 }
|
|
opSensor21 OBJECT IDENTIFIER ::= { opSensor 21 }
|
|
opAuxPorts OBJECT IDENTIFIER ::= { opModulefunctionsComponents 6 }
|
|
opExtAlarms OBJECT IDENTIFIER ::= { opAuxPorts 1 }
|
|
opExtAlarms1 OBJECT IDENTIFIER ::= { opExtAlarms 1 }
|
|
opExtAlarms2 OBJECT IDENTIFIER ::= { opExtAlarms 2 }
|
|
opExtAlarms3 OBJECT IDENTIFIER ::= { opExtAlarms 3 }
|
|
opExtAlarms4 OBJECT IDENTIFIER ::= { opExtAlarms 4 }
|
|
opExtAlarms5 OBJECT IDENTIFIER ::= { opExtAlarms 5 }
|
|
opExtAlarms6 OBJECT IDENTIFIER ::= { opExtAlarms 6 }
|
|
opExtAlarms7 OBJECT IDENTIFIER ::= { opExtAlarms 7 }
|
|
opExtAlarms8 OBJECT IDENTIFIER ::= { opExtAlarms 8 }
|
|
opExtAlarms9 OBJECT IDENTIFIER ::= { opExtAlarms 9 }
|
|
opExtAlarms10 OBJECT IDENTIFIER ::= { opExtAlarms 10 }
|
|
opUnitalarms OBJECT IDENTIFIER ::= { opAuxPorts 2 }
|
|
opZoneSequencing OBJECT IDENTIFIER ::= { operation 3 }
|
|
opSystem OBJECT IDENTIFIER ::= { operation 4 }
|
|
opATPreferences OBJECT IDENTIFIER ::= { opSystem 1 }
|
|
opPassword OBJECT IDENTIFIER ::= { operation 5 }
|
|
config OBJECT IDENTIFIER ::= { unitTypeAC 3 }
|
|
confValuesControl OBJECT IDENTIFIER ::= { config 1 }
|
|
confCtrlAir OBJECT IDENTIFIER ::= { confValuesControl 1 }
|
|
confCtrlTemperature OBJECT IDENTIFIER ::= { confCtrlAir 1 }
|
|
confCtrlHumidity OBJECT IDENTIFIER ::= { confCtrlAir 2 }
|
|
confCtrlPressure OBJECT IDENTIFIER ::= { confCtrlAir 3 }
|
|
confCtrlWater OBJECT IDENTIFIER ::= { confValuesControl 2 }
|
|
confCtrlRefrigerant OBJECT IDENTIFIER ::= { confValuesControl 3 }
|
|
confCtrlRefrigLPmanagement OBJECT IDENTIFIER ::= { confCtrlRefrigerant 1 }
|
|
confCtrlRefrigHPmanagement OBJECT IDENTIFIER ::= { confCtrlRefrigerant 2 }
|
|
confCtrlMiscParameters OBJECT IDENTIFIER ::= { confValuesControl 4 }
|
|
confCtrlGEOperation OBJECT IDENTIFIER ::= { confValuesControl 5 }
|
|
confCtrlChillerFreecooling OBJECT IDENTIFIER ::= { confValuesControl 6 }
|
|
confCtrlAEoperation OBJECT IDENTIFIER ::= { confValuesControl 7 }
|
|
confCtrlecocool OBJECT IDENTIFIER ::= { confValuesControl 8 }
|
|
confModulefuncComponents OBJECT IDENTIFIER ::= { config 2 }
|
|
confCooling OBJECT IDENTIFIER ::= { confModulefuncComponents 1 }
|
|
confCompressor OBJECT IDENTIFIER ::= { confCooling 1 }
|
|
confCompressor1 OBJECT IDENTIFIER ::= { confCompressor 1 }
|
|
confCompressor2 OBJECT IDENTIFIER ::= { confCompressor 2 }
|
|
confCompressor3 OBJECT IDENTIFIER ::= { confCompressor 3 }
|
|
confCompressor4 OBJECT IDENTIFIER ::= { confCompressor 4 }
|
|
confCompressor5 OBJECT IDENTIFIER ::= { confCompressor 5 }
|
|
confCompressor6 OBJECT IDENTIFIER ::= { confCompressor 6 }
|
|
confValves OBJECT IDENTIFIER ::= { confCooling 2 }
|
|
confSuctionValves OBJECT IDENTIFIER ::= { confValves 1 }
|
|
confGECWValve OBJECT IDENTIFIER ::= { confValves 2 }
|
|
confGECWValve1 OBJECT IDENTIFIER ::= { confGECWValve 1 }
|
|
confGECWValve2 OBJECT IDENTIFIER ::= { confGECWValve 2 }
|
|
confGValve OBJECT IDENTIFIER ::= { confValves 3 }
|
|
confHGBP OBJECT IDENTIFIER ::= { confValves 4 }
|
|
confHGBP1 OBJECT IDENTIFIER ::= { confHGBP 1 }
|
|
confHGBP2 OBJECT IDENTIFIER ::= { confHGBP 2 }
|
|
confEEV OBJECT IDENTIFIER ::= { confValves 5 }
|
|
confEEV1 OBJECT IDENTIFIER ::= { confEEV 1 }
|
|
confEEV2 OBJECT IDENTIFIER ::= { confEEV 2 }
|
|
confDrycooler OBJECT IDENTIFIER ::= { confCooling 3 }
|
|
confDrycooler1 OBJECT IDENTIFIER ::= { confDrycooler 1 }
|
|
confDrycooler2 OBJECT IDENTIFIER ::= { confDrycooler 2 }
|
|
confDrycooler3 OBJECT IDENTIFIER ::= { confDrycooler 3 }
|
|
confDrycooler4 OBJECT IDENTIFIER ::= { confDrycooler 4 }
|
|
confPump OBJECT IDENTIFIER ::= { confCooling 4 }
|
|
confPump1 OBJECT IDENTIFIER ::= { confPump 1 }
|
|
confPump2 OBJECT IDENTIFIER ::= { confPump 2 }
|
|
confPump3 OBJECT IDENTIFIER ::= { confPump 3 }
|
|
confPump4 OBJECT IDENTIFIER ::= { confPump 4 }
|
|
confCoolLouver OBJECT IDENTIFIER ::= { confCooling 5 }
|
|
confEcoLouver OBJECT IDENTIFIER ::= { confCoolLouver 1 }
|
|
confFreshairLouver OBJECT IDENTIFIER ::= { confCoolLouver 2 }
|
|
confAntifreezeLouver OBJECT IDENTIFIER ::= { confCoolLouver 3 }
|
|
confCirculationLouver OBJECT IDENTIFIER ::= { confCoolLouver 4 }
|
|
confExitLouver OBJECT IDENTIFIER ::= { confCoolLouver 5 }
|
|
confCondensorfan OBJECT IDENTIFIER ::= { confCooling 6 }
|
|
confIcc OBJECT IDENTIFIER ::= { confCooling 7 }
|
|
confMovableCoil OBJECT IDENTIFIER ::= { confCooling 8 }
|
|
confHeating OBJECT IDENTIFIER ::= { confModulefuncComponents 2 }
|
|
confEHeat OBJECT IDENTIFIER ::= { confHeating 1 }
|
|
confEHeat1 OBJECT IDENTIFIER ::= { confEHeat 1 }
|
|
confEHeat2 OBJECT IDENTIFIER ::= { confEHeat 2 }
|
|
confEHeat3 OBJECT IDENTIFIER ::= { confEHeat 3 }
|
|
confEHeat4 OBJECT IDENTIFIER ::= { confEHeat 4 }
|
|
confHotgasHeat OBJECT IDENTIFIER ::= { confHeating 2 }
|
|
confHwrValve OBJECT IDENTIFIER ::= { confHeating 3 }
|
|
confHumidity OBJECT IDENTIFIER ::= { confModulefuncComponents 3 }
|
|
confHumidifier OBJECT IDENTIFIER ::= { confHumidity 1 }
|
|
confDehumidification OBJECT IDENTIFIER ::= { confHumidity 2 }
|
|
confAir OBJECT IDENTIFIER ::= { confModulefuncComponents 4 }
|
|
confFanGeneral OBJECT IDENTIFIER ::= { confAir 2 }
|
|
confFanAlarm OBJECT IDENTIFIER ::= { confAir 3 }
|
|
confFanSpecialModes OBJECT IDENTIFIER ::= { confAir 4 }
|
|
confAirLouver OBJECT IDENTIFIER ::= { confAir 5 }
|
|
confAEfilter OBJECT IDENTIFIER ::= { confAir 6 }
|
|
confSensor OBJECT IDENTIFIER ::= { confModulefuncComponents 5 }
|
|
confSensor1 OBJECT IDENTIFIER ::= { confSensor 1 }
|
|
confSensor2 OBJECT IDENTIFIER ::= { confSensor 2 }
|
|
confSensor3 OBJECT IDENTIFIER ::= { confSensor 3 }
|
|
confSensor4 OBJECT IDENTIFIER ::= { confSensor 4 }
|
|
confSensor5 OBJECT IDENTIFIER ::= { confSensor 5 }
|
|
confSensor6 OBJECT IDENTIFIER ::= { confSensor 6 }
|
|
confSensor7 OBJECT IDENTIFIER ::= { confSensor 7 }
|
|
confSensor8 OBJECT IDENTIFIER ::= { confSensor 8 }
|
|
confSensor9 OBJECT IDENTIFIER ::= { confSensor 9 }
|
|
confSensor10 OBJECT IDENTIFIER ::= { confSensor 10 }
|
|
confSensor11 OBJECT IDENTIFIER ::= { confSensor 11 }
|
|
confSensor12 OBJECT IDENTIFIER ::= { confSensor 12 }
|
|
confSensor13 OBJECT IDENTIFIER ::= { confSensor 13 }
|
|
confSensor14 OBJECT IDENTIFIER ::= { confSensor 14 }
|
|
confSensor15 OBJECT IDENTIFIER ::= { confSensor 15 }
|
|
confSensor16 OBJECT IDENTIFIER ::= { confSensor 16 }
|
|
confSensor17 OBJECT IDENTIFIER ::= { confSensor 17 }
|
|
confSensor18 OBJECT IDENTIFIER ::= { confSensor 18 }
|
|
confSensor19 OBJECT IDENTIFIER ::= { confSensor 19 }
|
|
confSensor20 OBJECT IDENTIFIER ::= { confSensor 20 }
|
|
confSensor21 OBJECT IDENTIFIER ::= { confSensor 21 }
|
|
confAuxPorts OBJECT IDENTIFIER ::= { confModulefuncComponents 6 }
|
|
confExtAlarms OBJECT IDENTIFIER ::= { confAuxPorts 1 }
|
|
confExtAlarms1 OBJECT IDENTIFIER ::= { confExtAlarms 1 }
|
|
confExtAlarms2 OBJECT IDENTIFIER ::= { confExtAlarms 2 }
|
|
confExtAlarms3 OBJECT IDENTIFIER ::= { confExtAlarms 3 }
|
|
confExtAlarms4 OBJECT IDENTIFIER ::= { confExtAlarms 4 }
|
|
confExtAlarms5 OBJECT IDENTIFIER ::= { confExtAlarms 5 }
|
|
confExtAlarms6 OBJECT IDENTIFIER ::= { confExtAlarms 6 }
|
|
confExtAlarms7 OBJECT IDENTIFIER ::= { confExtAlarms 7 }
|
|
confExtAlarms8 OBJECT IDENTIFIER ::= { confExtAlarms 8 }
|
|
confExtAlarms9 OBJECT IDENTIFIER ::= { confExtAlarms 9 }
|
|
confExtAlarms10 OBJECT IDENTIFIER ::= { confExtAlarms 10 }
|
|
confUnitalarms OBJECT IDENTIFIER ::= { confAuxPorts 2 }
|
|
confDigitalPorts OBJECT IDENTIFIER ::= { confAuxPorts 3 }
|
|
confValueOutput OBJECT IDENTIFIER ::= { confAuxPorts 4 }
|
|
confValueOutput1 OBJECT IDENTIFIER ::= { confValueOutput 1 }
|
|
confValueOutput2 OBJECT IDENTIFIER ::= { confValueOutput 2 }
|
|
confValueOutput3 OBJECT IDENTIFIER ::= { confValueOutput 3 }
|
|
confValueOutput4 OBJECT IDENTIFIER ::= { confValueOutput 4 }
|
|
confUPSOperation OBJECT IDENTIFIER ::= { confModulefuncComponents 7 }
|
|
confManualOperation OBJECT IDENTIFIER ::= { confModulefuncComponents 8 }
|
|
confManCooling OBJECT IDENTIFIER ::= { confManualOperation 1 }
|
|
confManCompressors OBJECT IDENTIFIER ::= { confManCooling 1 }
|
|
confManValves OBJECT IDENTIFIER ::= { confManCooling 2 }
|
|
confManSuctionValve OBJECT IDENTIFIER ::= { confManValves 1 }
|
|
confManSuctionValve2 OBJECT IDENTIFIER ::= { confManValves 2 }
|
|
confManGECWValve OBJECT IDENTIFIER ::= { confManValves 3 }
|
|
confManGValve OBJECT IDENTIFIER ::= { confManValves 4 }
|
|
confManHGBP OBJECT IDENTIFIER ::= { confManValves 5 }
|
|
confManHGBP1 OBJECT IDENTIFIER ::= { confManHGBP 1 }
|
|
confManHGBP2 OBJECT IDENTIFIER ::= { confManHGBP 2 }
|
|
confManEEV OBJECT IDENTIFIER ::= { confManValves 6 }
|
|
confManEEV1 OBJECT IDENTIFIER ::= { confManEEV 1 }
|
|
confManEEV2 OBJECT IDENTIFIER ::= { confManEEV 2 }
|
|
confManDrycooler OBJECT IDENTIFIER ::= { confManCooling 3 }
|
|
confManDrycooler1 OBJECT IDENTIFIER ::= { confManDrycooler 1 }
|
|
confManDrycooler2 OBJECT IDENTIFIER ::= { confManDrycooler 2 }
|
|
confManDrycooler3 OBJECT IDENTIFIER ::= { confManDrycooler 3 }
|
|
confManDrycooler4 OBJECT IDENTIFIER ::= { confManDrycooler 4 }
|
|
confManPump OBJECT IDENTIFIER ::= { confManCooling 4 }
|
|
confManPump1 OBJECT IDENTIFIER ::= { confManPump 1 }
|
|
confManPump2 OBJECT IDENTIFIER ::= { confManPump 2 }
|
|
confManPump3 OBJECT IDENTIFIER ::= { confManPump 3 }
|
|
confManPump4 OBJECT IDENTIFIER ::= { confManPump 4 }
|
|
confManLouver OBJECT IDENTIFIER ::= { confManCooling 5 }
|
|
confManLouverEco OBJECT IDENTIFIER ::= { confManLouver 1 }
|
|
confManLouverFreshAir OBJECT IDENTIFIER ::= { confManLouver 2 }
|
|
confManLouverAntiFreeze OBJECT IDENTIFIER ::= { confManLouver 3 }
|
|
confManLouvercirculation OBJECT IDENTIFIER ::= { confManLouver 4 }
|
|
confManLouverExit OBJECT IDENTIFIER ::= { confManLouver 5 }
|
|
confManConFan OBJECT IDENTIFIER ::= { confManCooling 6 }
|
|
confManHeating OBJECT IDENTIFIER ::= { confManualOperation 2 }
|
|
confManEHeat OBJECT IDENTIFIER ::= { confManHeating 1 }
|
|
confManEHeat1 OBJECT IDENTIFIER ::= { confManEHeat 1 }
|
|
confManEHeat2 OBJECT IDENTIFIER ::= { confManEHeat 2 }
|
|
confManEHeat3 OBJECT IDENTIFIER ::= { confManEHeat 3 }
|
|
confManEHeat4 OBJECT IDENTIFIER ::= { confManEHeat 4 }
|
|
confManHotgasHeat OBJECT IDENTIFIER ::= { confManHeating 2 }
|
|
confManHwrValve OBJECT IDENTIFIER ::= { confManHeating 3 }
|
|
confManHumidity OBJECT IDENTIFIER ::= { confManualOperation 3 }
|
|
confManHumidifier OBJECT IDENTIFIER ::= { confManHumidity 1 }
|
|
confManDehumidification OBJECT IDENTIFIER ::= { confManHumidity 2 }
|
|
confManAir OBJECT IDENTIFIER ::= { confManualOperation 4 }
|
|
confManFan OBJECT IDENTIFIER ::= { confManAir 1 }
|
|
confManAirLouver OBJECT IDENTIFIER ::= { confManAir 2 }
|
|
confManSensor OBJECT IDENTIFIER ::= { confManualOperation 5 }
|
|
confManSensor1 OBJECT IDENTIFIER ::= { confManSensor 1 }
|
|
confManSensor2 OBJECT IDENTIFIER ::= { confManSensor 2 }
|
|
confManSensor3 OBJECT IDENTIFIER ::= { confManSensor 3 }
|
|
confManSensor4 OBJECT IDENTIFIER ::= { confManSensor 4 }
|
|
confManSensor5 OBJECT IDENTIFIER ::= { confManSensor 5 }
|
|
confManSensor6 OBJECT IDENTIFIER ::= { confManSensor 6 }
|
|
confManSensor7 OBJECT IDENTIFIER ::= { confManSensor 7 }
|
|
confManSensor8 OBJECT IDENTIFIER ::= { confManSensor 8 }
|
|
confManSensor9 OBJECT IDENTIFIER ::= { confManSensor 9 }
|
|
confManSensor10 OBJECT IDENTIFIER ::= { confManSensor 10 }
|
|
confManSensor11 OBJECT IDENTIFIER ::= { confManSensor 11 }
|
|
confManSensor12 OBJECT IDENTIFIER ::= { confManSensor 12 }
|
|
confManSensor13 OBJECT IDENTIFIER ::= { confManSensor 13 }
|
|
confManSensor14 OBJECT IDENTIFIER ::= { confManSensor 14 }
|
|
confManSensor15 OBJECT IDENTIFIER ::= { confManSensor 15 }
|
|
confManSensor16 OBJECT IDENTIFIER ::= { confManSensor 16 }
|
|
confManSensor17 OBJECT IDENTIFIER ::= { confManSensor 17 }
|
|
confManSensor18 OBJECT IDENTIFIER ::= { confManSensor 18 }
|
|
confManSensor19 OBJECT IDENTIFIER ::= { confManSensor 19 }
|
|
confManSensor20 OBJECT IDENTIFIER ::= { confManSensor 20 }
|
|
confManSensor21 OBJECT IDENTIFIER ::= { confManSensor 21 }
|
|
confManAuxPorts OBJECT IDENTIFIER ::= { confManualOperation 6 }
|
|
confManExtAlarms OBJECT IDENTIFIER ::= { confManAuxPorts 1 }
|
|
confManExtAlarms1 OBJECT IDENTIFIER ::= { confManExtAlarms 1 }
|
|
confManExtAlarms2 OBJECT IDENTIFIER ::= { confManExtAlarms 2 }
|
|
confManExtAlarms3 OBJECT IDENTIFIER ::= { confManExtAlarms 3 }
|
|
confManExtAlarms4 OBJECT IDENTIFIER ::= { confManExtAlarms 4 }
|
|
confManExtAlarms5 OBJECT IDENTIFIER ::= { confManExtAlarms 5 }
|
|
confManExtAlarms6 OBJECT IDENTIFIER ::= { confManExtAlarms 6 }
|
|
confManExtAlarms7 OBJECT IDENTIFIER ::= { confManExtAlarms 7 }
|
|
confManExtAlarms8 OBJECT IDENTIFIER ::= { confManExtAlarms 8 }
|
|
confManExtAlarms9 OBJECT IDENTIFIER ::= { confManExtAlarms 9 }
|
|
confManExtAlarms10 OBJECT IDENTIFIER ::= { confManExtAlarms 10 }
|
|
confZoneSequencing OBJECT IDENTIFIER ::= { config 3 }
|
|
confDataStatistical OBJECT IDENTIFIER ::= { config 4 }
|
|
confDatalog OBJECT IDENTIFIER ::= { confDataStatistical 1 }
|
|
confEventlog OBJECT IDENTIFIER ::= { confDataStatistical 2 }
|
|
confRuntimes OBJECT IDENTIFIER ::= { confDataStatistical 3 }
|
|
confFunctions OBJECT IDENTIFIER ::= { confRuntimes 1 }
|
|
confComponents OBJECT IDENTIFIER ::= { confRuntimes 2 }
|
|
confCompressors OBJECT IDENTIFIER ::= { confComponents 1 }
|
|
confDrycoolers OBJECT IDENTIFIER ::= { confComponents 2 }
|
|
confPumps OBJECT IDENTIFIER ::= { confComponents 3 }
|
|
confEHeatings OBJECT IDENTIFIER ::= { confComponents 4 }
|
|
confCondFan OBJECT IDENTIFIER ::= { confComponents 5 }
|
|
confMaintenance OBJECT IDENTIFIER ::= { confDataStatistical 4 }
|
|
confSystem OBJECT IDENTIFIER ::= { config 5 }
|
|
confUnitname OBJECT IDENTIFIER ::= { confSystem 1 }
|
|
confInterfaces OBJECT IDENTIFIER ::= { confSystem 2 }
|
|
confDefaultSettingsUnittype OBJECT IDENTIFIER ::= { confSystem 3 }
|
|
confPassword OBJECT IDENTIFIER ::= { config 6 }
|
|
state OBJECT IDENTIFIER ::= { unitTypeAC 4 }
|
|
overview OBJECT IDENTIFIER ::= { state 1 }
|
|
unitstate OBJECT IDENTIFIER ::= { state 2 }
|
|
unitview OBJECT IDENTIFIER ::= { state 4 }
|
|
unitAlarms OBJECT IDENTIFIER ::= { unitview 1 }
|
|
|
|
-- List of datapoints
|
|
|
|
infoValuesControlTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoValuesControlEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoValuesControl"
|
|
::= { infoValuesControl 6 }
|
|
|
|
infoValuesControlEntry OBJECT-TYPE
|
|
SYNTAX InfoValuesControlEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoValuesControl"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoValuesControlTable 1 }
|
|
|
|
InfoValuesControlEntry ::= SEQUENCE {
|
|
setpointRoomPressure Unsigned32,
|
|
currentRoomPressure Unsigned32,
|
|
limitedControlMinimumTemperature Integer32,
|
|
limitedControlMaximumTemperature Integer32,
|
|
currentAirVolumeFlow Unsigned32,
|
|
outsideMoistureCmForFreeCooling Unsigned32,
|
|
outsideMoistureCisForFreeCooling Unsigned32,
|
|
outsideMoistureCtentCurrentValue Unsigned32,
|
|
bMSStop2 Unsigned32,
|
|
condensationPressureDynamic1 Unsigned32,
|
|
condensationPressureDynamic2 Unsigned32,
|
|
condensationPresmic1SetpointEp1 Unsigned32,
|
|
condensationPresmic1SetpointCp1 Unsigned32,
|
|
condensationPresmic1SetpointEp2 Unsigned32,
|
|
condensationPresmic1SetpointCp2 Unsigned32,
|
|
condensationPresmic2SetpointEp1 Unsigned32,
|
|
condensationPresmic2SetpointCp1 Unsigned32,
|
|
condensationPresmic2SetpointEp2 Unsigned32,
|
|
condensationPresmic2SetpointCp2 Unsigned32
|
|
}
|
|
|
|
setpointRoomPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"setpoint room pressure"
|
|
::= { infoValuesControlEntry 1271 }
|
|
|
|
currentRoomPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"current room pressure"
|
|
::= { infoValuesControlEntry 1272 }
|
|
|
|
limitedControlMinimumTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limited control: minimum temperature"
|
|
::= { infoValuesControlEntry 1273 }
|
|
|
|
limitedControlMaximumTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limited control: maximum temperature"
|
|
::= { infoValuesControlEntry 1274 }
|
|
|
|
currentAirVolumeFlow OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"current air volume flow"
|
|
::= { infoValuesControlEntry 1275 }
|
|
|
|
outsideMoistureCmForFreeCooling OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..255)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"outside moisture content minimum for free cooling"
|
|
::= { infoValuesControlEntry 1277 }
|
|
|
|
outsideMoistureCisForFreeCooling OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"outside moisture content hysteresis for free cooling"
|
|
::= { infoValuesControlEntry 1278 }
|
|
|
|
outsideMoistureCtentCurrentValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"outside moisture content current value"
|
|
::= { infoValuesControlEntry 1279 }
|
|
|
|
bMSStop2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"BMS stop 2"
|
|
::= { infoValuesControlEntry 1783 }
|
|
|
|
condensationPressureDynamic1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"condensation pressure dynamic 1"
|
|
::= { infoValuesControlEntry 1784 }
|
|
|
|
condensationPressureDynamic2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"condensation pressure dynamic 2"
|
|
::= { infoValuesControlEntry 1785 }
|
|
|
|
condensationPresmic1SetpointEp1 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Condensation pressure dynamic 1 setpoint ep1"
|
|
::= { infoValuesControlEntry 1791 }
|
|
|
|
condensationPresmic1SetpointCp1 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Condensation pressure dynamic 1 setpoint cp1"
|
|
::= { infoValuesControlEntry 1792 }
|
|
|
|
condensationPresmic1SetpointEp2 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Condensation pressure dynamic 1 setpoint ep2"
|
|
::= { infoValuesControlEntry 1793 }
|
|
|
|
condensationPresmic1SetpointCp2 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Condensation pressure dynamic 1 setpoint cp2"
|
|
::= { infoValuesControlEntry 1794 }
|
|
|
|
condensationPresmic2SetpointEp1 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Condensation pressure dynamic 2 setpoint ep1"
|
|
::= { infoValuesControlEntry 1795 }
|
|
|
|
condensationPresmic2SetpointCp1 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Condensation pressure dynamic 2 setpoint cp1"
|
|
::= { infoValuesControlEntry 1796 }
|
|
|
|
condensationPresmic2SetpointEp2 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Condensation pressure dynamic 2 setpoint ep2"
|
|
::= { infoValuesControlEntry 1797 }
|
|
|
|
condensationPresmic2SetpointCp2 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Condensation pressure dynamic 2 setpoint cp2"
|
|
::= { infoValuesControlEntry 1798 }
|
|
|
|
infoValAirTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoValAirEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoValAir"
|
|
::= { infoValAir 4 }
|
|
|
|
infoValAirEntry OBJECT-TYPE
|
|
SYNTAX InfoValAirEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoValAir"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoValAirTable 1 }
|
|
|
|
InfoValAirEntry ::= SEQUENCE {
|
|
setpointAirDewpoint Integer32,
|
|
airDewpoint Integer32,
|
|
returnAirDewpoint Integer32,
|
|
supplyAirDewpoint Integer32,
|
|
outsideAirDewpoint Integer32
|
|
}
|
|
|
|
setpointAirDewpoint OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"setpoint air dewpoint"
|
|
::= { infoValAirEntry 1262 }
|
|
|
|
airDewpoint OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"air dewpoint"
|
|
::= { infoValAirEntry 1263 }
|
|
|
|
returnAirDewpoint OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"return air dewpoint"
|
|
::= { infoValAirEntry 1264 }
|
|
|
|
supplyAirDewpoint OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply air dewpoint"
|
|
::= { infoValAirEntry 1265 }
|
|
|
|
outsideAirDewpoint OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"outside air dewpoint"
|
|
::= { infoValAirEntry 1266 }
|
|
|
|
infoValTemperatureTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoValTemperatureEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoValTemperature"
|
|
::= { infoValTemperature 1 }
|
|
|
|
infoValTemperatureEntry OBJECT-TYPE
|
|
SYNTAX InfoValTemperatureEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoValTemperature"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoValTemperatureTable 1 }
|
|
|
|
InfoValTemperatureEntry ::= SEQUENCE {
|
|
unitAirTemperature Integer32,
|
|
unitEmergencyTemperature Integer32,
|
|
unitSetpointAirTratureCorrected Integer32,
|
|
unitReturnAirTemperature Integer32,
|
|
unitSupplyAirTemperature Integer32,
|
|
unitOutsideAirTemperature Integer32,
|
|
unitOutsideAirHumidity Unsigned32,
|
|
unitSupplyAirTemperature3 Integer32,
|
|
unitReturnAirTemperature2 Integer32,
|
|
unitReturnAirTemperature3 Integer32,
|
|
unitReturnAirTemrnAirTemperature Integer32,
|
|
unitSupplyAirTemlyAirTemperature Integer32,
|
|
unitSupplyAirTemperature2 Integer32,
|
|
condensorTemperature Integer32,
|
|
supplyTemperature1 Integer32,
|
|
supplyTemperature2 Integer32,
|
|
fCBRoomAirTemperature Integer32,
|
|
supplyAirTemperatureComfortUnit1 Integer32,
|
|
supplyAirTemperatureComfortUnit2 Integer32,
|
|
fCBOutsideAirTemperature Integer32
|
|
}
|
|
|
|
unitAirTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit air temperature"
|
|
::= { infoValTemperatureEntry 1170 }
|
|
|
|
unitEmergencyTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit emergency temperature"
|
|
::= { infoValTemperatureEntry 1172 }
|
|
|
|
unitSetpointAirTratureCorrected OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit setpoint air temperature corrected"
|
|
::= { infoValTemperatureEntry 1175 }
|
|
|
|
unitReturnAirTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit return air temperature"
|
|
::= { infoValTemperatureEntry 1192 }
|
|
|
|
unitSupplyAirTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit supply air temperature"
|
|
::= { infoValTemperatureEntry 1193 }
|
|
|
|
unitOutsideAirTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit outside air temperature"
|
|
::= { infoValTemperatureEntry 1196 }
|
|
|
|
unitOutsideAirHumidity OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit outside air humidity"
|
|
::= { infoValTemperatureEntry 1197 }
|
|
|
|
unitSupplyAirTemperature3 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit supply air temperature 3"
|
|
::= { infoValTemperatureEntry 1243 }
|
|
|
|
unitReturnAirTemperature2 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit return air temperature 2"
|
|
::= { infoValTemperatureEntry 1244 }
|
|
|
|
unitReturnAirTemperature3 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit return air temperature 3"
|
|
::= { infoValTemperatureEntry 1245 }
|
|
|
|
unitReturnAirTemrnAirTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit return air temperature 1 (different from unit return air temperature)"
|
|
::= { infoValTemperatureEntry 1246 }
|
|
|
|
unitSupplyAirTemlyAirTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit supply air temperature 1 (different from unit supply air temperature)"
|
|
::= { infoValTemperatureEntry 1247 }
|
|
|
|
unitSupplyAirTemperature2 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit supply air temperature 2"
|
|
::= { infoValTemperatureEntry 1248 }
|
|
|
|
condensorTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"condensor temperature"
|
|
::= { infoValTemperatureEntry 10210 }
|
|
|
|
supplyTemperature1 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Supply temperature 1"
|
|
::= { infoValTemperatureEntry 10211 }
|
|
|
|
supplyTemperature2 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Supply temperature 2"
|
|
::= { infoValTemperatureEntry 10212 }
|
|
|
|
fCBRoomAirTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000 )
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FCB room air temperature"
|
|
::= { infoValTemperatureEntry 10264 }
|
|
|
|
supplyAirTemperatureComfortUnit1 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000 )
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply air temperature comfort unit 1"
|
|
::= { infoValTemperatureEntry 10266 }
|
|
|
|
supplyAirTemperatureComfortUnit2 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000 )
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply air temperature comfort unit 2"
|
|
::= { infoValTemperatureEntry 10267 }
|
|
|
|
fCBOutsideAirTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000 )
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FCB outside air temperature"
|
|
::= { infoValTemperatureEntry 10268 }
|
|
|
|
infoValHumidityTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoValHumidityEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoValHumidity"
|
|
::= { infoValHumidity 1 }
|
|
|
|
infoValHumidityEntry OBJECT-TYPE
|
|
SYNTAX InfoValHumidityEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoValHumidity"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoValHumidityTable 1 }
|
|
|
|
InfoValHumidityEntry ::= SEQUENCE {
|
|
unitHumidity Unsigned32,
|
|
unitSetpointHumidityCorrected Unsigned32,
|
|
temperatureSetpointShift Integer32,
|
|
unitReturnAirHumidity Unsigned32,
|
|
unitSupplyAirHumidity Unsigned32,
|
|
fCBRoomAirHumidity Integer32,
|
|
fCBOutsideAirHumidity Integer32
|
|
}
|
|
|
|
unitHumidity OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit humidity"
|
|
::= { infoValHumidityEntry 1171 }
|
|
|
|
unitSetpointHumidityCorrected OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit setpoint humidity corrected"
|
|
::= { infoValHumidityEntry 1178 }
|
|
|
|
temperatureSetpointShift OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"temperature setpoint shift"
|
|
::= { infoValHumidityEntry 1179 }
|
|
|
|
unitReturnAirHumidity OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit return air humidity"
|
|
::= { infoValHumidityEntry 1194 }
|
|
|
|
unitSupplyAirHumidity OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit supply air humidity"
|
|
::= { infoValHumidityEntry 1195 }
|
|
|
|
fCBRoomAirHumidity OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FCB room air humidity"
|
|
::= { infoValHumidityEntry 10265 }
|
|
|
|
fCBOutsideAirHumidity OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FCB outside air humidity"
|
|
::= { infoValHumidityEntry 10269 }
|
|
|
|
infoValPressureTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoValPressureEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoValPressure"
|
|
::= { infoValPressure 1 }
|
|
|
|
infoValPressureEntry OBJECT-TYPE
|
|
SYNTAX InfoValPressureEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoValPressure"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoValPressureTable 1 }
|
|
|
|
InfoValPressureEntry ::= SEQUENCE {
|
|
currentRaisedFloorPressure Unsigned32
|
|
}
|
|
|
|
currentRaisedFloorPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"current raised floor pressure"
|
|
::= { infoValPressureEntry 1208 }
|
|
|
|
infoValWaterTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoValWaterEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoValWater"
|
|
::= { infoValWater 1 }
|
|
|
|
infoValWaterEntry OBJECT-TYPE
|
|
SYNTAX InfoValWaterEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoValWater"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoValWaterTable 1 }
|
|
|
|
InfoValWaterEntry ::= SEQUENCE {
|
|
waterInTemperatu1ChillersPrimary Integer32,
|
|
waterInTemperatuhillersSecondary Integer32,
|
|
waterOutTemperatChillersPrimary Integer32,
|
|
waterOutTemperatillersSecondary Integer32,
|
|
unitSetpointWaterPressure Unsigned32,
|
|
unitCurrentWaterPressure Unsigned32,
|
|
waterTemperaturetpointCorrected Integer32,
|
|
waterFlowVolume Unsigned32,
|
|
waterFlowVolumeB Integer32
|
|
}
|
|
|
|
waterInTemperatu1ChillersPrimary OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water in temperature 1 (chillers: primary)"
|
|
::= { infoValWaterEntry 1191 }
|
|
|
|
waterInTemperatuhillersSecondary OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water in temperature 2 (chillers: secondary)"
|
|
::= { infoValWaterEntry 1202 }
|
|
|
|
waterOutTemperatChillersPrimary OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water out temperature 1 (chillers: primary)"
|
|
::= { infoValWaterEntry 1206 }
|
|
|
|
waterOutTemperatillersSecondary OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water out temperature 2 (chillers: secondary)"
|
|
::= { infoValWaterEntry 1207 }
|
|
|
|
unitSetpointWaterPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..60)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit setpoint water pressure"
|
|
::= { infoValWaterEntry 1211 }
|
|
|
|
unitCurrentWaterPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit current water pressure"
|
|
::= { infoValWaterEntry 1212 }
|
|
|
|
waterTemperaturetpointCorrected OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water temperature setpoint corrected"
|
|
::= { infoValWaterEntry 1240 }
|
|
|
|
waterFlowVolume OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water flow volume "
|
|
::= { infoValWaterEntry 1249 }
|
|
|
|
waterFlowVolumeB OBJECT-TYPE
|
|
SYNTAX Integer32 (0..32767)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water flow volume B"
|
|
::= { infoValWaterEntry 1740 }
|
|
|
|
infoValRefrigerantTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoValRefrigerantEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoValRefrigerant"
|
|
::= { infoValRefrigerant 1 }
|
|
|
|
infoValRefrigerantEntry OBJECT-TYPE
|
|
SYNTAX InfoValRefrigerantEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoValRefrigerant"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoValRefrigerantTable 1 }
|
|
|
|
InfoValRefrigerantEntry ::= SEQUENCE {
|
|
unitSuctionGasTemperature1 Integer32,
|
|
unitEvaporationPressure1 Integer32,
|
|
unitHotGasTemperature1 Integer32,
|
|
unitCondensationPressure1 Integer32,
|
|
unitCondensationPressure2 Integer32,
|
|
unitHotGasTemperature2 Integer32,
|
|
unitEvaporationPressure2 Integer32,
|
|
unitSuctionGasTemperature2 Integer32,
|
|
unitSuctionPressure1 Integer32,
|
|
unitSuctionPressure2 Integer32,
|
|
saturatedSuctionGasTemperature1 Integer32,
|
|
saturatedSuctionGasTemperature2 Integer32,
|
|
cyclesFreecoolingK3 Unsigned32,
|
|
cyclesFreecoolingK4 Unsigned32,
|
|
runningHoursFliter Unsigned32,
|
|
runningHoursController Unsigned32,
|
|
runningHoursAirco1 Unsigned32,
|
|
runningHoursAirco2 Unsigned32,
|
|
runningHoursAirco3 Unsigned32
|
|
}
|
|
|
|
unitSuctionGasTemperature1 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit suction gas temperature 1"
|
|
::= { infoValRefrigerantEntry 2232 }
|
|
|
|
unitEvaporationPressure1 OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit evaporation pressure 1"
|
|
::= { infoValRefrigerantEntry 2233 }
|
|
|
|
unitHotGasTemperature1 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit hot gas temperature 1"
|
|
::= { infoValRefrigerantEntry 2234 }
|
|
|
|
unitCondensationPressure1 OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit condensation pressure 1"
|
|
::= { infoValRefrigerantEntry 2235 }
|
|
|
|
unitCondensationPressure2 OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit condensation pressure 2"
|
|
::= { infoValRefrigerantEntry 2250 }
|
|
|
|
unitHotGasTemperature2 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit hot gas temperature 2"
|
|
::= { infoValRefrigerantEntry 2272 }
|
|
|
|
unitEvaporationPressure2 OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit evaporation pressure 2"
|
|
::= { infoValRefrigerantEntry 2273 }
|
|
|
|
unitSuctionGasTemperature2 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit suction gas temperature 2"
|
|
::= { infoValRefrigerantEntry 2274 }
|
|
|
|
unitSuctionPressure1 OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit suction pressure 1"
|
|
::= { infoValRefrigerantEntry 2278 }
|
|
|
|
unitSuctionPressure2 OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit suction pressure 2"
|
|
::= { infoValRefrigerantEntry 2279 }
|
|
|
|
saturatedSuctionGasTemperature1 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"saturated suction gas temperature 1"
|
|
::= { infoValRefrigerantEntry 2281 }
|
|
|
|
saturatedSuctionGasTemperature2 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"saturated suction gas temperature 2"
|
|
::= { infoValRefrigerantEntry 2282 }
|
|
|
|
cyclesFreecoolingK3 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..99999)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"cycles freecooling K3"
|
|
::= { infoValRefrigerantEntry 10289 }
|
|
|
|
cyclesFreecoolingK4 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..99999)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"cycles freecooling K4"
|
|
::= { infoValRefrigerantEntry 10290 }
|
|
|
|
runningHoursFliter OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..99999)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"running hours fliter"
|
|
::= { infoValRefrigerantEntry 10291 }
|
|
|
|
runningHoursController OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..99999)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"running hours controller"
|
|
::= { infoValRefrigerantEntry 10292 }
|
|
|
|
runningHoursAirco1 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..99999)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"running hours airco 1"
|
|
::= { infoValRefrigerantEntry 10293 }
|
|
|
|
runningHoursAirco2 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..99999)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"running hours airco 2"
|
|
::= { infoValRefrigerantEntry 10294 }
|
|
|
|
runningHoursAirco3 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..99999)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"running hours airco 3"
|
|
::= { infoValRefrigerantEntry 10295 }
|
|
|
|
infoValAEcontrolTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoValAEcontrolEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoValAEcontrol"
|
|
::= { infoValAEcontrol 1 }
|
|
|
|
infoValAEcontrolEntry OBJECT-TYPE
|
|
SYNTAX InfoValAEcontrolEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoValAEcontrol"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoValAEcontrolTable 1 }
|
|
|
|
InfoValAEcontrolEntry ::= SEQUENCE {
|
|
operationMode Unsigned32,
|
|
reasonForSummerMode Unsigned32
|
|
}
|
|
|
|
operationMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"operation mode"
|
|
::= { infoValAEcontrolEntry 10315 }
|
|
|
|
reasonForSummerMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..7)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"reason for summer mode"
|
|
::= { infoValAEcontrolEntry 10316 }
|
|
|
|
infoValMiscellaneousTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoValMiscellaneousEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoValMiscellaneous"
|
|
::= { infoValMiscellaneous 1 }
|
|
|
|
infoValMiscellaneousEntry OBJECT-TYPE
|
|
SYNTAX InfoValMiscellaneousEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoValMiscellaneous"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoValMiscellaneousTable 1 }
|
|
|
|
InfoValMiscellaneousEntry ::= SEQUENCE {
|
|
universalTemperature1 Integer32,
|
|
electricEnergy Unsigned32,
|
|
effectiveElectricPower Integer32,
|
|
unitSetpointCondPressureDynamic1 Integer32,
|
|
unitSetpointCondPressureDynamic2 Integer32,
|
|
electricCabinetTemp Integer32,
|
|
intermediateTempMixTemp Integer32,
|
|
apparentElectricPower Integer32,
|
|
apparentElectricwerExternalLimit Integer32,
|
|
eER Integer32,
|
|
coolingPower Integer32,
|
|
coldWaterRequest Unsigned32,
|
|
freezeCirculationRunning Unsigned32,
|
|
fans Unsigned32,
|
|
freecoolingPower Integer32
|
|
}
|
|
|
|
universalTemperature1 OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"universal temperature 1"
|
|
::= { infoValMiscellaneousEntry 1210 }
|
|
|
|
electricEnergy OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"electric energy"
|
|
::= { infoValMiscellaneousEntry 1267 }
|
|
|
|
effectiveElectricPower OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"effective electric power"
|
|
::= { infoValMiscellaneousEntry 1269 }
|
|
|
|
unitSetpointCondPressureDynamic1 OBJECT-TYPE
|
|
SYNTAX Integer32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit setpoint condensation pressure dynamic 1"
|
|
::= { infoValMiscellaneousEntry 1280 }
|
|
|
|
unitSetpointCondPressureDynamic2 OBJECT-TYPE
|
|
SYNTAX Integer32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit setpoint condensation pressure dynamic 2"
|
|
::= { infoValMiscellaneousEntry 1281 }
|
|
|
|
electricCabinetTemp OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"electric cabinet temp."
|
|
::= { infoValMiscellaneousEntry 1283 }
|
|
|
|
intermediateTempMixTemp OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"intermediate temp. (mix temp.)"
|
|
::= { infoValMiscellaneousEntry 1284 }
|
|
|
|
apparentElectricPower OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"(apparent) electric power"
|
|
::= { infoValMiscellaneousEntry 1737 }
|
|
|
|
apparentElectricwerExternalLimit OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"(apparent) electric power, external limit"
|
|
::= { infoValMiscellaneousEntry 1738 }
|
|
|
|
eER OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"EER"
|
|
::= { infoValMiscellaneousEntry 1739 }
|
|
|
|
coolingPower OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"cooling power"
|
|
::= { infoValMiscellaneousEntry 1741 }
|
|
|
|
coldWaterRequest OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cold water request"
|
|
::= { infoValMiscellaneousEntry 1778 }
|
|
|
|
freezeCirculationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freeze circulation running"
|
|
::= { infoValMiscellaneousEntry 1780 }
|
|
|
|
fans OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fans"
|
|
::= { infoValMiscellaneousEntry 1782 }
|
|
|
|
freecoolingPower OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling power"
|
|
::= { infoValMiscellaneousEntry 1886 }
|
|
|
|
infoModulefunctionsComponenTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoModulefunctionsComponenEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoModulefunctionsComponents"
|
|
::= { infoModulefunctionsComponents 6 }
|
|
|
|
infoModulefunctionsComponenEntry OBJECT-TYPE
|
|
SYNTAX InfoModulefunctionsComponenEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoModulefunctionsComponents"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoModulefunctionsComponenTable 1 }
|
|
|
|
InfoModulefunctionsComponenEntry ::= SEQUENCE {
|
|
numberOfExtAlarmIn Unsigned32
|
|
}
|
|
|
|
numberOfExtAlarmIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of ext alarm in"
|
|
::= { infoModulefunctionsComponenEntry 1770 }
|
|
|
|
infoCoolingTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoCoolingEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoCooling"
|
|
::= { infoCooling 9 }
|
|
|
|
infoCoolingEntry OBJECT-TYPE
|
|
SYNTAX InfoCoolingEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoCooling"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoCoolingTable 1 }
|
|
|
|
InfoCoolingEntry ::= SEQUENCE {
|
|
coolingMode Unsigned32
|
|
}
|
|
|
|
coolingMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..6)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"cooling mode"
|
|
::= { infoCoolingEntry 1787 }
|
|
|
|
infoCompressorTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoCompressorEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoCompressor"
|
|
::= { infoCompressor 1 }
|
|
|
|
infoCompressorEntry OBJECT-TYPE
|
|
SYNTAX InfoCompressorEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoCompressor"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoCompressorTable 1 }
|
|
|
|
InfoCompressorEntry ::= SEQUENCE {
|
|
compressorCabinetTemp Integer32,
|
|
numberOfCompressors Unsigned32,
|
|
compr1Running Unsigned32,
|
|
compr2Running Unsigned32,
|
|
compr3Running Unsigned32,
|
|
compr4Running Unsigned32,
|
|
compr5Running Unsigned32,
|
|
compr6Running Unsigned32,
|
|
speedRequestToInverter Unsigned32
|
|
}
|
|
|
|
compressorCabinetTemp OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor cabinet temp."
|
|
::= { infoCompressorEntry 1282 }
|
|
|
|
numberOfCompressors OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of compressors"
|
|
::= { infoCompressorEntry 1761 }
|
|
|
|
compr1Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 running"
|
|
::= { infoCompressorEntry 4403 }
|
|
|
|
compr2Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 running"
|
|
::= { infoCompressorEntry 4503 }
|
|
|
|
compr3Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 3 running"
|
|
::= { infoCompressorEntry 9503 }
|
|
|
|
compr4Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 4 running"
|
|
::= { infoCompressorEntry 9603 }
|
|
|
|
compr5Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 5 running"
|
|
::= { infoCompressorEntry 9703 }
|
|
|
|
compr6Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 6 running"
|
|
::= { infoCompressorEntry 9803 }
|
|
|
|
speedRequestToInverter OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"speed request to inverter"
|
|
::= { infoCompressorEntry 11526 }
|
|
|
|
infoValvesTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoValvesEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoValves"
|
|
::= { infoValves 5 }
|
|
|
|
infoValvesEntry OBJECT-TYPE
|
|
SYNTAX InfoValvesEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoValves"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoValvesTable 1 }
|
|
|
|
InfoValvesEntry ::= SEQUENCE {
|
|
numberOfEEVs Unsigned32,
|
|
numberOfHotgasBypass Unsigned32,
|
|
numberGValves Unsigned32,
|
|
numberOfCondenserFans Unsigned32,
|
|
numberOfAELouvers Unsigned32,
|
|
unitFreecoolingValve Unsigned32,
|
|
gValve1OpeningGrade Unsigned32,
|
|
gValve2OpeningGrade Unsigned32,
|
|
freecoolingPossible Unsigned32
|
|
}
|
|
|
|
numberOfEEVs OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of EEVs"
|
|
::= { infoValvesEntry 1776 }
|
|
|
|
numberOfHotgasBypass OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of hotgas bypass"
|
|
::= { infoValvesEntry 1786 }
|
|
|
|
numberGValves OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number g valves"
|
|
::= { infoValvesEntry 1788 }
|
|
|
|
numberOfCondenserFans OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of condenser fans"
|
|
::= { infoValvesEntry 1789 }
|
|
|
|
numberOfAELouvers OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of AE louvers"
|
|
::= { infoValvesEntry 1790 }
|
|
|
|
unitFreecoolingValve OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit freecooling-valve"
|
|
::= { infoValvesEntry 2238 }
|
|
|
|
gValve1OpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 opening grade"
|
|
::= { infoValvesEntry 5312 }
|
|
|
|
gValve2OpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 opening grade"
|
|
::= { infoValvesEntry 5362 }
|
|
|
|
freecoolingPossible OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling possible"
|
|
::= { infoValvesEntry 10101 }
|
|
|
|
infoSuctionvalvesTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoSuctionvalvesEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoSuctionvalves"
|
|
::= { infoSuctionvalves 1 }
|
|
|
|
infoSuctionvalvesEntry OBJECT-TYPE
|
|
SYNTAX InfoSuctionvalvesEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoSuctionvalves"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoSuctionvalvesTable 1 }
|
|
|
|
InfoSuctionvalvesEntry ::= SEQUENCE {
|
|
numberOfSuctionValve Unsigned32,
|
|
suctionvalve1CurrentValue Unsigned32,
|
|
suctionvalve2CurrentValue Unsigned32
|
|
}
|
|
|
|
numberOfSuctionValve OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of suction valve"
|
|
::= { infoSuctionvalvesEntry 1762 }
|
|
|
|
suctionvalve1CurrentValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve1 current value"
|
|
::= { infoSuctionvalvesEntry 4611 }
|
|
|
|
suctionvalve2CurrentValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve2 current value"
|
|
::= { infoSuctionvalvesEntry 4711 }
|
|
|
|
infoGECWValvesTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoGECWValvesEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoGECWValves"
|
|
::= { infoGECWValves 1 }
|
|
|
|
infoGECWValvesEntry OBJECT-TYPE
|
|
SYNTAX InfoGECWValvesEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoGECWValves"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoGECWValvesTable 1 }
|
|
|
|
InfoGECWValvesEntry ::= SEQUENCE {
|
|
numberOfGeCwValves Unsigned32,
|
|
gECWValveOpen Unsigned32,
|
|
gECWValveOpeningGrade1 Unsigned32,
|
|
gECWValveOpeningGrade2 Unsigned32,
|
|
gECWValveChillerSaverSignal Unsigned32
|
|
}
|
|
|
|
numberOfGeCwValves OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of ge/cw valves"
|
|
::= { infoGECWValvesEntry 1771 }
|
|
|
|
gECWValveOpen OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve open"
|
|
::= { infoGECWValvesEntry 5207 }
|
|
|
|
gECWValveOpeningGrade1 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve opening grade 1"
|
|
::= { infoGECWValvesEntry 5214 }
|
|
|
|
gECWValveOpeningGrade2 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve opening grade 2"
|
|
::= { infoGECWValvesEntry 5224 }
|
|
|
|
gECWValveChillerSaverSignal OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve ChillerSaver signal"
|
|
::= { infoGECWValvesEntry 5242 }
|
|
|
|
infoHGBPsTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoHGBPsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoHGBPs"
|
|
::= { infoHGBPs 1 }
|
|
|
|
infoHGBPsEntry OBJECT-TYPE
|
|
SYNTAX InfoHGBPsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoHGBPs"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoHGBPsTable 1 }
|
|
|
|
InfoHGBPsEntry ::= SEQUENCE {
|
|
hgbp1OpeningGrade Unsigned32,
|
|
hgbp2OpeningGrade Unsigned32
|
|
}
|
|
|
|
hgbp1OpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp1 opening grade"
|
|
::= { infoHGBPsEntry 9318 }
|
|
|
|
hgbp2OpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp2 opening grade"
|
|
::= { infoHGBPsEntry 9418 }
|
|
|
|
infoEEV1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoEEV1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoEEV1"
|
|
::= { infoEEV1 1 }
|
|
|
|
infoEEV1Entry OBJECT-TYPE
|
|
SYNTAX InfoEEV1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoEEV1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoEEV1Table 1 }
|
|
|
|
InfoEEV1Entry ::= SEQUENCE {
|
|
eev1CurrentSuperheatSetpoint Integer32,
|
|
eev1SuctionPressureAlcoVCM Integer32,
|
|
eev1SaturationTemperatureAlcoVCM Integer32,
|
|
eev1CoilOutTemperatureAlcoVCM Integer32,
|
|
eev1Superheat Integer32,
|
|
eev1ValveOpening Unsigned32
|
|
}
|
|
|
|
eev1CurrentSuperheatSetpoint OBJECT-TYPE
|
|
SYNTAX Integer32 (-400..1800)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 current superheat setpoint"
|
|
::= { infoEEV1Entry 8726 }
|
|
|
|
eev1SuctionPressureAlcoVCM OBJECT-TYPE
|
|
SYNTAX Integer32 (-7..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 suction pressure (Alco VCM)"
|
|
::= { infoEEV1Entry 8727 }
|
|
|
|
eev1SaturationTemperatureAlcoVCM OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 saturation temperature (Alco VCM)"
|
|
::= { infoEEV1Entry 8728 }
|
|
|
|
eev1CoilOutTemperatureAlcoVCM OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 coil out temperature (Alco VCM)"
|
|
::= { infoEEV1Entry 8729 }
|
|
|
|
eev1Superheat OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..1800)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 superheat"
|
|
::= { infoEEV1Entry 8730 }
|
|
|
|
eev1ValveOpening OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 valve opening"
|
|
::= { infoEEV1Entry 8731 }
|
|
|
|
infoEEV2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoEEV2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoEEV2"
|
|
::= { infoEEV2 1 }
|
|
|
|
infoEEV2Entry OBJECT-TYPE
|
|
SYNTAX InfoEEV2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoEEV2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoEEV2Table 1 }
|
|
|
|
InfoEEV2Entry ::= SEQUENCE {
|
|
eev2CurrentSuperheatSetpoint Integer32,
|
|
eev2SuctionPressure Integer32,
|
|
eev2SaturationTemperature Integer32,
|
|
eev2CoilOutTemperature Integer32,
|
|
eev2Superheat Integer32,
|
|
eev2ValveOpening Unsigned32
|
|
}
|
|
|
|
eev2CurrentSuperheatSetpoint OBJECT-TYPE
|
|
SYNTAX Integer32 (-400..1800)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 current superheat setpoint"
|
|
::= { infoEEV2Entry 8826 }
|
|
|
|
eev2SuctionPressure OBJECT-TYPE
|
|
SYNTAX Integer32 (-7..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 suction pressure"
|
|
::= { infoEEV2Entry 8827 }
|
|
|
|
eev2SaturationTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 saturation temperature"
|
|
::= { infoEEV2Entry 8828 }
|
|
|
|
eev2CoilOutTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 coil out temperature"
|
|
::= { infoEEV2Entry 8829 }
|
|
|
|
eev2Superheat OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..1800)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 superheat"
|
|
::= { infoEEV2Entry 8830 }
|
|
|
|
eev2ValveOpening OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 valve opening"
|
|
::= { infoEEV2Entry 8831 }
|
|
|
|
infoDrycoolerTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoDrycoolerEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoDrycooler"
|
|
::= { infoDrycooler 1 }
|
|
|
|
infoDrycoolerEntry OBJECT-TYPE
|
|
SYNTAX InfoDrycoolerEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoDrycooler"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoDrycoolerTable 1 }
|
|
|
|
InfoDrycoolerEntry ::= SEQUENCE {
|
|
numberOfDrycoolers Unsigned32,
|
|
drycooler1Running Unsigned32,
|
|
drycooler1Speed Unsigned32,
|
|
drycooler2Running Unsigned32,
|
|
drycooler3Running Unsigned32,
|
|
drycooler4Running Unsigned32
|
|
}
|
|
|
|
numberOfDrycoolers OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of drycoolers"
|
|
::= { infoDrycoolerEntry 1763 }
|
|
|
|
drycooler1Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 running"
|
|
::= { infoDrycoolerEntry 5402 }
|
|
|
|
drycooler1Speed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 speed"
|
|
::= { infoDrycoolerEntry 5416 }
|
|
|
|
drycooler2Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler2 running"
|
|
::= { infoDrycoolerEntry 5502 }
|
|
|
|
drycooler3Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler3 running"
|
|
::= { infoDrycoolerEntry 5602 }
|
|
|
|
drycooler4Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler4 running"
|
|
::= { infoDrycoolerEntry 5702 }
|
|
|
|
infoPumpsTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoPumpsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoPumps"
|
|
::= { infoPumps 1 }
|
|
|
|
infoPumpsEntry OBJECT-TYPE
|
|
SYNTAX InfoPumpsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoPumps"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoPumpsTable 1 }
|
|
|
|
InfoPumpsEntry ::= SEQUENCE {
|
|
numberOfPumps Unsigned32,
|
|
pump1Running Unsigned32,
|
|
pump1Speed Unsigned32,
|
|
pump2Running Unsigned32,
|
|
pump2Speed Unsigned32,
|
|
pump3Running Unsigned32,
|
|
pump3Speed Unsigned32,
|
|
pump4Running Unsigned32,
|
|
pump4Speed Unsigned32
|
|
}
|
|
|
|
numberOfPumps OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of pumps"
|
|
::= { infoPumpsEntry 1764 }
|
|
|
|
pump1Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 running"
|
|
::= { infoPumpsEntry 5802 }
|
|
|
|
pump1Speed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 speed"
|
|
::= { infoPumpsEntry 5821 }
|
|
|
|
pump2Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 running"
|
|
::= { infoPumpsEntry 5902 }
|
|
|
|
pump2Speed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 speed"
|
|
::= { infoPumpsEntry 5921 }
|
|
|
|
pump3Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 running"
|
|
::= { infoPumpsEntry 6002 }
|
|
|
|
pump3Speed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 speed"
|
|
::= { infoPumpsEntry 6021 }
|
|
|
|
pump4Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 running"
|
|
::= { infoPumpsEntry 6102 }
|
|
|
|
pump4Speed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 speed"
|
|
::= { infoPumpsEntry 6121 }
|
|
|
|
infoLouverTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoLouver"
|
|
::= { infoLouver 1 }
|
|
|
|
infoLouverEntry OBJECT-TYPE
|
|
SYNTAX InfoLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoLouver"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoLouverTable 1 }
|
|
|
|
InfoLouverEntry ::= SEQUENCE {
|
|
eCOLouverOpeningGrade Unsigned32,
|
|
freshAirLouverOpeningGrade Unsigned32,
|
|
antiFreezeLouverOpeningGrade Unsigned32,
|
|
circulationLouverOpeningGrade Unsigned32,
|
|
exitLouverOpeningState Unsigned32,
|
|
exitLouverOpeningGrade Unsigned32
|
|
}
|
|
|
|
eCOLouverOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO louver opening grade"
|
|
::= { infoLouverEntry 9913 }
|
|
|
|
freshAirLouverOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Fresh air louver opening grade"
|
|
::= { infoLouverEntry 10408 }
|
|
|
|
antiFreezeLouverOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Anti-freeze louver opening grade"
|
|
::= { infoLouverEntry 10508 }
|
|
|
|
circulationLouverOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Circulation louver opening grade"
|
|
::= { infoLouverEntry 10608 }
|
|
|
|
exitLouverOpeningState OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Exit louver opening state"
|
|
::= { infoLouverEntry 10702 }
|
|
|
|
exitLouverOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Exit louver opening grade"
|
|
::= { infoLouverEntry 10709 }
|
|
|
|
infoCondesorfanTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoCondesorfanEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoCondesorfan"
|
|
::= { infoCondesorfan 1 }
|
|
|
|
infoCondesorfanEntry OBJECT-TYPE
|
|
SYNTAX InfoCondesorfanEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoCondesorfan"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoCondesorfanTable 1 }
|
|
|
|
InfoCondesorfanEntry ::= SEQUENCE {
|
|
condFan1Running Unsigned32,
|
|
condFan1ActualSpeed Unsigned32,
|
|
condFan2Running Unsigned32,
|
|
condFan2ActualSpeed Unsigned32
|
|
}
|
|
|
|
condFan1Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 running"
|
|
::= { infoCondesorfanEntry 10802 }
|
|
|
|
condFan1ActualSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 actual speed"
|
|
::= { infoCondesorfanEntry 10808 }
|
|
|
|
condFan2Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 running"
|
|
::= { infoCondesorfanEntry 10902 }
|
|
|
|
condFan2ActualSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 actual speed"
|
|
::= { infoCondesorfanEntry 10908 }
|
|
|
|
infoIccTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoIccEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoIcc"
|
|
::= { infoIcc 1 }
|
|
|
|
infoIccEntry OBJECT-TYPE
|
|
SYNTAX InfoIccEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoIcc"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoIccTable 1 }
|
|
|
|
InfoIccEntry ::= SEQUENCE {
|
|
availability Unsigned32,
|
|
envelopeWorkingZone Unsigned32,
|
|
suctionGasTemperature Integer32,
|
|
dischargeGasTemperature Integer32,
|
|
dischargeGasPressure Unsigned32,
|
|
suctionGasPressure Unsigned32,
|
|
superheatEeValve Integer32,
|
|
compressorRotorSpeedRps Unsigned32,
|
|
compressorRotorSpeedPercent Unsigned32,
|
|
compressorPowerRequest Unsigned32,
|
|
inverterErrorCode Unsigned32,
|
|
eeValvePosition Unsigned32,
|
|
runtimeCompressor Unsigned32,
|
|
iccTempHystereseRefIccStartTemp Integer32,
|
|
compressorMinimuIfTempTooLowTime Unsigned32,
|
|
compressorMinimufTempTooLowTime Unsigned32,
|
|
alarmpriorityLowPressure Unsigned32
|
|
}
|
|
|
|
availability OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"availability"
|
|
::= { infoIccEntry 11519 }
|
|
|
|
envelopeWorkingZone OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..9)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"envelope working zone"
|
|
::= { infoIccEntry 11520 }
|
|
|
|
suctionGasTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..900)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suction gas temperature"
|
|
::= { infoIccEntry 11521 }
|
|
|
|
dischargeGasTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1699)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"discharge gas temperature"
|
|
::= { infoIccEntry 11522 }
|
|
|
|
dischargeGasPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..999)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"discharge gas pressure"
|
|
::= { infoIccEntry 11523 }
|
|
|
|
suctionGasPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..999)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suction gas pressure"
|
|
::= { infoIccEntry 11524 }
|
|
|
|
superheatEeValve OBJECT-TYPE
|
|
SYNTAX Integer32 (0..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"superheat ee valve"
|
|
::= { infoIccEntry 11525 }
|
|
|
|
compressorRotorSpeedRps OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..9999)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor rotor speed rps"
|
|
::= { infoIccEntry 11527 }
|
|
|
|
compressorRotorSpeedPercent OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor rotor speed percent"
|
|
::= { infoIccEntry 11528 }
|
|
|
|
compressorPowerRequest OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor power request"
|
|
::= { infoIccEntry 11529 }
|
|
|
|
inverterErrorCode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..19)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"inverter error code"
|
|
::= { infoIccEntry 11530 }
|
|
|
|
eeValvePosition OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ee valve position"
|
|
::= { infoIccEntry 11531 }
|
|
|
|
runtimeCompressor OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"runtime compressor"
|
|
::= { infoIccEntry 11532 }
|
|
|
|
iccTempHystereseRefIccStartTemp OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"icc temp hysterese (ref. icc start temp)"
|
|
::= { infoIccEntry 11533 }
|
|
|
|
compressorMinimuIfTempTooLowTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor minimum rps after startup if temp too low time"
|
|
::= { infoIccEntry 11534 }
|
|
|
|
compressorMinimufTempTooLowTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor minimum rps after dehumi if temp too low time"
|
|
::= { infoIccEntry 11535 }
|
|
|
|
alarmpriorityLowPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"alarmpriority low pressure"
|
|
::= { infoIccEntry 11536 }
|
|
|
|
infoMovableCoilTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoMovableCoilEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoMovableCoil"
|
|
::= { infoMovableCoil 1 }
|
|
|
|
infoMovableCoilEntry OBJECT-TYPE
|
|
SYNTAX InfoMovableCoilEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoMovableCoil"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoMovableCoilTable 1 }
|
|
|
|
InfoMovableCoilEntry ::= SEQUENCE {
|
|
moveableCoilEnabled Unsigned32,
|
|
moveableCoilDirection Unsigned32,
|
|
moveableCoilPositionMotor1 Unsigned32,
|
|
moveableCoilPositionMotor2 Unsigned32
|
|
}
|
|
|
|
moveableCoilEnabled OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil enabled"
|
|
::= { infoMovableCoilEntry 10001 }
|
|
|
|
moveableCoilDirection OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil direction"
|
|
::= { infoMovableCoilEntry 10002 }
|
|
|
|
moveableCoilPositionMotor1 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil position motor 1"
|
|
::= { infoMovableCoilEntry 10008 }
|
|
|
|
moveableCoilPositionMotor2 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil position motor 2"
|
|
::= { infoMovableCoilEntry 10009 }
|
|
|
|
infoHeatingTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoHeatingEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoHeating"
|
|
::= { infoHeating 2 }
|
|
|
|
infoHeatingEntry OBJECT-TYPE
|
|
SYNTAX InfoHeatingEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoHeating"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoHeatingTable 1 }
|
|
|
|
InfoHeatingEntry ::= SEQUENCE {
|
|
hotgasHeatingRunning Unsigned32,
|
|
pWWHeatingRunning Unsigned32,
|
|
pWWHeatingCurrentValue Unsigned32
|
|
}
|
|
|
|
hotgasHeatingRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hotgas-heating running"
|
|
::= { infoHeatingEntry 6202 }
|
|
|
|
pWWHeatingRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PWW-heating running"
|
|
::= { infoHeatingEntry 6302 }
|
|
|
|
pWWHeatingCurrentValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PWW-heating current value"
|
|
::= { infoHeatingEntry 6315 }
|
|
|
|
infoEHeatingTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoEHeatingEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoEHeating"
|
|
::= { infoEHeating 1 }
|
|
|
|
infoEHeatingEntry OBJECT-TYPE
|
|
SYNTAX InfoEHeatingEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoEHeating"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoEHeatingTable 1 }
|
|
|
|
InfoEHeatingEntry ::= SEQUENCE {
|
|
numberOfEHeatings Unsigned32,
|
|
elecHeating1Running Unsigned32,
|
|
elecHeating1PWMGrade Unsigned32,
|
|
elecHeating2Running Unsigned32,
|
|
elecHeating3Running Unsigned32,
|
|
elecHeating4Running Unsigned32
|
|
}
|
|
|
|
numberOfEHeatings OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of e-heatings"
|
|
::= { infoEHeatingEntry 1765 }
|
|
|
|
elecHeating1Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 running"
|
|
::= { infoEHeatingEntry 4803 }
|
|
|
|
elecHeating1PWMGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 PWM-grade"
|
|
::= { infoEHeatingEntry 4817 }
|
|
|
|
elecHeating2Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 running"
|
|
::= { infoEHeatingEntry 4903 }
|
|
|
|
elecHeating3Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 running"
|
|
::= { infoEHeatingEntry 5003 }
|
|
|
|
elecHeating4Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 running"
|
|
::= { infoEHeatingEntry 5103 }
|
|
|
|
infoHumidityTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoHumidityEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoHumidity"
|
|
::= { infoHumidity 1 }
|
|
|
|
infoHumidityEntry OBJECT-TYPE
|
|
SYNTAX InfoHumidityEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoHumidity"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoHumidityTable 1 }
|
|
|
|
InfoHumidityEntry ::= SEQUENCE {
|
|
humidifier1Running Unsigned32,
|
|
humidifier1CurrentValue Unsigned32,
|
|
humidifier2Running Unsigned32,
|
|
humidifier2CurrentValue Unsigned32,
|
|
humidifier3Running Unsigned32,
|
|
humidifier3CurrentValue Unsigned32,
|
|
dehumidificationRunning Unsigned32,
|
|
dehumidificationValveValue Unsigned32,
|
|
dehumidificationtgasbypassValue Unsigned32
|
|
}
|
|
|
|
humidifier1Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 running"
|
|
::= { infoHumidityEntry 6402 }
|
|
|
|
humidifier1CurrentValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 current value"
|
|
::= { infoHumidityEntry 6427 }
|
|
|
|
humidifier2Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 running"
|
|
::= { infoHumidityEntry 6502 }
|
|
|
|
humidifier2CurrentValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 current value"
|
|
::= { infoHumidityEntry 6527 }
|
|
|
|
humidifier3Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 running"
|
|
::= { infoHumidityEntry 6602 }
|
|
|
|
humidifier3CurrentValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 current value"
|
|
::= { infoHumidityEntry 6627 }
|
|
|
|
dehumidificationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"dehumidification running"
|
|
::= { infoHumidityEntry 6802 }
|
|
|
|
dehumidificationValveValue OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"dehumidification valve value"
|
|
::= { infoHumidityEntry 6806 }
|
|
|
|
dehumidificationtgasbypassValue OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"dehumidification hotgasbypass value"
|
|
::= { infoHumidityEntry 6807 }
|
|
|
|
infoAirTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoAirEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoAir"
|
|
::= { infoAir 1 }
|
|
|
|
infoAirEntry OBJECT-TYPE
|
|
SYNTAX InfoAirEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoAir"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoAirTable 1 }
|
|
|
|
InfoAirEntry ::= SEQUENCE {
|
|
numberOfHumidifiers Unsigned32,
|
|
numberOfFans Unsigned32,
|
|
numberOfLouvers Unsigned32,
|
|
numberOfHotgasReheat Unsigned32,
|
|
numberOfPwwHeatings Unsigned32,
|
|
numberOfDehumidifiers Unsigned32,
|
|
fan1Running Unsigned32,
|
|
fan1Speed Unsigned32,
|
|
fan2ManualOperationActive Unsigned32,
|
|
fan2Running Unsigned32,
|
|
fan2Speed Unsigned32,
|
|
fan3ConfigActive Unsigned32,
|
|
fan3ManualOperationActive Unsigned32,
|
|
fan3Running Unsigned32,
|
|
fan3Speed Unsigned32,
|
|
louver1Open Unsigned32,
|
|
louver2Open Unsigned32,
|
|
louver3Open Unsigned32,
|
|
freecoolingLouverOpeningGrade Unsigned32,
|
|
dCPowerSupplyVoltage Unsigned32,
|
|
fANFCB Unsigned32,
|
|
remoteComfortUnit1 Unsigned32,
|
|
remoteComfortUnit2 Unsigned32,
|
|
lOUVERFCB Unsigned32,
|
|
remoteComfortUnit3 Unsigned32,
|
|
freecoolingLouverK3 Unsigned32,
|
|
freecoolingLouverK4 Unsigned32,
|
|
analogueOutFanACFan Unsigned32,
|
|
analogueOutLouverFCB Unsigned32,
|
|
fCBAnalogueOutHumidifier Unsigned32,
|
|
fanTotalCurrentConsumption Unsigned32,
|
|
fanTotalPowerConsumption Unsigned32,
|
|
userPassword Unsigned32,
|
|
language Unsigned32
|
|
}
|
|
|
|
numberOfHumidifiers OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..3)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of humidifiers"
|
|
::= { infoAirEntry 1766 }
|
|
|
|
numberOfFans OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..3)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of fans"
|
|
::= { infoAirEntry 1767 }
|
|
|
|
numberOfLouvers OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..3)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of louvers"
|
|
::= { infoAirEntry 1768 }
|
|
|
|
numberOfHotgasReheat OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of hotgas reheat"
|
|
::= { infoAirEntry 1772 }
|
|
|
|
numberOfPwwHeatings OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of pww heatings"
|
|
::= { infoAirEntry 1773 }
|
|
|
|
numberOfDehumidifiers OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of dehumidifiers"
|
|
::= { infoAirEntry 1774 }
|
|
|
|
fan1Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 running"
|
|
::= { infoAirEntry 6902 }
|
|
|
|
fan1Speed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 speed"
|
|
::= { infoAirEntry 6932 }
|
|
|
|
fan2ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 manual operation active"
|
|
::= { infoAirEntry 7001 }
|
|
|
|
fan2Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 running"
|
|
::= { infoAirEntry 7002 }
|
|
|
|
fan2Speed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 speed"
|
|
::= { infoAirEntry 7032 }
|
|
|
|
fan3ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 config active"
|
|
::= { infoAirEntry 7100 }
|
|
|
|
fan3ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 manual operation active"
|
|
::= { infoAirEntry 7101 }
|
|
|
|
fan3Running OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 running"
|
|
::= { infoAirEntry 7102 }
|
|
|
|
fan3Speed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 speed"
|
|
::= { infoAirEntry 7132 }
|
|
|
|
louver1Open OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver1 open"
|
|
::= { infoAirEntry 7202 }
|
|
|
|
louver2Open OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver2 open"
|
|
::= { infoAirEntry 7302 }
|
|
|
|
louver3Open OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver3 open"
|
|
::= { infoAirEntry 7402 }
|
|
|
|
freecoolingLouverOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Freecooling louver opening grade"
|
|
::= { infoAirEntry 10213 }
|
|
|
|
dCPowerSupplyVoltage OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DC power supply voltage"
|
|
::= { infoAirEntry 10214 }
|
|
|
|
fANFCB OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FAN FCB"
|
|
::= { infoAirEntry 10216 }
|
|
|
|
remoteComfortUnit1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"remote Comfort Unit 1"
|
|
::= { infoAirEntry 10217 }
|
|
|
|
remoteComfortUnit2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"remote Comfort Unit 2"
|
|
::= { infoAirEntry 10218 }
|
|
|
|
lOUVERFCB OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"LOUVER FCB"
|
|
::= { infoAirEntry 10219 }
|
|
|
|
remoteComfortUnit3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"remote Comfort Unit 3"
|
|
::= { infoAirEntry 10220 }
|
|
|
|
freecoolingLouverK3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling louver K3"
|
|
::= { infoAirEntry 10221 }
|
|
|
|
freecoolingLouverK4 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling louver K4"
|
|
::= { infoAirEntry 10222 }
|
|
|
|
analogueOutFanACFan OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"analogue out fan / AC fan"
|
|
::= { infoAirEntry 10270 }
|
|
|
|
analogueOutLouverFCB OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"analogue out louver FCB"
|
|
::= { infoAirEntry 10271 }
|
|
|
|
fCBAnalogueOutHumidifier OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FCB analogue out humidifier"
|
|
::= { infoAirEntry 10272 }
|
|
|
|
fanTotalCurrentConsumption OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan total current consumption"
|
|
::= { infoAirEntry 10296 }
|
|
|
|
fanTotalPowerConsumption OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan total power consumption"
|
|
::= { infoAirEntry 10297 }
|
|
|
|
userPassword OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..9999)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"user password"
|
|
::= { infoAirEntry 10298 }
|
|
|
|
language OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..6)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"language"
|
|
::= { infoAirEntry 10299 }
|
|
|
|
infoAirAETable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoAirAEEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoAirAE"
|
|
::= { infoAirAE 1 }
|
|
|
|
infoAirAEEntry OBJECT-TYPE
|
|
SYNTAX InfoAirAEEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoAirAE"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoAirAETable 1 }
|
|
|
|
InfoAirAEEntry ::= SEQUENCE {
|
|
filter1CurrentPressureDrop Unsigned32,
|
|
filter2CurrentPressureDrop Unsigned32,
|
|
filter3CurrentPressureDrop Unsigned32
|
|
}
|
|
|
|
filter1CurrentPressureDrop OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 1 current pressure drop"
|
|
::= { infoAirAEEntry 11010 }
|
|
|
|
filter2CurrentPressureDrop OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 2 current pressure drop"
|
|
::= { infoAirAEEntry 11110 }
|
|
|
|
filter3CurrentPressureDrop OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 3 current pressure drop"
|
|
::= { infoAirAEEntry 11210 }
|
|
|
|
infoSensorIORawdataTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoSensorIORawdataEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoSensorIORawdata"
|
|
::= { infoSensorIORawdata 1 }
|
|
|
|
infoSensorIORawdataEntry OBJECT-TYPE
|
|
SYNTAX InfoSensorIORawdataEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoSensorIORawdata"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoSensorIORawdataTable 1 }
|
|
|
|
InfoSensorIORawdataEntry ::= SEQUENCE {
|
|
numberOfSensors Unsigned32,
|
|
dIN1 Unsigned32,
|
|
dIN2 Unsigned32,
|
|
dIN3 Unsigned32,
|
|
dIN4 Unsigned32,
|
|
dIN5 Unsigned32,
|
|
dIN6 Unsigned32,
|
|
dIN7 Unsigned32,
|
|
dIN8 Unsigned32,
|
|
dIN9 Unsigned32,
|
|
dIN10 Unsigned32,
|
|
dIN11 Unsigned32,
|
|
dIN12 Unsigned32,
|
|
dIN13 Unsigned32,
|
|
dIN14 Unsigned32,
|
|
dIN15 Unsigned32,
|
|
dIN16 Unsigned32,
|
|
dIN17 Unsigned32,
|
|
dIN18 Unsigned32,
|
|
dIN19 Unsigned32,
|
|
dIN20 Unsigned32,
|
|
dIN21 Unsigned32,
|
|
dIN22 Unsigned32,
|
|
dIN23 Unsigned32,
|
|
dIN24 Unsigned32,
|
|
dIN25 Unsigned32,
|
|
dIN26 Unsigned32,
|
|
dIN27 Unsigned32,
|
|
dIN28 Unsigned32,
|
|
dIN29 Unsigned32,
|
|
dIN30 Unsigned32,
|
|
dIN31 Unsigned32,
|
|
dIN32 Unsigned32,
|
|
dIN33 Unsigned32,
|
|
dIN34 Unsigned32,
|
|
dIN35 Unsigned32,
|
|
dIN36 Unsigned32,
|
|
dIN37 Unsigned32,
|
|
dIN38 Unsigned32,
|
|
dIN39 Unsigned32,
|
|
dIN40 Unsigned32,
|
|
dIN41 Unsigned32,
|
|
dIN42 Unsigned32,
|
|
dIN43 Unsigned32,
|
|
dOUT1 Unsigned32,
|
|
dOUT2 Unsigned32,
|
|
dOUT3 Unsigned32,
|
|
dOUT4 Unsigned32,
|
|
dOUT5 Unsigned32,
|
|
dOUT6 Unsigned32,
|
|
dOUT7 Unsigned32,
|
|
dOUT8 Unsigned32,
|
|
dOUT9 Unsigned32,
|
|
dOUT10 Unsigned32,
|
|
dOUT11 Unsigned32,
|
|
dOUT12 Unsigned32,
|
|
dOUT13 Unsigned32,
|
|
dOUT14 Unsigned32,
|
|
dOUT15 Unsigned32,
|
|
dOUT16 Unsigned32,
|
|
dOUT17 Unsigned32,
|
|
dOUT18 Unsigned32,
|
|
dOUT19 Unsigned32,
|
|
dOUT20 Unsigned32,
|
|
dOUT21 Unsigned32,
|
|
dOUT22 Unsigned32,
|
|
dOUT23 Unsigned32,
|
|
dOUT24 Unsigned32,
|
|
dOUT25 Unsigned32,
|
|
dOUT26 Unsigned32,
|
|
dOUT27 Unsigned32,
|
|
dOUT28 Unsigned32,
|
|
dOUT29 Unsigned32,
|
|
dOUT30 Unsigned32,
|
|
dOUT31 Unsigned32,
|
|
aIN1 Unsigned32,
|
|
aIN2 Unsigned32,
|
|
aIN3 Unsigned32,
|
|
aIN4 Unsigned32,
|
|
aIN5 Unsigned32,
|
|
aIN6 Unsigned32,
|
|
aIN7 Unsigned32,
|
|
aIN8 Unsigned32,
|
|
aIN9 Unsigned32,
|
|
aIN10 Unsigned32,
|
|
aIN11 Unsigned32,
|
|
aIN12 Unsigned32,
|
|
aIN13 Unsigned32,
|
|
aIN14 Unsigned32,
|
|
aIN15 Unsigned32,
|
|
aIN16 Unsigned32,
|
|
aIN17 Unsigned32,
|
|
aIN18 Unsigned32,
|
|
aIN19 Unsigned32,
|
|
aIN20 Unsigned32,
|
|
aIN21 Unsigned32,
|
|
aOUT1 Unsigned32,
|
|
aOUT2 Unsigned32,
|
|
aOUT3 Unsigned32,
|
|
aOUT4 Unsigned32,
|
|
aOUT5 Unsigned32,
|
|
aOUT6 Unsigned32,
|
|
aOUT7 Unsigned32,
|
|
aOUT8 Unsigned32,
|
|
aOUT9 Unsigned32,
|
|
aOUT10 Unsigned32,
|
|
aOUT11 Unsigned32,
|
|
aOUT12 Unsigned32,
|
|
aOUT13 Unsigned32,
|
|
aOUT14 Unsigned32,
|
|
aOUT15 Unsigned32,
|
|
aOUT16 Unsigned32,
|
|
aOUT17 Unsigned32,
|
|
aOUT18 Unsigned32,
|
|
aOUT19 Unsigned32,
|
|
aOUT20 Unsigned32
|
|
}
|
|
|
|
numberOfSensors OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of sensors"
|
|
::= { infoSensorIORawdataEntry 1769 }
|
|
|
|
dIN1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN1"
|
|
::= { infoSensorIORawdataEntry 1800 }
|
|
|
|
dIN2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN2"
|
|
::= { infoSensorIORawdataEntry 1801 }
|
|
|
|
dIN3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN3"
|
|
::= { infoSensorIORawdataEntry 1802 }
|
|
|
|
dIN4 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN4"
|
|
::= { infoSensorIORawdataEntry 1803 }
|
|
|
|
dIN5 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN5"
|
|
::= { infoSensorIORawdataEntry 1804 }
|
|
|
|
dIN6 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN6"
|
|
::= { infoSensorIORawdataEntry 1805 }
|
|
|
|
dIN7 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN7"
|
|
::= { infoSensorIORawdataEntry 1806 }
|
|
|
|
dIN8 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN8"
|
|
::= { infoSensorIORawdataEntry 1807 }
|
|
|
|
dIN9 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN9"
|
|
::= { infoSensorIORawdataEntry 1808 }
|
|
|
|
dIN10 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN10"
|
|
::= { infoSensorIORawdataEntry 1809 }
|
|
|
|
dIN11 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN11"
|
|
::= { infoSensorIORawdataEntry 1810 }
|
|
|
|
dIN12 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN12"
|
|
::= { infoSensorIORawdataEntry 1811 }
|
|
|
|
dIN13 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN13"
|
|
::= { infoSensorIORawdataEntry 1812 }
|
|
|
|
dIN14 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN14"
|
|
::= { infoSensorIORawdataEntry 1813 }
|
|
|
|
dIN15 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN15"
|
|
::= { infoSensorIORawdataEntry 1814 }
|
|
|
|
dIN16 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN16"
|
|
::= { infoSensorIORawdataEntry 1815 }
|
|
|
|
dIN17 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN17"
|
|
::= { infoSensorIORawdataEntry 1816 }
|
|
|
|
dIN18 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN18"
|
|
::= { infoSensorIORawdataEntry 1817 }
|
|
|
|
dIN19 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN19"
|
|
::= { infoSensorIORawdataEntry 1818 }
|
|
|
|
dIN20 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN20"
|
|
::= { infoSensorIORawdataEntry 1819 }
|
|
|
|
dIN21 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN21"
|
|
::= { infoSensorIORawdataEntry 1820 }
|
|
|
|
dIN22 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN22"
|
|
::= { infoSensorIORawdataEntry 1821 }
|
|
|
|
dIN23 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN23"
|
|
::= { infoSensorIORawdataEntry 1822 }
|
|
|
|
dIN24 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN24"
|
|
::= { infoSensorIORawdataEntry 1823 }
|
|
|
|
dIN25 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN25"
|
|
::= { infoSensorIORawdataEntry 1824 }
|
|
|
|
dIN26 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN26"
|
|
::= { infoSensorIORawdataEntry 1825 }
|
|
|
|
dIN27 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN27"
|
|
::= { infoSensorIORawdataEntry 1826 }
|
|
|
|
dIN28 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN28"
|
|
::= { infoSensorIORawdataEntry 1827 }
|
|
|
|
dIN29 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN29"
|
|
::= { infoSensorIORawdataEntry 1828 }
|
|
|
|
dIN30 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN30"
|
|
::= { infoSensorIORawdataEntry 1829 }
|
|
|
|
dIN31 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN31"
|
|
::= { infoSensorIORawdataEntry 1830 }
|
|
|
|
dIN32 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN32"
|
|
::= { infoSensorIORawdataEntry 1831 }
|
|
|
|
dIN33 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN33"
|
|
::= { infoSensorIORawdataEntry 1832 }
|
|
|
|
dIN34 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN34"
|
|
::= { infoSensorIORawdataEntry 1833 }
|
|
|
|
dIN35 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN35"
|
|
::= { infoSensorIORawdataEntry 1834 }
|
|
|
|
dIN36 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN36"
|
|
::= { infoSensorIORawdataEntry 1835 }
|
|
|
|
dIN37 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN37"
|
|
::= { infoSensorIORawdataEntry 1836 }
|
|
|
|
dIN38 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN38"
|
|
::= { infoSensorIORawdataEntry 1837 }
|
|
|
|
dIN39 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN39"
|
|
::= { infoSensorIORawdataEntry 1838 }
|
|
|
|
dIN40 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN40"
|
|
::= { infoSensorIORawdataEntry 1839 }
|
|
|
|
dIN41 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN41"
|
|
::= { infoSensorIORawdataEntry 1840 }
|
|
|
|
dIN42 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN42"
|
|
::= { infoSensorIORawdataEntry 1841 }
|
|
|
|
dIN43 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DIN43"
|
|
::= { infoSensorIORawdataEntry 1842 }
|
|
|
|
dOUT1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT1"
|
|
::= { infoSensorIORawdataEntry 1843 }
|
|
|
|
dOUT2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT2"
|
|
::= { infoSensorIORawdataEntry 1844 }
|
|
|
|
dOUT3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT3"
|
|
::= { infoSensorIORawdataEntry 1845 }
|
|
|
|
dOUT4 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT4"
|
|
::= { infoSensorIORawdataEntry 1846 }
|
|
|
|
dOUT5 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT5"
|
|
::= { infoSensorIORawdataEntry 1847 }
|
|
|
|
dOUT6 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT6"
|
|
::= { infoSensorIORawdataEntry 1848 }
|
|
|
|
dOUT7 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT7"
|
|
::= { infoSensorIORawdataEntry 1849 }
|
|
|
|
dOUT8 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT8"
|
|
::= { infoSensorIORawdataEntry 1850 }
|
|
|
|
dOUT9 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT9"
|
|
::= { infoSensorIORawdataEntry 1851 }
|
|
|
|
dOUT10 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT10"
|
|
::= { infoSensorIORawdataEntry 1852 }
|
|
|
|
dOUT11 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT11"
|
|
::= { infoSensorIORawdataEntry 1853 }
|
|
|
|
dOUT12 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT12"
|
|
::= { infoSensorIORawdataEntry 1854 }
|
|
|
|
dOUT13 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT13"
|
|
::= { infoSensorIORawdataEntry 1855 }
|
|
|
|
dOUT14 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT14"
|
|
::= { infoSensorIORawdataEntry 1856 }
|
|
|
|
dOUT15 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT15"
|
|
::= { infoSensorIORawdataEntry 1857 }
|
|
|
|
dOUT16 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT16"
|
|
::= { infoSensorIORawdataEntry 1858 }
|
|
|
|
dOUT17 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT17"
|
|
::= { infoSensorIORawdataEntry 1859 }
|
|
|
|
dOUT18 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT18"
|
|
::= { infoSensorIORawdataEntry 1860 }
|
|
|
|
dOUT19 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT19"
|
|
::= { infoSensorIORawdataEntry 1861 }
|
|
|
|
dOUT20 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT20"
|
|
::= { infoSensorIORawdataEntry 1862 }
|
|
|
|
dOUT21 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT21"
|
|
::= { infoSensorIORawdataEntry 1863 }
|
|
|
|
dOUT22 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT22"
|
|
::= { infoSensorIORawdataEntry 1864 }
|
|
|
|
dOUT23 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT23"
|
|
::= { infoSensorIORawdataEntry 1865 }
|
|
|
|
dOUT24 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT24"
|
|
::= { infoSensorIORawdataEntry 1866 }
|
|
|
|
dOUT25 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT25"
|
|
::= { infoSensorIORawdataEntry 1867 }
|
|
|
|
dOUT26 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT26"
|
|
::= { infoSensorIORawdataEntry 1868 }
|
|
|
|
dOUT27 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT27"
|
|
::= { infoSensorIORawdataEntry 1869 }
|
|
|
|
dOUT28 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT28"
|
|
::= { infoSensorIORawdataEntry 1870 }
|
|
|
|
dOUT29 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT29"
|
|
::= { infoSensorIORawdataEntry 1871 }
|
|
|
|
dOUT30 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT30"
|
|
::= { infoSensorIORawdataEntry 1872 }
|
|
|
|
dOUT31 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"DOUT31"
|
|
::= { infoSensorIORawdataEntry 1873 }
|
|
|
|
aIN1 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN1"
|
|
::= { infoSensorIORawdataEntry 1900 }
|
|
|
|
aIN2 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN2"
|
|
::= { infoSensorIORawdataEntry 1901 }
|
|
|
|
aIN3 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN3"
|
|
::= { infoSensorIORawdataEntry 1902 }
|
|
|
|
aIN4 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN4"
|
|
::= { infoSensorIORawdataEntry 1903 }
|
|
|
|
aIN5 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN5"
|
|
::= { infoSensorIORawdataEntry 1904 }
|
|
|
|
aIN6 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN6"
|
|
::= { infoSensorIORawdataEntry 1905 }
|
|
|
|
aIN7 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN7"
|
|
::= { infoSensorIORawdataEntry 1906 }
|
|
|
|
aIN8 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN8"
|
|
::= { infoSensorIORawdataEntry 1907 }
|
|
|
|
aIN9 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN9"
|
|
::= { infoSensorIORawdataEntry 1908 }
|
|
|
|
aIN10 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN10"
|
|
::= { infoSensorIORawdataEntry 1909 }
|
|
|
|
aIN11 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN11"
|
|
::= { infoSensorIORawdataEntry 1910 }
|
|
|
|
aIN12 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN12"
|
|
::= { infoSensorIORawdataEntry 1911 }
|
|
|
|
aIN13 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN13"
|
|
::= { infoSensorIORawdataEntry 1912 }
|
|
|
|
aIN14 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN14"
|
|
::= { infoSensorIORawdataEntry 1913 }
|
|
|
|
aIN15 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN15"
|
|
::= { infoSensorIORawdataEntry 1914 }
|
|
|
|
aIN16 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN16"
|
|
::= { infoSensorIORawdataEntry 1915 }
|
|
|
|
aIN17 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN17"
|
|
::= { infoSensorIORawdataEntry 1916 }
|
|
|
|
aIN18 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN18"
|
|
::= { infoSensorIORawdataEntry 1917 }
|
|
|
|
aIN19 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN19"
|
|
::= { infoSensorIORawdataEntry 1918 }
|
|
|
|
aIN20 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN20"
|
|
::= { infoSensorIORawdataEntry 1919 }
|
|
|
|
aIN21 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AIN21"
|
|
::= { infoSensorIORawdataEntry 1920 }
|
|
|
|
aOUT1 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT1"
|
|
::= { infoSensorIORawdataEntry 1921 }
|
|
|
|
aOUT2 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT2"
|
|
::= { infoSensorIORawdataEntry 1922 }
|
|
|
|
aOUT3 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT3"
|
|
::= { infoSensorIORawdataEntry 1923 }
|
|
|
|
aOUT4 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT4"
|
|
::= { infoSensorIORawdataEntry 1924 }
|
|
|
|
aOUT5 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT5"
|
|
::= { infoSensorIORawdataEntry 1925 }
|
|
|
|
aOUT6 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT6"
|
|
::= { infoSensorIORawdataEntry 1926 }
|
|
|
|
aOUT7 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT7"
|
|
::= { infoSensorIORawdataEntry 1927 }
|
|
|
|
aOUT8 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT8"
|
|
::= { infoSensorIORawdataEntry 1928 }
|
|
|
|
aOUT9 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT9"
|
|
::= { infoSensorIORawdataEntry 1929 }
|
|
|
|
aOUT10 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT10"
|
|
::= { infoSensorIORawdataEntry 1930 }
|
|
|
|
aOUT11 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT11"
|
|
::= { infoSensorIORawdataEntry 1931 }
|
|
|
|
aOUT12 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT12"
|
|
::= { infoSensorIORawdataEntry 1932 }
|
|
|
|
aOUT13 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT13"
|
|
::= { infoSensorIORawdataEntry 1933 }
|
|
|
|
aOUT14 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT14"
|
|
::= { infoSensorIORawdataEntry 1934 }
|
|
|
|
aOUT15 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT15"
|
|
::= { infoSensorIORawdataEntry 1935 }
|
|
|
|
aOUT16 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT16"
|
|
::= { infoSensorIORawdataEntry 1936 }
|
|
|
|
aOUT17 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT17"
|
|
::= { infoSensorIORawdataEntry 1937 }
|
|
|
|
aOUT18 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT18"
|
|
::= { infoSensorIORawdataEntry 1938 }
|
|
|
|
aOUT19 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT19"
|
|
::= { infoSensorIORawdataEntry 1939 }
|
|
|
|
aOUT20 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4095)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AOUT20"
|
|
::= { infoSensorIORawdataEntry 1940 }
|
|
|
|
infoZoneSequencingTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoZoneSequencingEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoZoneSequencing"
|
|
::= { infoZoneSequencing 1 }
|
|
|
|
infoZoneSequencingEntry OBJECT-TYPE
|
|
SYNTAX InfoZoneSequencingEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoZoneSequencing"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoZoneSequencingTable 1 }
|
|
|
|
InfoZoneSequencingEntry ::= SEQUENCE {
|
|
myZone Unsigned32,
|
|
myZoneRoomTemperature Integer32,
|
|
myZoneRoomHumidity Unsigned32,
|
|
myZoneSupplyTemperature Integer32,
|
|
myZoneSupplyHumidity Unsigned32,
|
|
myZoneSequencingTime Unsigned32
|
|
}
|
|
|
|
myZone OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..32)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone"
|
|
::= { infoZoneSequencingEntry 11700 }
|
|
|
|
myZoneRoomTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone room temperature"
|
|
::= { infoZoneSequencingEntry 11701 }
|
|
|
|
myZoneRoomHumidity OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone room humidity"
|
|
::= { infoZoneSequencingEntry 11702 }
|
|
|
|
myZoneSupplyTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone supply temperature"
|
|
::= { infoZoneSequencingEntry 11703 }
|
|
|
|
myZoneSupplyHumidity OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone supply humidity"
|
|
::= { infoZoneSequencingEntry 11704 }
|
|
|
|
myZoneSequencingTime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone sequencing time"
|
|
::= { infoZoneSequencingEntry 11705 }
|
|
|
|
infoStatRuntimesTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoStatRuntimesEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoStatRuntimes"
|
|
::= { infoStatRuntimes 3 }
|
|
|
|
infoStatRuntimesEntry OBJECT-TYPE
|
|
SYNTAX InfoStatRuntimesEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoStatRuntimes"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoStatRuntimesTable 1 }
|
|
|
|
InfoStatRuntimesEntry ::= SEQUENCE {
|
|
unitRuntimeUnit Unsigned32,
|
|
unitStoptimeUnit Unsigned32
|
|
}
|
|
|
|
unitRuntimeUnit OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit runtime unit"
|
|
::= { infoStatRuntimesEntry 1164 }
|
|
|
|
unitStoptimeUnit OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit stoptime unit"
|
|
::= { infoStatRuntimesEntry 1165 }
|
|
|
|
infoStatFunctionsTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoStatFunctionsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoStatFunctions"
|
|
::= { infoStatFunctions 1 }
|
|
|
|
infoStatFunctionsEntry OBJECT-TYPE
|
|
SYNTAX InfoStatFunctionsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoStatFunctions"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoStatFunctionsTable 1 }
|
|
|
|
InfoStatFunctionsEntry ::= SEQUENCE {
|
|
unitRuntimeCooling Unsigned32,
|
|
unitRuntimeHeating Unsigned32,
|
|
unitRuntimeHumidification Unsigned32,
|
|
unitRuntimeDehumidification Unsigned32,
|
|
unitRuntimeFreecooling Unsigned32,
|
|
unitRuntimeFreecoolMixmode Unsigned32,
|
|
humidifier2Runtime Unsigned32,
|
|
humidifier3Runtime Unsigned32
|
|
}
|
|
|
|
unitRuntimeCooling OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit runtime cooling"
|
|
::= { infoStatFunctionsEntry 1166 }
|
|
|
|
unitRuntimeHeating OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit runtime heating"
|
|
::= { infoStatFunctionsEntry 1167 }
|
|
|
|
unitRuntimeHumidification OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit runtime humidification"
|
|
::= { infoStatFunctionsEntry 1168 }
|
|
|
|
unitRuntimeDehumidification OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit runtime dehumidification"
|
|
::= { infoStatFunctionsEntry 1169 }
|
|
|
|
unitRuntimeFreecooling OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit runtime freecooling"
|
|
::= { infoStatFunctionsEntry 1203 }
|
|
|
|
unitRuntimeFreecoolMixmode OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit runtime freecool-mixmode"
|
|
::= { infoStatFunctionsEntry 1204 }
|
|
|
|
humidifier2Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 runtime"
|
|
::= { infoStatFunctionsEntry 6526 }
|
|
|
|
humidifier3Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 runtime"
|
|
::= { infoStatFunctionsEntry 6626 }
|
|
|
|
infoStatComponentsTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoStatComponentsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoStatComponents"
|
|
::= { infoStatComponents 5 }
|
|
|
|
infoStatComponentsEntry OBJECT-TYPE
|
|
SYNTAX InfoStatComponentsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoStatComponents"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoStatComponentsTable 1 }
|
|
|
|
InfoStatComponentsEntry ::= SEQUENCE {
|
|
humidifier1Runtime Unsigned32,
|
|
fan1Runtime Unsigned32,
|
|
fan2Runtime Unsigned32,
|
|
fan3Runtime Unsigned32
|
|
}
|
|
|
|
humidifier1Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 runtime"
|
|
::= { infoStatComponentsEntry 6426 }
|
|
|
|
fan1Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 runtime"
|
|
::= { infoStatComponentsEntry 6931 }
|
|
|
|
fan2Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 runtime"
|
|
::= { infoStatComponentsEntry 7031 }
|
|
|
|
fan3Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 runtime"
|
|
::= { infoStatComponentsEntry 7131 }
|
|
|
|
infoStatCompressorsTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoStatCompressorsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoStatCompressors"
|
|
::= { infoStatCompressors 1 }
|
|
|
|
infoStatCompressorsEntry OBJECT-TYPE
|
|
SYNTAX InfoStatCompressorsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoStatCompressors"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoStatCompressorsTable 1 }
|
|
|
|
InfoStatCompressorsEntry ::= SEQUENCE {
|
|
compr1Runtime Unsigned32,
|
|
compr1MinimumRuntime Unsigned32,
|
|
compr2Runtime Unsigned32,
|
|
compr2MinimumRuntime Unsigned32,
|
|
compr3Runtime Unsigned32,
|
|
compr4Runtime Unsigned32,
|
|
compr5Runtime Unsigned32,
|
|
compr6Runtime Unsigned32
|
|
}
|
|
|
|
compr1Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 runtime"
|
|
::= { infoStatCompressorsEntry 4428 }
|
|
|
|
compr1MinimumRuntime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..3600)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 minimum runtime"
|
|
::= { infoStatCompressorsEntry 4436 }
|
|
|
|
compr2Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 runtime"
|
|
::= { infoStatCompressorsEntry 4528 }
|
|
|
|
compr2MinimumRuntime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..3600)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.2 minimum runtime"
|
|
::= { infoStatCompressorsEntry 4536 }
|
|
|
|
compr3Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 runtime"
|
|
::= { infoStatCompressorsEntry 9528 }
|
|
|
|
compr4Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 runtime"
|
|
::= { infoStatCompressorsEntry 9628 }
|
|
|
|
compr5Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 runtime"
|
|
::= { infoStatCompressorsEntry 9728 }
|
|
|
|
compr6Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 runtime"
|
|
::= { infoStatCompressorsEntry 9828 }
|
|
|
|
infoStatPumpsTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoStatPumpsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoStatPumps"
|
|
::= { infoStatPumps 1 }
|
|
|
|
infoStatPumpsEntry OBJECT-TYPE
|
|
SYNTAX InfoStatPumpsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoStatPumps"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoStatPumpsTable 1 }
|
|
|
|
InfoStatPumpsEntry ::= SEQUENCE {
|
|
pump1Runtime Unsigned32,
|
|
pump2Runtime Unsigned32,
|
|
pump3Runtime Unsigned32,
|
|
pump4Runtime Unsigned32
|
|
}
|
|
|
|
pump1Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 runtime"
|
|
::= { infoStatPumpsEntry 5820 }
|
|
|
|
pump2Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 runtime"
|
|
::= { infoStatPumpsEntry 5920 }
|
|
|
|
pump3Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 runtime"
|
|
::= { infoStatPumpsEntry 6020 }
|
|
|
|
pump4Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 runtime"
|
|
::= { infoStatPumpsEntry 6120 }
|
|
|
|
infoStatEHeatingsTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoStatEHeatingsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoStatEHeatings"
|
|
::= { infoStatEHeatings 1 }
|
|
|
|
infoStatEHeatingsEntry OBJECT-TYPE
|
|
SYNTAX InfoStatEHeatingsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoStatEHeatings"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoStatEHeatingsTable 1 }
|
|
|
|
InfoStatEHeatingsEntry ::= SEQUENCE {
|
|
elecHeating1Runtime Unsigned32,
|
|
elecHeating2Runtime Unsigned32,
|
|
elecHeating3Runtime Unsigned32,
|
|
elecHeating4Runtime Unsigned32
|
|
}
|
|
|
|
elecHeating1Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 runtime"
|
|
::= { infoStatEHeatingsEntry 4816 }
|
|
|
|
elecHeating2Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 runtime"
|
|
::= { infoStatEHeatingsEntry 4916 }
|
|
|
|
elecHeating3Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 runtime"
|
|
::= { infoStatEHeatingsEntry 5016 }
|
|
|
|
elecHeating4Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 runtime"
|
|
::= { infoStatEHeatingsEntry 5116 }
|
|
|
|
infoStatDrycoolersTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoStatDrycoolersEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoStatDrycoolers"
|
|
::= { infoStatDrycoolers 1 }
|
|
|
|
infoStatDrycoolersEntry OBJECT-TYPE
|
|
SYNTAX InfoStatDrycoolersEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoStatDrycoolers"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoStatDrycoolersTable 1 }
|
|
|
|
InfoStatDrycoolersEntry ::= SEQUENCE {
|
|
drycooler1Runtime Unsigned32,
|
|
drycooler2Runtime Unsigned32,
|
|
drycooler3Runtime Unsigned32,
|
|
drycooler4Runtime Unsigned32
|
|
}
|
|
|
|
drycooler1Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 runtime"
|
|
::= { infoStatDrycoolersEntry 5415 }
|
|
|
|
drycooler2Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler2 runtime"
|
|
::= { infoStatDrycoolersEntry 5515 }
|
|
|
|
drycooler3Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler3 runtime"
|
|
::= { infoStatDrycoolersEntry 5615 }
|
|
|
|
drycooler4Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler4 runtime"
|
|
::= { infoStatDrycoolersEntry 5715 }
|
|
|
|
infoStatMaintenanceTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoStatMaintenanceEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoStatMaintenance"
|
|
::= { infoStatMaintenance 1 }
|
|
|
|
infoStatMaintenanceEntry OBJECT-TYPE
|
|
SYNTAX InfoStatMaintenanceEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoStatMaintenance"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoStatMaintenanceTable 1 }
|
|
|
|
InfoStatMaintenanceEntry ::= SEQUENCE {
|
|
unitLastMaintenanceYear Unsigned32,
|
|
unitLastMaintenanceMonth Unsigned32,
|
|
unitLastMaintenanceDay Unsigned32,
|
|
unitMaintenanceIntervall Unsigned32
|
|
}
|
|
|
|
unitLastMaintenanceYear OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit last maintenance year"
|
|
::= { infoStatMaintenanceEntry 1160 }
|
|
|
|
unitLastMaintenanceMonth OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..12)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit last maintenance month"
|
|
::= { infoStatMaintenanceEntry 1161 }
|
|
|
|
unitLastMaintenanceDay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit last maintenance day"
|
|
::= { infoStatMaintenanceEntry 1162 }
|
|
|
|
unitMaintenanceIntervall OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..24)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit maintenance intervall"
|
|
::= { infoStatMaintenanceEntry 1163 }
|
|
|
|
infoSystemTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF InfoSystemEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu infoSystem"
|
|
::= { infoSystem 2 }
|
|
|
|
infoSystemEntry OBJECT-TYPE
|
|
SYNTAX InfoSystemEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu infoSystem"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { infoSystemTable 1 }
|
|
|
|
InfoSystemEntry ::= SEQUENCE {
|
|
unitType Unsigned32,
|
|
sWVersion Unsigned32,
|
|
unitFamily Unsigned32,
|
|
numberOfEDIO Unsigned32,
|
|
numberOfEAIO Unsigned32,
|
|
typeOfEBUS Unsigned32,
|
|
numberOfEEIO Unsigned32,
|
|
systemName Unsigned32,
|
|
unitName Unsigned32
|
|
}
|
|
|
|
unitType OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit-type"
|
|
::= { infoSystemEntry 1 }
|
|
|
|
sWVersion OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"SW-version"
|
|
::= { infoSystemEntry 3 }
|
|
|
|
unitFamily OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit family"
|
|
::= { infoSystemEntry 20 }
|
|
|
|
numberOfEDIO OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of EDIO"
|
|
::= { infoSystemEntry 1758 }
|
|
|
|
numberOfEAIO OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of EAIO"
|
|
::= { infoSystemEntry 1759 }
|
|
|
|
typeOfEBUS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"type of EBUS"
|
|
::= { infoSystemEntry 1760 }
|
|
|
|
numberOfEEIO OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of EEIO"
|
|
::= { infoSystemEntry 1775 }
|
|
|
|
systemName OBJECT-TYPE
|
|
SYNTAX Unsigned32 (32..125)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"system name"
|
|
::= { infoSystemEntry 14000 }
|
|
|
|
unitName OBJECT-TYPE
|
|
SYNTAX Unsigned32 (32..125)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit name"
|
|
::= { infoSystemEntry 14100 }
|
|
|
|
opValuesControlTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpValuesControlEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opValuesControl"
|
|
::= { opValuesControl 6 }
|
|
|
|
opValuesControlEntry OBJECT-TYPE
|
|
SYNTAX OpValuesControlEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opValuesControl"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opValuesControlTable 1 }
|
|
|
|
OpValuesControlEntry ::= SEQUENCE {
|
|
keyLock Unsigned32,
|
|
setpointTemperatureCooling Unsigned32,
|
|
setpointTemperatureHeating Unsigned32,
|
|
secondSetpointTemperatureHeating Unsigned32,
|
|
setpointHumidity Unsigned32,
|
|
colingBand Unsigned32,
|
|
heatingBand Unsigned32,
|
|
humidityBand Unsigned32,
|
|
limitRoomTempMax Unsigned32,
|
|
limitRoomTempMin Unsigned32,
|
|
limitRoomHumidityTooLow Unsigned32,
|
|
limitRoomHumidityTooHigh Unsigned32,
|
|
errorLevel Unsigned32,
|
|
coolingSetpoint Integer32,
|
|
heatingSetpoint Integer32,
|
|
highTemperatureAlarmThreshold Integer32,
|
|
lowTemperatureAlarmThreshold Integer32
|
|
}
|
|
|
|
keyLock OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"key lock"
|
|
::= { opValuesControlEntry 10206 }
|
|
|
|
setpointTemperatureCooling OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"setpoint temperature cooling"
|
|
::= { opValuesControlEntry 10273 }
|
|
|
|
setpointTemperatureHeating OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"setpoint temperature heating"
|
|
::= { opValuesControlEntry 10274 }
|
|
|
|
secondSetpointTemperatureHeating OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"second setpoint temperature heating"
|
|
::= { opValuesControlEntry 10275 }
|
|
|
|
setpointHumidity OBJECT-TYPE
|
|
SYNTAX Unsigned32 (10..90)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"setpoint humidity"
|
|
::= { opValuesControlEntry 10276 }
|
|
|
|
colingBand OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..30)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"coling band "
|
|
::= { opValuesControlEntry 10277 }
|
|
|
|
heatingBand OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..30)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"heating band"
|
|
::= { opValuesControlEntry 10278 }
|
|
|
|
humidityBand OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidity band"
|
|
::= { opValuesControlEntry 10279 }
|
|
|
|
limitRoomTempMax OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..90)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit room temp max"
|
|
::= { opValuesControlEntry 10280 }
|
|
|
|
limitRoomTempMin OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..90)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit room temp min"
|
|
::= { opValuesControlEntry 10281 }
|
|
|
|
limitRoomHumidityTooLow OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..90)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit room humidity too low"
|
|
::= { opValuesControlEntry 10282 }
|
|
|
|
limitRoomHumidityTooHigh OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..90)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit room humidity too high"
|
|
::= { opValuesControlEntry 10283 }
|
|
|
|
errorLevel OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"error Level"
|
|
::= { opValuesControlEntry 10284 }
|
|
|
|
coolingSetpoint OBJECT-TYPE
|
|
SYNTAX Integer32 (-9999..9999)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"cooling setpoint"
|
|
::= { opValuesControlEntry 10285 }
|
|
|
|
heatingSetpoint OBJECT-TYPE
|
|
SYNTAX Integer32 (-9999..9999)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"heating setpoint"
|
|
::= { opValuesControlEntry 10286 }
|
|
|
|
highTemperatureAlarmThreshold OBJECT-TYPE
|
|
SYNTAX Integer32 (-9999..9999)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"high temperature alarm threshold"
|
|
::= { opValuesControlEntry 10287 }
|
|
|
|
lowTemperatureAlarmThreshold OBJECT-TYPE
|
|
SYNTAX Integer32 (-9999..9999)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"low temperature alarm threshold"
|
|
::= { opValuesControlEntry 10288 }
|
|
|
|
opCtrlAirTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCtrlAirEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCtrlAir"
|
|
::= { opCtrlAir 4 }
|
|
|
|
opCtrlAirEntry OBJECT-TYPE
|
|
SYNTAX OpCtrlAirEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCtrlAir"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCtrlAirTable 1 }
|
|
|
|
OpCtrlAirEntry ::= SEQUENCE {
|
|
limitSupplyAirPrsureTooHighLimit Integer32,
|
|
limitSupplyAirPrsureTooHighDelay Unsigned32,
|
|
limitSupplyAirPrTooHighDoutPrio Unsigned32,
|
|
limitSupplyAirPrsureTooLowLimit Integer32,
|
|
limitSupplyAirPrsureTooLowDelay Unsigned32,
|
|
limitSupplyAirPrreTooLowDoutPrio Unsigned32,
|
|
unitCurrentSupplyAirPressure Integer32,
|
|
unitSetpointSupplyAirPressure Integer32,
|
|
prealarmSupplyAiureTooHighLimit Integer32,
|
|
prealarmSupplyAiooHighAlarmDelay Unsigned32,
|
|
prealarmSupplyAissureTooLowLimit Integer32,
|
|
prealarmSupplyAiooLowAlarmDelay Unsigned32
|
|
}
|
|
|
|
limitSupplyAirPrsureTooHighLimit OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air pressure too high limit"
|
|
::= { opCtrlAirEntry 1729 }
|
|
|
|
limitSupplyAirPrsureTooHighDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air pressure too high delay"
|
|
::= { opCtrlAirEntry 1730 }
|
|
|
|
limitSupplyAirPrTooHighDoutPrio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air pressure too high dout (prio)"
|
|
::= { opCtrlAirEntry 1731 }
|
|
|
|
limitSupplyAirPrsureTooLowLimit OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air pressure too low limit"
|
|
::= { opCtrlAirEntry 1732 }
|
|
|
|
limitSupplyAirPrsureTooLowDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air pressure too low delay"
|
|
::= { opCtrlAirEntry 1733 }
|
|
|
|
limitSupplyAirPrreTooLowDoutPrio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air pressure too low dout (prio)"
|
|
::= { opCtrlAirEntry 1734 }
|
|
|
|
unitCurrentSupplyAirPressure OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit current supply air pressure"
|
|
::= { opCtrlAirEntry 1735 }
|
|
|
|
unitSetpointSupplyAirPressure OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit setpoint supply air pressure"
|
|
::= { opCtrlAirEntry 1736 }
|
|
|
|
prealarmSupplyAiureTooHighLimit OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"prealarm supply air pressure too high: limit"
|
|
::= { opCtrlAirEntry 1874 }
|
|
|
|
prealarmSupplyAiooHighAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"prealarm supply air pressure too high: alarm delay"
|
|
::= { opCtrlAirEntry 1875 }
|
|
|
|
prealarmSupplyAissureTooLowLimit OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"prealarm supply air pressure too low: limit"
|
|
::= { opCtrlAirEntry 1877 }
|
|
|
|
prealarmSupplyAiooLowAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"prealarm supply air pressure too low: alarm delay"
|
|
::= { opCtrlAirEntry 1878 }
|
|
|
|
opCtrlTemperatureTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCtrlTemperatureEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCtrlTemperature"
|
|
::= { opCtrlTemperature 1 }
|
|
|
|
opCtrlTemperatureEntry OBJECT-TYPE
|
|
SYNTAX OpCtrlTemperatureEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCtrlTemperature"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCtrlTemperatureTable 1 }
|
|
|
|
OpCtrlTemperatureEntry ::= SEQUENCE {
|
|
unitSetpointTemperatureDay Integer32,
|
|
unitSetpointTemperatureNight Integer32,
|
|
limitReturnAirTempTooHighAlarm Integer32,
|
|
limitReturnAirTempTooLowAlarm Integer32,
|
|
limitSupplyAirTempTooHighAlarm Integer32,
|
|
limitSupplyAirTempTooLowAlarm Integer32,
|
|
limitReturnAirTeoHighAlarmDelay Unsigned32,
|
|
limitReturnAirTeTooLowAlarmDelay Unsigned32,
|
|
limitSupplyAirTeoHighAlarmDelay Unsigned32,
|
|
limitSupplyAirTeTooLowAlarmDelay Unsigned32
|
|
}
|
|
|
|
unitSetpointTemperatureDay OBJECT-TYPE
|
|
SYNTAX Integer32 (50..500)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit setpoint temperature day"
|
|
::= { opCtrlTemperatureEntry 1173 }
|
|
|
|
unitSetpointTemperatureNight OBJECT-TYPE
|
|
SYNTAX Integer32 (50..500)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit setpoint temperature night"
|
|
::= { opCtrlTemperatureEntry 1174 }
|
|
|
|
limitReturnAirTempTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Integer32 (50..550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air temp. too high alarm"
|
|
::= { opCtrlTemperatureEntry 2239 }
|
|
|
|
limitReturnAirTempTooLowAlarm OBJECT-TYPE
|
|
SYNTAX Integer32 (0..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air temp. too low alarm"
|
|
::= { opCtrlTemperatureEntry 2240 }
|
|
|
|
limitSupplyAirTempTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Integer32 (50..550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air temp. too high alarm"
|
|
::= { opCtrlTemperatureEntry 2241 }
|
|
|
|
limitSupplyAirTempTooLowAlarm OBJECT-TYPE
|
|
SYNTAX Integer32 (0..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air temp. too low alarm"
|
|
::= { opCtrlTemperatureEntry 2242 }
|
|
|
|
limitReturnAirTeoHighAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air temp. too high alarm delay"
|
|
::= { opCtrlTemperatureEntry 2253 }
|
|
|
|
limitReturnAirTeTooLowAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air temp. too low alarm delay"
|
|
::= { opCtrlTemperatureEntry 2255 }
|
|
|
|
limitSupplyAirTeoHighAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air temp. too high alarm delay"
|
|
::= { opCtrlTemperatureEntry 2257 }
|
|
|
|
limitSupplyAirTeTooLowAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air temp. too low alarm delay"
|
|
::= { opCtrlTemperatureEntry 2259 }
|
|
|
|
opCtrlHumidityTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCtrlHumidityEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCtrlHumidity"
|
|
::= { opCtrlHumidity 1 }
|
|
|
|
opCtrlHumidityEntry OBJECT-TYPE
|
|
SYNTAX OpCtrlHumidityEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCtrlHumidity"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCtrlHumidityTable 1 }
|
|
|
|
OpCtrlHumidityEntry ::= SEQUENCE {
|
|
unitSetpointHumidity Unsigned32,
|
|
limitReturnAirHumidTooHighAlarm Unsigned32,
|
|
limitReturnAirHumidTooLowAlarm Unsigned32,
|
|
limitSupplyAirHumidTooHighAlarm Unsigned32,
|
|
limitSupplyAirHumidTooLowAlarm Unsigned32,
|
|
limitReturnAirHuooHighAlarmDelay Unsigned32,
|
|
limitReturnAirHuooLowAlarmDelay Unsigned32,
|
|
limitSupplyAirHuooHighAlarmDelay Unsigned32,
|
|
limitSupplyAirHuooLowAlarmDelay Unsigned32
|
|
}
|
|
|
|
unitSetpointHumidity OBJECT-TYPE
|
|
SYNTAX Unsigned32 (50..900)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit setpoint humidity"
|
|
::= { opCtrlHumidityEntry 1176 }
|
|
|
|
limitReturnAirHumidTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32 (50..2000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air humid. too high alarm"
|
|
::= { opCtrlHumidityEntry 2245 }
|
|
|
|
limitReturnAirHumidTooLowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..900)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air humid. too low alarm"
|
|
::= { opCtrlHumidityEntry 2246 }
|
|
|
|
limitSupplyAirHumidTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32 (50..2000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air humid. too high alarm"
|
|
::= { opCtrlHumidityEntry 2247 }
|
|
|
|
limitSupplyAirHumidTooLowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..900)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air humid. too low alarm"
|
|
::= { opCtrlHumidityEntry 2248 }
|
|
|
|
limitReturnAirHuooHighAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air humid. too high alarm delay"
|
|
::= { opCtrlHumidityEntry 2265 }
|
|
|
|
limitReturnAirHuooLowAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air humid. too low alarm delay"
|
|
::= { opCtrlHumidityEntry 2267 }
|
|
|
|
limitSupplyAirHuooHighAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air humid. too high alarm delay"
|
|
::= { opCtrlHumidityEntry 2269 }
|
|
|
|
limitSupplyAirHuooLowAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air humid. too low alarm delay"
|
|
::= { opCtrlHumidityEntry 2271 }
|
|
|
|
opCtrlPressureTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCtrlPressureEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCtrlPressure"
|
|
::= { opCtrlPressure 1 }
|
|
|
|
opCtrlPressureEntry OBJECT-TYPE
|
|
SYNTAX OpCtrlPressureEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCtrlPressure"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCtrlPressureTable 1 }
|
|
|
|
OpCtrlPressureEntry ::= SEQUENCE {
|
|
setpointRaisedFloorPressure Unsigned32
|
|
}
|
|
|
|
setpointRaisedFloorPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"setpoint raised floor pressure"
|
|
::= { opCtrlPressureEntry 1209 }
|
|
|
|
opCtrlWaterTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCtrlWaterEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCtrlWater"
|
|
::= { opCtrlWater 1 }
|
|
|
|
opCtrlWaterEntry OBJECT-TYPE
|
|
SYNTAX OpCtrlWaterEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCtrlWater"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCtrlWaterTable 1 }
|
|
|
|
OpCtrlWaterEntry ::= SEQUENCE {
|
|
waterTemperatureSetpoint1 Integer32,
|
|
waterTemperatureSetpoint2 Integer32,
|
|
limitWaterInlet1MinTemperature Integer32,
|
|
limitWaterInlet1MaxTemperature Integer32,
|
|
limitWaterOutlet1MinTemperature Integer32,
|
|
limitWaterOutlet1MaxTemperature Integer32,
|
|
limitWaterInlet2MinTemperature Integer32,
|
|
limitWaterInlet2MaxTemperature Integer32,
|
|
limitWaterOutlet2MinTemperature Integer32,
|
|
limitWaterOutlet2MaxTemperature Integer32,
|
|
waterInlet1MinTeatureAlarmdelay Unsigned32,
|
|
waterInlet1MaxTeatureAlarmdelay Unsigned32,
|
|
waterOutlet1MinTratureAlarmdelay Unsigned32,
|
|
waterOutlet1MaxTratureAlarmdelay Unsigned32,
|
|
waterInlet2MinTeatureAlarmdelay Unsigned32,
|
|
waterInlet2MaxTeatureAlarmdelay Unsigned32,
|
|
waterOutlet2MinTratureAlarmdelay Unsigned32,
|
|
waterOutlet2MaxTratureAlarmdelay Unsigned32,
|
|
limitWaterTempInTooHighAlarm Integer32,
|
|
limitWaterTempInTooLowAlarm Integer32,
|
|
limitWaterTempTooHighAlarmDelay Unsigned32,
|
|
limitWaterTempTooLowAlarmDelay Unsigned32
|
|
}
|
|
|
|
waterTemperatureSetpoint1 OBJECT-TYPE
|
|
SYNTAX Integer32 (50..500)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water temperature setpoint 1"
|
|
::= { opCtrlWaterEntry 1237 }
|
|
|
|
waterTemperatureSetpoint2 OBJECT-TYPE
|
|
SYNTAX Integer32 (50..500)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water temperature setpoint 2"
|
|
::= { opCtrlWaterEntry 1238 }
|
|
|
|
limitWaterInlet1MinTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water inlet 1, min temperature"
|
|
::= { opCtrlWaterEntry 1468 }
|
|
|
|
limitWaterInlet1MaxTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water inlet 1, max temperature"
|
|
::= { opCtrlWaterEntry 1469 }
|
|
|
|
limitWaterOutlet1MinTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water outlet 1, min temperature"
|
|
::= { opCtrlWaterEntry 1470 }
|
|
|
|
limitWaterOutlet1MaxTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water outlet 1, max temperature"
|
|
::= { opCtrlWaterEntry 1471 }
|
|
|
|
limitWaterInlet2MinTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water inlet 2, min temperature"
|
|
::= { opCtrlWaterEntry 1472 }
|
|
|
|
limitWaterInlet2MaxTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water inlet 2, max temperature"
|
|
::= { opCtrlWaterEntry 1473 }
|
|
|
|
limitWaterOutlet2MinTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water outlet 2, min temperature"
|
|
::= { opCtrlWaterEntry 1474 }
|
|
|
|
limitWaterOutlet2MaxTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water outlet 2, max temperature"
|
|
::= { opCtrlWaterEntry 1475 }
|
|
|
|
waterInlet1MinTeatureAlarmdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water inlet 1, min temperature alarmdelay"
|
|
::= { opCtrlWaterEntry 1476 }
|
|
|
|
waterInlet1MaxTeatureAlarmdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water inlet 1, max temperature alarmdelay"
|
|
::= { opCtrlWaterEntry 1477 }
|
|
|
|
waterOutlet1MinTratureAlarmdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water outlet 1, min temperature alarmdelay"
|
|
::= { opCtrlWaterEntry 1478 }
|
|
|
|
waterOutlet1MaxTratureAlarmdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water outlet 1, max temperature alarmdelay"
|
|
::= { opCtrlWaterEntry 1479 }
|
|
|
|
waterInlet2MinTeatureAlarmdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water inlet 2, min temperature alarmdelay"
|
|
::= { opCtrlWaterEntry 1480 }
|
|
|
|
waterInlet2MaxTeatureAlarmdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water inlet 2, max temperature alarmdelay"
|
|
::= { opCtrlWaterEntry 1481 }
|
|
|
|
waterOutlet2MinTratureAlarmdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water outlet 2, min temperature alarmdelay"
|
|
::= { opCtrlWaterEntry 1482 }
|
|
|
|
waterOutlet2MaxTratureAlarmdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water outlet 2, max temperature alarmdelay"
|
|
::= { opCtrlWaterEntry 1483 }
|
|
|
|
limitWaterTempInTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Integer32 (100..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water temp. (in) too high alarm"
|
|
::= { opCtrlWaterEntry 2243 }
|
|
|
|
limitWaterTempInTooLowAlarm OBJECT-TYPE
|
|
SYNTAX Integer32 (-200..300)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water temp. (in) too low alarm"
|
|
::= { opCtrlWaterEntry 2244 }
|
|
|
|
limitWaterTempTooHighAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water temp. too high alarm delay"
|
|
::= { opCtrlWaterEntry 2261 }
|
|
|
|
limitWaterTempTooLowAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water temp. too low alarm delay"
|
|
::= { opCtrlWaterEntry 2263 }
|
|
|
|
opCtrlRefrigerantTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCtrlRefrigerantEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCtrlRefrigerant"
|
|
::= { opCtrlRefrigerant 1 }
|
|
|
|
opCtrlRefrigerantEntry OBJECT-TYPE
|
|
SYNTAX OpCtrlRefrigerantEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCtrlRefrigerant"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCtrlRefrigerantTable 1 }
|
|
|
|
OpCtrlRefrigerantEntry ::= SEQUENCE {
|
|
unitSetpointCondPressureMixMode Integer32,
|
|
unitSetpointCondonPressureDXMode Integer32,
|
|
unitSetpointCondPressure2MixMode Integer32,
|
|
unitSetpointCondPressure2DXMode Integer32,
|
|
circuit1LPManagementAlarmdelay Unsigned32,
|
|
circuit1HPManagementAlarmdelay Unsigned32,
|
|
circuit1CondensireHighAlarmdelay Unsigned32,
|
|
circuit2LPManagementAlarmdelay Unsigned32,
|
|
circuit2HPManagementAlarmdelay Unsigned32,
|
|
pump1PressureSetpoint Unsigned32
|
|
}
|
|
|
|
unitSetpointCondPressureMixMode OBJECT-TYPE
|
|
SYNTAX Integer32 (0..400)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit setpoint condensation pressure Mix mode"
|
|
::= { opCtrlRefrigerantEntry 1218 }
|
|
|
|
unitSetpointCondonPressureDXMode OBJECT-TYPE
|
|
SYNTAX Integer32 (0..400)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit setpoint condensation pressure DX mode"
|
|
::= { opCtrlRefrigerantEntry 1219 }
|
|
|
|
unitSetpointCondPressure2MixMode OBJECT-TYPE
|
|
SYNTAX Integer32 (0..400)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit setpoint condensation pressure 2 Mix mode"
|
|
::= { opCtrlRefrigerantEntry 1220 }
|
|
|
|
unitSetpointCondPressure2DXMode OBJECT-TYPE
|
|
SYNTAX Integer32 (0..400)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit setpoint condensation pressure 2 DX mode"
|
|
::= { opCtrlRefrigerantEntry 1221 }
|
|
|
|
circuit1LPManagementAlarmdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 LP management alarmdelay"
|
|
::= { opCtrlRefrigerantEntry 1509 }
|
|
|
|
circuit1HPManagementAlarmdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 HP management alarmdelay"
|
|
::= { opCtrlRefrigerantEntry 1539 }
|
|
|
|
circuit1CondensireHighAlarmdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 condensing pressure high alarmdelay"
|
|
::= { opCtrlRefrigerantEntry 1545 }
|
|
|
|
circuit2LPManagementAlarmdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 LP management alarmdelay"
|
|
::= { opCtrlRefrigerantEntry 1609 }
|
|
|
|
circuit2HPManagementAlarmdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 HP management alarmdelay"
|
|
::= { opCtrlRefrigerantEntry 1639 }
|
|
|
|
pump1PressureSetpoint OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 pressure setpoint"
|
|
::= { opCtrlRefrigerantEntry 5812 }
|
|
|
|
opCtrlAEoperationTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCtrlAEoperationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCtrlAEoperation"
|
|
::= { opCtrlAEoperation 1 }
|
|
|
|
opCtrlAEoperationEntry OBJECT-TYPE
|
|
SYNTAX OpCtrlAEoperationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCtrlAEoperation"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCtrlAEoperationTable 1 }
|
|
|
|
OpCtrlAEoperationEntry ::= SEQUENCE {
|
|
summerModeTempersetFromSetpoint Integer32,
|
|
antiFreezeModeTesetFromSetpoint Integer32,
|
|
fanStartDelay Unsigned32,
|
|
transitionDelayFcAfFc Unsigned32,
|
|
antiFreezeTemperatureAbsolut Integer32,
|
|
mixedAirTemperatureSetpoint Integer32,
|
|
emergencyHysteresis Integer32,
|
|
freeCoolingStartDelay Unsigned32
|
|
}
|
|
|
|
summerModeTempersetFromSetpoint OBJECT-TYPE
|
|
SYNTAX Integer32 (0..250)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"summer mode temperature offset from setpoint"
|
|
::= { opCtrlAEoperationEntry 10308 }
|
|
|
|
antiFreezeModeTesetFromSetpoint OBJECT-TYPE
|
|
SYNTAX Integer32 (0..250)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"anti-freeze mode temperature offset from setpoint"
|
|
::= { opCtrlAEoperationEntry 10309 }
|
|
|
|
fanStartDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan start delay"
|
|
::= { opCtrlAEoperationEntry 10314 }
|
|
|
|
transitionDelayFcAfFc OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"transition delay (fc-af-fc)"
|
|
::= { opCtrlAEoperationEntry 10317 }
|
|
|
|
antiFreezeTemperatureAbsolut OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"anti-freeze temperature absolut"
|
|
::= { opCtrlAEoperationEntry 10318 }
|
|
|
|
mixedAirTemperatureSetpoint OBJECT-TYPE
|
|
SYNTAX Integer32 (50..500)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"mixed air temperature setpoint"
|
|
::= { opCtrlAEoperationEntry 10319 }
|
|
|
|
emergencyHysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"emergency hysteresis"
|
|
::= { opCtrlAEoperationEntry 10320 }
|
|
|
|
freeCoolingStartDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"free cooling start delay"
|
|
::= { opCtrlAEoperationEntry 10321 }
|
|
|
|
opCtrlEcocoolTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCtrlEcocoolEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCtrlEcocool"
|
|
::= { opCtrlEcocool 1 }
|
|
|
|
opCtrlEcocoolEntry OBJECT-TYPE
|
|
SYNTAX OpCtrlEcocoolEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCtrlEcocool"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCtrlEcocoolTable 1 }
|
|
|
|
OpCtrlEcocoolEntry ::= SEQUENCE {
|
|
eCOCOOL2StartOutdoorTemperature Integer32,
|
|
eCOCOOL2Hysteresis Integer32,
|
|
eCOCOOL2DifferenStartTemperature Integer32,
|
|
eCOCOOL2EmergencyHysteresis Integer32,
|
|
eCOCOOL2AntiFreezeTemperature Integer32,
|
|
eCOCOOL2StartDelay Unsigned32
|
|
}
|
|
|
|
eCOCOOL2StartOutdoorTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO-COOL2 start outdoor temperature"
|
|
::= { opCtrlEcocoolEntry 9938 }
|
|
|
|
eCOCOOL2Hysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO-COOL2 hysteresis"
|
|
::= { opCtrlEcocoolEntry 9939 }
|
|
|
|
eCOCOOL2DifferenStartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO-COOL2 differential start temperature"
|
|
::= { opCtrlEcocoolEntry 9940 }
|
|
|
|
eCOCOOL2EmergencyHysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO-COOL2 emergency hysteresis"
|
|
::= { opCtrlEcocoolEntry 9941 }
|
|
|
|
eCOCOOL2AntiFreezeTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO-COOL2 anti-freeze temperature"
|
|
::= { opCtrlEcocoolEntry 9942 }
|
|
|
|
eCOCOOL2StartDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO-COOL2 start delay"
|
|
::= { opCtrlEcocoolEntry 9943 }
|
|
|
|
opCompressorTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCompressorEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCompressor"
|
|
::= { opCompressor 7 }
|
|
|
|
opCompressorEntry OBJECT-TYPE
|
|
SYNTAX OpCompressorEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCompressor"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCompressorTable 1 }
|
|
|
|
OpCompressorEntry ::= SEQUENCE {
|
|
lowpressureWinterdelay Unsigned32
|
|
}
|
|
|
|
lowpressureWinterdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..300)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"lowpressure winterdelay"
|
|
::= { opCompressorEntry 2249 }
|
|
|
|
opCompressor1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCompressor1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCompressor1"
|
|
::= { opCompressor1 1 }
|
|
|
|
opCompressor1Entry OBJECT-TYPE
|
|
SYNTAX OpCompressor1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCompressor1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCompressor1Table 1 }
|
|
|
|
OpCompressor1Entry ::= SEQUENCE {
|
|
compressor1StartTempSummer Integer32,
|
|
compressor1HysteresisSummer Integer32,
|
|
compressor1StartTempWinter Integer32,
|
|
compressor1HysteresisWinter Integer32,
|
|
compr1AlarmDelay Unsigned32,
|
|
compr1LowPressAlarmDelay Unsigned32,
|
|
compr1Break Unsigned32
|
|
}
|
|
|
|
compressor1StartTempSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor1 start temp. Summer"
|
|
::= { opCompressor1Entry 4416 }
|
|
|
|
compressor1HysteresisSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor1 hysteresis Summer"
|
|
::= { opCompressor1Entry 4417 }
|
|
|
|
compressor1StartTempWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor1 start temp. Winter"
|
|
::= { opCompressor1Entry 4418 }
|
|
|
|
compressor1HysteresisWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor1 hysteresis winter"
|
|
::= { opCompressor1Entry 4419 }
|
|
|
|
compr1AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 alarm delay"
|
|
::= { opCompressor1Entry 4423 }
|
|
|
|
compr1LowPressAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 low press. Alarm delay"
|
|
::= { opCompressor1Entry 4426 }
|
|
|
|
compr1Break OBJECT-TYPE
|
|
SYNTAX Unsigned32 (10..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 break"
|
|
::= { opCompressor1Entry 4427 }
|
|
|
|
opCompressor2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCompressor2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCompressor2"
|
|
::= { opCompressor2 1 }
|
|
|
|
opCompressor2Entry OBJECT-TYPE
|
|
SYNTAX OpCompressor2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCompressor2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCompressor2Table 1 }
|
|
|
|
OpCompressor2Entry ::= SEQUENCE {
|
|
compressor2StartTempSummer Integer32,
|
|
compressor2HysteresisSummer Integer32,
|
|
compressor2StartTempWinter Integer32,
|
|
compressor2HysteresisWinter Integer32,
|
|
compr2AlarmDelay Unsigned32,
|
|
compr2LowPressAlarmDelay Unsigned32,
|
|
compr2Break Unsigned32
|
|
}
|
|
|
|
compressor2StartTempSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 2 start temp. Summer"
|
|
::= { opCompressor2Entry 4516 }
|
|
|
|
compressor2HysteresisSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 2 hysteresis Summer"
|
|
::= { opCompressor2Entry 4517 }
|
|
|
|
compressor2StartTempWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 2 start temp. Winter"
|
|
::= { opCompressor2Entry 4518 }
|
|
|
|
compressor2HysteresisWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 2 hysteresis winter"
|
|
::= { opCompressor2Entry 4519 }
|
|
|
|
compr2AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 alarm delay"
|
|
::= { opCompressor2Entry 4523 }
|
|
|
|
compr2LowPressAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 low press. Alarm delay"
|
|
::= { opCompressor2Entry 4526 }
|
|
|
|
compr2Break OBJECT-TYPE
|
|
SYNTAX Unsigned32 (10..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 break"
|
|
::= { opCompressor2Entry 4527 }
|
|
|
|
opCompressor3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCompressor3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCompressor3"
|
|
::= { opCompressor3 1 }
|
|
|
|
opCompressor3Entry OBJECT-TYPE
|
|
SYNTAX OpCompressor3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCompressor3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCompressor3Table 1 }
|
|
|
|
OpCompressor3Entry ::= SEQUENCE {
|
|
compressor3StartTempSummer Integer32,
|
|
compressor3HysteresisSummer Integer32,
|
|
compressor3StartTempWinter Integer32,
|
|
compressor3HysteresisWinter Integer32,
|
|
compr3AlarmDelay Unsigned32,
|
|
compr3LowPressAlarmDelay Unsigned32,
|
|
compr5LowPressAlarmDelay Unsigned32,
|
|
compr6LowPressAlarmDelay Unsigned32
|
|
}
|
|
|
|
compressor3StartTempSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 3 start temp. Summer"
|
|
::= { opCompressor3Entry 9516 }
|
|
|
|
compressor3HysteresisSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 3 hysteresis Summer"
|
|
::= { opCompressor3Entry 9517 }
|
|
|
|
compressor3StartTempWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 3 start temp. Winter"
|
|
::= { opCompressor3Entry 9518 }
|
|
|
|
compressor3HysteresisWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 3 hysteresis winter"
|
|
::= { opCompressor3Entry 9519 }
|
|
|
|
compr3AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 3 alarm delay"
|
|
::= { opCompressor3Entry 9523 }
|
|
|
|
compr3LowPressAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 low press. Alarm delay"
|
|
::= { opCompressor3Entry 9526 }
|
|
|
|
compr5LowPressAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 low press. Alarm delay"
|
|
::= { opCompressor3Entry 9726 }
|
|
|
|
compr6LowPressAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 low press. Alarm delay"
|
|
::= { opCompressor3Entry 9826 }
|
|
|
|
opCompressor4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCompressor4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCompressor4"
|
|
::= { opCompressor4 1 }
|
|
|
|
opCompressor4Entry OBJECT-TYPE
|
|
SYNTAX OpCompressor4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCompressor4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCompressor4Table 1 }
|
|
|
|
OpCompressor4Entry ::= SEQUENCE {
|
|
compr3Break Unsigned32,
|
|
compressor4StartTempSummer Integer32,
|
|
compressor4HysteresisSummer Integer32,
|
|
compressor4StartTempWinter Integer32,
|
|
compressor4HysteresisWinter Integer32,
|
|
compr4AlarmDelay Unsigned32,
|
|
compr4LowPressDigitalIn Unsigned32,
|
|
compr4LowPressAlarmPriorities Unsigned32,
|
|
compr4LowPressAlarmDelay Unsigned32,
|
|
compr4Break Unsigned32,
|
|
compr5Break Unsigned32,
|
|
compr6Break Unsigned32
|
|
}
|
|
|
|
compr3Break OBJECT-TYPE
|
|
SYNTAX Unsigned32 (10..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 break"
|
|
::= { opCompressor4Entry 9527 }
|
|
|
|
compressor4StartTempSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 4 start temp. Summer"
|
|
::= { opCompressor4Entry 9616 }
|
|
|
|
compressor4HysteresisSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 4 hysteresis Summer"
|
|
::= { opCompressor4Entry 9617 }
|
|
|
|
compressor4StartTempWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 4 start temp. Winter"
|
|
::= { opCompressor4Entry 9618 }
|
|
|
|
compressor4HysteresisWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 4 hysteresis winter"
|
|
::= { opCompressor4Entry 9619 }
|
|
|
|
compr4AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 4 alarm delay"
|
|
::= { opCompressor4Entry 9623 }
|
|
|
|
compr4LowPressDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 low press. Digital in"
|
|
::= { opCompressor4Entry 9624 }
|
|
|
|
compr4LowPressAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 low press. Alarm priorities"
|
|
::= { opCompressor4Entry 9625 }
|
|
|
|
compr4LowPressAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 low press. Alarm delay"
|
|
::= { opCompressor4Entry 9626 }
|
|
|
|
compr4Break OBJECT-TYPE
|
|
SYNTAX Unsigned32 (10..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 break"
|
|
::= { opCompressor4Entry 9627 }
|
|
|
|
compr5Break OBJECT-TYPE
|
|
SYNTAX Unsigned32 (10..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 break"
|
|
::= { opCompressor4Entry 9727 }
|
|
|
|
compr6Break OBJECT-TYPE
|
|
SYNTAX Unsigned32 (10..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 break"
|
|
::= { opCompressor4Entry 9827 }
|
|
|
|
opCompressor5Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCompressor5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCompressor5"
|
|
::= { opCompressor5 1 }
|
|
|
|
opCompressor5Entry OBJECT-TYPE
|
|
SYNTAX OpCompressor5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCompressor5"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCompressor5Table 1 }
|
|
|
|
OpCompressor5Entry ::= SEQUENCE {
|
|
compressor5StartTempSummer Integer32,
|
|
compressor5HysteresisSummer Integer32,
|
|
compressor5StartTempWinter Integer32,
|
|
compressor5HysteresisWinter Integer32,
|
|
compr5AlarmDelay Unsigned32
|
|
}
|
|
|
|
compressor5StartTempSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 5 start temp. Summer"
|
|
::= { opCompressor5Entry 9716 }
|
|
|
|
compressor5HysteresisSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 5 hysteresis Summer"
|
|
::= { opCompressor5Entry 9717 }
|
|
|
|
compressor5StartTempWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 5 start temp. Winter"
|
|
::= { opCompressor5Entry 9718 }
|
|
|
|
compressor5HysteresisWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 5 hysteresis winter"
|
|
::= { opCompressor5Entry 9719 }
|
|
|
|
compr5AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 5 alarm delay"
|
|
::= { opCompressor5Entry 9723 }
|
|
|
|
opCompressor6Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCompressor6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCompressor6"
|
|
::= { opCompressor6 1 }
|
|
|
|
opCompressor6Entry OBJECT-TYPE
|
|
SYNTAX OpCompressor6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCompressor6"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCompressor6Table 1 }
|
|
|
|
OpCompressor6Entry ::= SEQUENCE {
|
|
compressor6StartTempSummer Integer32,
|
|
compressor6HysteresisSummer Integer32,
|
|
compressor6StartTempWinter Integer32,
|
|
compressor6HysteresisWinter Integer32,
|
|
compr6AlarmDelay Unsigned32
|
|
}
|
|
|
|
compressor6StartTempSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 6 start temp. Summer"
|
|
::= { opCompressor6Entry 9816 }
|
|
|
|
compressor6HysteresisSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 6 hysteresis Summer"
|
|
::= { opCompressor6Entry 9817 }
|
|
|
|
compressor6StartTempWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 6 start temp. Winter"
|
|
::= { opCompressor6Entry 9818 }
|
|
|
|
compressor6HysteresisWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 6 hysteresis winter"
|
|
::= { opCompressor6Entry 9819 }
|
|
|
|
compr6AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 6 alarm delay"
|
|
::= { opCompressor6Entry 9823 }
|
|
|
|
opSuctionValveTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSuctionValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSuctionValve"
|
|
::= { opSuctionValve 1 }
|
|
|
|
opSuctionValveEntry OBJECT-TYPE
|
|
SYNTAX OpSuctionValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSuctionValve"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSuctionValveTable 1 }
|
|
|
|
OpSuctionValveEntry ::= SEQUENCE {
|
|
suctionvalve1StartTemperature Integer32,
|
|
suctionvalve1LinearRange Integer32,
|
|
suctionvalve2StartTemperature Integer32,
|
|
suctionvalve2LinearRange Integer32
|
|
}
|
|
|
|
suctionvalve1StartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve1 start temperature"
|
|
::= { opSuctionValveEntry 4608 }
|
|
|
|
suctionvalve1LinearRange OBJECT-TYPE
|
|
SYNTAX Integer32 (5..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve1 linear range"
|
|
::= { opSuctionValveEntry 4609 }
|
|
|
|
suctionvalve2StartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve2 start temperature"
|
|
::= { opSuctionValveEntry 4708 }
|
|
|
|
suctionvalve2LinearRange OBJECT-TYPE
|
|
SYNTAX Integer32 (5..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve2 linear range"
|
|
::= { opSuctionValveEntry 4709 }
|
|
|
|
opGECWValveTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpGECWValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opGECWValve"
|
|
::= { opGECWValve 1 }
|
|
|
|
opGECWValveEntry OBJECT-TYPE
|
|
SYNTAX OpGECWValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opGECWValve"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opGECWValveTable 1 }
|
|
|
|
OpGECWValveEntry ::= SEQUENCE {
|
|
gECWValveStartTemperature1 Integer32,
|
|
gECWValveLinearRange1 Integer32,
|
|
gECWValveGEOffTempAbsolute Integer32,
|
|
gECWValveStartTemperature2 Integer32,
|
|
gECWValveLinearRange2 Integer32,
|
|
gECWValveChillerSaver100Jump Unsigned32,
|
|
gECWValveChillerSaverSignalStart Integer32,
|
|
gECWValveChillerSaverSignalEnd Integer32,
|
|
gECWValveGEOffTempRelative Integer32
|
|
}
|
|
|
|
gECWValveStartTemperature1 OBJECT-TYPE
|
|
SYNTAX Integer32 (-99..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve start temperature 1"
|
|
::= { opGECWValveEntry 5208 }
|
|
|
|
gECWValveLinearRange1 OBJECT-TYPE
|
|
SYNTAX Integer32 (5..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve linear range 1"
|
|
::= { opGECWValveEntry 5209 }
|
|
|
|
gECWValveGEOffTempAbsolute OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve GE-off-temp absolute"
|
|
::= { opGECWValveEntry 5211 }
|
|
|
|
gECWValveStartTemperature2 OBJECT-TYPE
|
|
SYNTAX Integer32 (-99..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve start temperature 2"
|
|
::= { opGECWValveEntry 5219 }
|
|
|
|
gECWValveLinearRange2 OBJECT-TYPE
|
|
SYNTAX Integer32 (5..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve linear range 2"
|
|
::= { opGECWValveEntry 5220 }
|
|
|
|
gECWValveChillerSaver100Jump OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve ChillerSaver 100% jump"
|
|
::= { opGECWValveEntry 5238 }
|
|
|
|
gECWValveChillerSaverSignalStart OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve ChillerSaver signal start"
|
|
::= { opGECWValveEntry 5240 }
|
|
|
|
gECWValveChillerSaverSignalEnd OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve ChillerSaver signal end"
|
|
::= { opGECWValveEntry 5241 }
|
|
|
|
gECWValveGEOffTempRelative OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve GE-off-temp relative"
|
|
::= { opGECWValveEntry 5244 }
|
|
|
|
opEEV1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpEEV1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opEEV1"
|
|
::= { opEEV1 1 }
|
|
|
|
opEEV1Entry OBJECT-TYPE
|
|
SYNTAX OpEEV1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opEEV1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opEEV1Table 1 }
|
|
|
|
OpEEV1Entry ::= SEQUENCE {
|
|
eev1SuperheatSetpointAlcoVCM Integer32,
|
|
eev1DehumidificatSetpointAlcoVCM Integer32
|
|
}
|
|
|
|
eev1SuperheatSetpointAlcoVCM OBJECT-TYPE
|
|
SYNTAX Integer32 (5..300)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 superheat setpoint (Alco VCM)"
|
|
::= { opEEV1Entry 8719 }
|
|
|
|
eev1DehumidificatSetpointAlcoVCM OBJECT-TYPE
|
|
SYNTAX Integer32 (5..300)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 dehumidification superheat setpoint (Alco VCM)"
|
|
::= { opEEV1Entry 8720 }
|
|
|
|
opEEV2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpEEV2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opEEV2"
|
|
::= { opEEV2 1 }
|
|
|
|
opEEV2Entry OBJECT-TYPE
|
|
SYNTAX OpEEV2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opEEV2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opEEV2Table 1 }
|
|
|
|
OpEEV2Entry ::= SEQUENCE {
|
|
eev2SuperheatSetpoint Integer32,
|
|
eev2DehumidificaperheatSetpoint Integer32
|
|
}
|
|
|
|
eev2SuperheatSetpoint OBJECT-TYPE
|
|
SYNTAX Integer32 (5..300)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 superheat setpoint"
|
|
::= { opEEV2Entry 8819 }
|
|
|
|
eev2DehumidificaperheatSetpoint OBJECT-TYPE
|
|
SYNTAX Integer32 (5..300)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 dehumidification superheat setpoint"
|
|
::= { opEEV2Entry 8820 }
|
|
|
|
opChillerFreecoolingValveTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpChillerFreecoolingValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opChillerFreecoolingValve"
|
|
::= { opChillerFreecoolingValve 1 }
|
|
|
|
opChillerFreecoolingValveEntry OBJECT-TYPE
|
|
SYNTAX OpChillerFreecoolingValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opChillerFreecoolingValve"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opChillerFreecoolingValveTable 1 }
|
|
|
|
OpChillerFreecoolingValveEntry ::= SEQUENCE {
|
|
freecoolingStartTemperature Integer32,
|
|
freecoolingHysteresis Integer32,
|
|
freecoolingStarteratureDrycooler Integer32,
|
|
freecoolingHysteresisDrycooler Integer32
|
|
}
|
|
|
|
freecoolingStartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling start temperature"
|
|
::= { opChillerFreecoolingValveEntry 10108 }
|
|
|
|
freecoolingHysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling hysteresis"
|
|
::= { opChillerFreecoolingValveEntry 10109 }
|
|
|
|
freecoolingStarteratureDrycooler OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling start temperature drycooler"
|
|
::= { opChillerFreecoolingValveEntry 10113 }
|
|
|
|
freecoolingHysteresisDrycooler OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling hysteresis drycooler"
|
|
::= { opChillerFreecoolingValveEntry 10114 }
|
|
|
|
opDrycooler1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpDrycooler1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opDrycooler1"
|
|
::= { opDrycooler1 1 }
|
|
|
|
opDrycooler1Entry OBJECT-TYPE
|
|
SYNTAX OpDrycooler1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opDrycooler1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opDrycooler1Table 1 }
|
|
|
|
OpDrycooler1Entry ::= SEQUENCE {
|
|
drycooler1StartTemperatureWinter Integer32,
|
|
drycooler1StartTemperatureSummer Integer32,
|
|
drycooler1Hysteresis Integer32,
|
|
drycooler1AlarmDelay Unsigned32
|
|
}
|
|
|
|
drycooler1StartTemperatureWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (50..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 start-temperature winter"
|
|
::= { opDrycooler1Entry 5408 }
|
|
|
|
drycooler1StartTemperatureSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (100..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 start-temperature summer"
|
|
::= { opDrycooler1Entry 5409 }
|
|
|
|
drycooler1Hysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (10..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 hysteresis"
|
|
::= { opDrycooler1Entry 5410 }
|
|
|
|
drycooler1AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 alarm delay"
|
|
::= { opDrycooler1Entry 5414 }
|
|
|
|
opDrycooler2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpDrycooler2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opDrycooler2"
|
|
::= { opDrycooler2 1 }
|
|
|
|
opDrycooler2Entry OBJECT-TYPE
|
|
SYNTAX OpDrycooler2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opDrycooler2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opDrycooler2Table 1 }
|
|
|
|
OpDrycooler2Entry ::= SEQUENCE {
|
|
drycooler2StartTemperatureWinter Integer32,
|
|
drycooler2StartTemperatureSummer Integer32,
|
|
drycooler2Hysteresis Integer32,
|
|
drycooler2AlarmDelay Unsigned32
|
|
}
|
|
|
|
drycooler2StartTemperatureWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (50..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler2 start-temperature winter"
|
|
::= { opDrycooler2Entry 5508 }
|
|
|
|
drycooler2StartTemperatureSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (100..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler2 start-temperature summer"
|
|
::= { opDrycooler2Entry 5509 }
|
|
|
|
drycooler2Hysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (10..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler2 hysteresis"
|
|
::= { opDrycooler2Entry 5510 }
|
|
|
|
drycooler2AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler2 alarm delay"
|
|
::= { opDrycooler2Entry 5514 }
|
|
|
|
opDrycooler3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpDrycooler3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opDrycooler3"
|
|
::= { opDrycooler3 1 }
|
|
|
|
opDrycooler3Entry OBJECT-TYPE
|
|
SYNTAX OpDrycooler3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opDrycooler3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opDrycooler3Table 1 }
|
|
|
|
OpDrycooler3Entry ::= SEQUENCE {
|
|
drycooler3StartTemperatureWinter Integer32,
|
|
drycooler3StartTemperatureSummer Integer32,
|
|
drycooler3Hysteresis Integer32,
|
|
drycooler3AlarmDelay Unsigned32
|
|
}
|
|
|
|
drycooler3StartTemperatureWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (50..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler3 start-temperature winter"
|
|
::= { opDrycooler3Entry 5608 }
|
|
|
|
drycooler3StartTemperatureSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (100..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler3 start-temperature summer"
|
|
::= { opDrycooler3Entry 5609 }
|
|
|
|
drycooler3Hysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (10..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler3 hysteresis"
|
|
::= { opDrycooler3Entry 5610 }
|
|
|
|
drycooler3AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler3 alarm delay"
|
|
::= { opDrycooler3Entry 5614 }
|
|
|
|
opDrycooler4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpDrycooler4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opDrycooler4"
|
|
::= { opDrycooler4 1 }
|
|
|
|
opDrycooler4Entry OBJECT-TYPE
|
|
SYNTAX OpDrycooler4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opDrycooler4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opDrycooler4Table 1 }
|
|
|
|
OpDrycooler4Entry ::= SEQUENCE {
|
|
drycooler4StartTemperatureWinter Integer32,
|
|
drycooler4StartTemperatureSummer Integer32,
|
|
drycooler4Hysteresis Integer32,
|
|
drycooler4AlarmDelay Unsigned32
|
|
}
|
|
|
|
drycooler4StartTemperatureWinter OBJECT-TYPE
|
|
SYNTAX Integer32 (50..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler4 start-temperature winter"
|
|
::= { opDrycooler4Entry 5708 }
|
|
|
|
drycooler4StartTemperatureSummer OBJECT-TYPE
|
|
SYNTAX Integer32 (100..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler4 start-temperature summer"
|
|
::= { opDrycooler4Entry 5709 }
|
|
|
|
drycooler4Hysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (10..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler4 hysteresis"
|
|
::= { opDrycooler4Entry 5710 }
|
|
|
|
drycooler4AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler4 alarm delay"
|
|
::= { opDrycooler4Entry 5714 }
|
|
|
|
opPump1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpPump1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opPump1"
|
|
::= { opPump1 1 }
|
|
|
|
opPump1Entry OBJECT-TYPE
|
|
SYNTAX OpPump1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opPump1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opPump1Table 1 }
|
|
|
|
OpPump1Entry ::= SEQUENCE {
|
|
pump1StartTemperature Integer32,
|
|
pump1Hysteresis Integer32,
|
|
pump1LinearRange Integer32,
|
|
pump1AlarmDelay Unsigned32,
|
|
pump1SetpointSpeed Unsigned32
|
|
}
|
|
|
|
pump1StartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 start-temperature"
|
|
::= { opPump1Entry 5809 }
|
|
|
|
pump1Hysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 hysteresis"
|
|
::= { opPump1Entry 5810 }
|
|
|
|
pump1LinearRange OBJECT-TYPE
|
|
SYNTAX Integer32 (5..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 linear range"
|
|
::= { opPump1Entry 5811 }
|
|
|
|
pump1AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 alarm delay"
|
|
::= { opPump1Entry 5817 }
|
|
|
|
pump1SetpointSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (50..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 setpoint speed"
|
|
::= { opPump1Entry 5830 }
|
|
|
|
opPump2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpPump2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opPump2"
|
|
::= { opPump2 1 }
|
|
|
|
opPump2Entry OBJECT-TYPE
|
|
SYNTAX OpPump2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opPump2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opPump2Table 1 }
|
|
|
|
OpPump2Entry ::= SEQUENCE {
|
|
pump2StartTemperature Integer32,
|
|
pump2Hysteresis Integer32,
|
|
pump2LinearRange Integer32,
|
|
pump2AlarmDelay Unsigned32,
|
|
pump2SetpointSpeed Unsigned32
|
|
}
|
|
|
|
pump2StartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 start-temperature"
|
|
::= { opPump2Entry 5909 }
|
|
|
|
pump2Hysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 hysteresis"
|
|
::= { opPump2Entry 5910 }
|
|
|
|
pump2LinearRange OBJECT-TYPE
|
|
SYNTAX Integer32 (5..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 linear range"
|
|
::= { opPump2Entry 5911 }
|
|
|
|
pump2AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 alarm delay"
|
|
::= { opPump2Entry 5917 }
|
|
|
|
pump2SetpointSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (50..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 setpoint speed"
|
|
::= { opPump2Entry 5930 }
|
|
|
|
opPump3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpPump3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opPump3"
|
|
::= { opPump3 1 }
|
|
|
|
opPump3Entry OBJECT-TYPE
|
|
SYNTAX OpPump3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opPump3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opPump3Table 1 }
|
|
|
|
OpPump3Entry ::= SEQUENCE {
|
|
pump3StartTemperature Integer32,
|
|
pump3Hysteresis Integer32,
|
|
pump3LinearRange Integer32,
|
|
pump3AlarmDelay Unsigned32,
|
|
pump3SetpointSpeed Unsigned32
|
|
}
|
|
|
|
pump3StartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 start-temperature"
|
|
::= { opPump3Entry 6009 }
|
|
|
|
pump3Hysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 hysteresis"
|
|
::= { opPump3Entry 6010 }
|
|
|
|
pump3LinearRange OBJECT-TYPE
|
|
SYNTAX Integer32 (5..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 linear range"
|
|
::= { opPump3Entry 6011 }
|
|
|
|
pump3AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 alarm delay"
|
|
::= { opPump3Entry 6017 }
|
|
|
|
pump3SetpointSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (50..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 setpoint speed"
|
|
::= { opPump3Entry 6030 }
|
|
|
|
opPump4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpPump4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opPump4"
|
|
::= { opPump4 1 }
|
|
|
|
opPump4Entry OBJECT-TYPE
|
|
SYNTAX OpPump4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opPump4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opPump4Table 1 }
|
|
|
|
OpPump4Entry ::= SEQUENCE {
|
|
pump4StartTemperature Integer32,
|
|
pump4Hysteresis Integer32,
|
|
pump4LinearRange Integer32,
|
|
pump4AlarmDelay Unsigned32,
|
|
pump4SetpointSpeed Unsigned32
|
|
}
|
|
|
|
pump4StartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 start-temperature"
|
|
::= { opPump4Entry 6109 }
|
|
|
|
pump4Hysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 hysteresis"
|
|
::= { opPump4Entry 6110 }
|
|
|
|
pump4LinearRange OBJECT-TYPE
|
|
SYNTAX Integer32 (5..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 linear range"
|
|
::= { opPump4Entry 6111 }
|
|
|
|
pump4AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 alarm delay"
|
|
::= { opPump4Entry 6117 }
|
|
|
|
pump4SetpointSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (50..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 setpoint speed"
|
|
::= { opPump4Entry 6130 }
|
|
|
|
opEcoLouverTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpEcoLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opEcoLouver"
|
|
::= { opEcoLouver 1 }
|
|
|
|
opEcoLouverEntry OBJECT-TYPE
|
|
SYNTAX OpEcoLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opEcoLouver"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opEcoLouverTable 1 }
|
|
|
|
OpEcoLouverEntry ::= SEQUENCE {
|
|
eCOLouverStartOutdoorTemperature Integer32,
|
|
eCOLouverHysteresis Integer32,
|
|
eCOLouverStartTemperature Integer32,
|
|
eCOLouverLinearRange Integer32
|
|
}
|
|
|
|
eCOLouverStartOutdoorTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO louver start outdoor temperature"
|
|
::= { opEcoLouverEntry 9908 }
|
|
|
|
eCOLouverHysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO louver hysteresis"
|
|
::= { opEcoLouverEntry 9909 }
|
|
|
|
eCOLouverStartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-99..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO louver start temperature"
|
|
::= { opEcoLouverEntry 9910 }
|
|
|
|
eCOLouverLinearRange OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO louver linear range"
|
|
::= { opEcoLouverEntry 9911 }
|
|
|
|
opCondensorfanTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpCondensorfanEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opCondensorfan"
|
|
::= { opCondensorfan 1 }
|
|
|
|
opCondensorfanEntry OBJECT-TYPE
|
|
SYNTAX OpCondensorfanEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opCondensorfan"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opCondensorfanTable 1 }
|
|
|
|
OpCondensorfanEntry ::= SEQUENCE {
|
|
condFan1AlarmDelay Unsigned32,
|
|
condFan2AlarmDelay Unsigned32
|
|
}
|
|
|
|
condFan1AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 alarm delay"
|
|
::= { opCondensorfanEntry 10823 }
|
|
|
|
condFan2AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 alarm delay"
|
|
::= { opCondensorfanEntry 10923 }
|
|
|
|
opEHeat1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpEHeat1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opEHeat1"
|
|
::= { opEHeat1 1 }
|
|
|
|
opEHeat1Entry OBJECT-TYPE
|
|
SYNTAX OpEHeat1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opEHeat1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opEHeat1Table 1 }
|
|
|
|
OpEHeat1Entry ::= SEQUENCE {
|
|
elecHeating1StartTemperature Integer32,
|
|
elecHeating1Hysteresis Integer32,
|
|
elecHeating1LinearRange Integer32,
|
|
elecHeating1AlarmDelay Unsigned32
|
|
}
|
|
|
|
elecHeating1StartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 start temperature"
|
|
::= { opEHeat1Entry 4809 }
|
|
|
|
elecHeating1Hysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 hysteresis"
|
|
::= { opEHeat1Entry 4810 }
|
|
|
|
elecHeating1LinearRange OBJECT-TYPE
|
|
SYNTAX Integer32 (3..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 linear range"
|
|
::= { opEHeat1Entry 4811 }
|
|
|
|
elecHeating1AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 alarm delay"
|
|
::= { opEHeat1Entry 4815 }
|
|
|
|
opEHeat2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpEHeat2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opEHeat2"
|
|
::= { opEHeat2 1 }
|
|
|
|
opEHeat2Entry OBJECT-TYPE
|
|
SYNTAX OpEHeat2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opEHeat2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opEHeat2Table 1 }
|
|
|
|
OpEHeat2Entry ::= SEQUENCE {
|
|
elecHeating2StartTemperature Integer32,
|
|
elecHeating2Hysteresis Integer32,
|
|
elecHeating2LinearRange Integer32,
|
|
elecHeating2AlarmDelay Unsigned32
|
|
}
|
|
|
|
elecHeating2StartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 start temperature"
|
|
::= { opEHeat2Entry 4909 }
|
|
|
|
elecHeating2Hysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 hysteresis"
|
|
::= { opEHeat2Entry 4910 }
|
|
|
|
elecHeating2LinearRange OBJECT-TYPE
|
|
SYNTAX Integer32 (3..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 linear range"
|
|
::= { opEHeat2Entry 4911 }
|
|
|
|
elecHeating2AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 alarm delay"
|
|
::= { opEHeat2Entry 4915 }
|
|
|
|
opEHeat3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpEHeat3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opEHeat3"
|
|
::= { opEHeat3 1 }
|
|
|
|
opEHeat3Entry OBJECT-TYPE
|
|
SYNTAX OpEHeat3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opEHeat3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opEHeat3Table 1 }
|
|
|
|
OpEHeat3Entry ::= SEQUENCE {
|
|
elecHeating3StartTemperature Integer32,
|
|
elecHeating3Hysteresis Integer32,
|
|
elecHeating3LinearRange Integer32,
|
|
elecHeating3AlarmDelay Unsigned32
|
|
}
|
|
|
|
elecHeating3StartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 start temperature"
|
|
::= { opEHeat3Entry 5009 }
|
|
|
|
elecHeating3Hysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 hysteresis"
|
|
::= { opEHeat3Entry 5010 }
|
|
|
|
elecHeating3LinearRange OBJECT-TYPE
|
|
SYNTAX Integer32 (3..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 linear range"
|
|
::= { opEHeat3Entry 5011 }
|
|
|
|
elecHeating3AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 alarm delay"
|
|
::= { opEHeat3Entry 5015 }
|
|
|
|
opEHeat4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpEHeat4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opEHeat4"
|
|
::= { opEHeat4 1 }
|
|
|
|
opEHeat4Entry OBJECT-TYPE
|
|
SYNTAX OpEHeat4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opEHeat4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opEHeat4Table 1 }
|
|
|
|
OpEHeat4Entry ::= SEQUENCE {
|
|
elecHeating4StartTemperature Integer32,
|
|
elecHeating4Hysteresis Integer32,
|
|
elecHeating4LinearRange Integer32,
|
|
elecHeating4AlarmDelay Unsigned32
|
|
}
|
|
|
|
elecHeating4StartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 start temperature"
|
|
::= { opEHeat4Entry 5109 }
|
|
|
|
elecHeating4Hysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 hysteresis"
|
|
::= { opEHeat4Entry 5110 }
|
|
|
|
elecHeating4LinearRange OBJECT-TYPE
|
|
SYNTAX Integer32 (3..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 linear range"
|
|
::= { opEHeat4Entry 5111 }
|
|
|
|
elecHeating4AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 alarm delay"
|
|
::= { opEHeat4Entry 5115 }
|
|
|
|
opHotgasHeatTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpHotgasHeatEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opHotgasHeat"
|
|
::= { opHotgasHeat 1 }
|
|
|
|
opHotgasHeatEntry OBJECT-TYPE
|
|
SYNTAX OpHotgasHeatEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opHotgasHeat"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opHotgasHeatTable 1 }
|
|
|
|
OpHotgasHeatEntry ::= SEQUENCE {
|
|
hotgasHeatingStartTemperature Integer32,
|
|
hotgasHeatingHysteresis Integer32,
|
|
hotgasHeatingAlarmDelay Unsigned32
|
|
}
|
|
|
|
hotgasHeatingStartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hotgas-heating start temperature"
|
|
::= { opHotgasHeatEntry 6208 }
|
|
|
|
hotgasHeatingHysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hotgas-heating hysteresis"
|
|
::= { opHotgasHeatEntry 6209 }
|
|
|
|
hotgasHeatingAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hotgas-heating alarm delay"
|
|
::= { opHotgasHeatEntry 6213 }
|
|
|
|
opHwrValveTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpHwrValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opHwrValve"
|
|
::= { opHwrValve 1 }
|
|
|
|
opHwrValveEntry OBJECT-TYPE
|
|
SYNTAX OpHwrValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opHwrValve"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opHwrValveTable 1 }
|
|
|
|
OpHwrValveEntry ::= SEQUENCE {
|
|
pWWHeatingStartTemperature Integer32,
|
|
pWWHeatingHysteresis Integer32,
|
|
pWWHeatingLinearRange Integer32
|
|
}
|
|
|
|
pWWHeatingStartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PWW-heating start-temperature "
|
|
::= { opHwrValveEntry 6309 }
|
|
|
|
pWWHeatingHysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PWW-heating hysteresis"
|
|
::= { opHwrValveEntry 6311 }
|
|
|
|
pWWHeatingLinearRange OBJECT-TYPE
|
|
SYNTAX Integer32 (5..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PWW-heating linear range"
|
|
::= { opHwrValveEntry 6312 }
|
|
|
|
opHumidifierTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpHumidifierEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opHumidifier"
|
|
::= { opHumidifier 1 }
|
|
|
|
opHumidifierEntry OBJECT-TYPE
|
|
SYNTAX OpHumidifierEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opHumidifier"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opHumidifierTable 1 }
|
|
|
|
OpHumidifierEntry ::= SEQUENCE {
|
|
humidifier1StartHumidity Unsigned32,
|
|
humidifier1StartHumidity2 Unsigned32,
|
|
humidifier1Hysteresis Unsigned32,
|
|
humidifier1LinearRange Unsigned32,
|
|
humidifier1AlarmDelay Unsigned32,
|
|
humidifier1AlarmDelay5uS Unsigned32,
|
|
humidifier1AlarmDelay20uS Unsigned32,
|
|
humidifier2StartHumidity Unsigned32,
|
|
humidifier2StartHumidity2 Unsigned32,
|
|
humidifier2Hysteresis Unsigned32,
|
|
humidifier2LinearRange Unsigned32,
|
|
humidifier2AlarmDelay Unsigned32,
|
|
humidifier2AlarmDelay5uS Unsigned32,
|
|
humidifier2AlarmDelay20uS Unsigned32,
|
|
humidifier3StartHumidity Unsigned32,
|
|
humidifier3StartHumidity2 Unsigned32,
|
|
humidifier3Hysteresis Unsigned32,
|
|
humidifier3LinearRange Unsigned32,
|
|
humidifier3AlarmDelay Unsigned32,
|
|
humidifier3AlarmDelay5uS Unsigned32,
|
|
humidifier3AlarmDelay20uS Unsigned32
|
|
}
|
|
|
|
humidifier1StartHumidity OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..200)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 start-humidity"
|
|
::= { opHumidifierEntry 6417 }
|
|
|
|
humidifier1StartHumidity2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 start-humidity 2"
|
|
::= { opHumidifierEntry 6418 }
|
|
|
|
humidifier1Hysteresis OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..200)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 hysteresis"
|
|
::= { opHumidifierEntry 6419 }
|
|
|
|
humidifier1LinearRange OBJECT-TYPE
|
|
SYNTAX Unsigned32 (5..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 linear range"
|
|
::= { opHumidifierEntry 6420 }
|
|
|
|
humidifier1AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 alarm delay"
|
|
::= { opHumidifierEntry 6425 }
|
|
|
|
humidifier1AlarmDelay5uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 alarm delay 5uS"
|
|
::= { opHumidifierEntry 6431 }
|
|
|
|
humidifier1AlarmDelay20uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 alarm delay 20uS"
|
|
::= { opHumidifierEntry 6432 }
|
|
|
|
humidifier2StartHumidity OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 start-humidity"
|
|
::= { opHumidifierEntry 6517 }
|
|
|
|
humidifier2StartHumidity2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 start-humidity 2"
|
|
::= { opHumidifierEntry 6518 }
|
|
|
|
humidifier2Hysteresis OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 hysteresis"
|
|
::= { opHumidifierEntry 6519 }
|
|
|
|
humidifier2LinearRange OBJECT-TYPE
|
|
SYNTAX Unsigned32 (5..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 linear range"
|
|
::= { opHumidifierEntry 6520 }
|
|
|
|
humidifier2AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 alarm delay"
|
|
::= { opHumidifierEntry 6525 }
|
|
|
|
humidifier2AlarmDelay5uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 alarm delay 5uS"
|
|
::= { opHumidifierEntry 6531 }
|
|
|
|
humidifier2AlarmDelay20uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 alarm delay 20uS"
|
|
::= { opHumidifierEntry 6532 }
|
|
|
|
humidifier3StartHumidity OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 start-humidity"
|
|
::= { opHumidifierEntry 6617 }
|
|
|
|
humidifier3StartHumidity2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 start-humidity 2"
|
|
::= { opHumidifierEntry 6618 }
|
|
|
|
humidifier3Hysteresis OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 hysteresis"
|
|
::= { opHumidifierEntry 6619 }
|
|
|
|
humidifier3LinearRange OBJECT-TYPE
|
|
SYNTAX Unsigned32 (5..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 linear range"
|
|
::= { opHumidifierEntry 6620 }
|
|
|
|
humidifier3AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 alarm delay"
|
|
::= { opHumidifierEntry 6625 }
|
|
|
|
humidifier3AlarmDelay5uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 alarm delay 5uS"
|
|
::= { opHumidifierEntry 6631 }
|
|
|
|
humidifier3AlarmDelay20uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2550)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 alarm delay 20uS"
|
|
::= { opHumidifierEntry 6632 }
|
|
|
|
opDehumidificationTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpDehumidificationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opDehumidification"
|
|
::= { opDehumidification 1 }
|
|
|
|
opDehumidificationEntry OBJECT-TYPE
|
|
SYNTAX OpDehumidificationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opDehumidification"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opDehumidificationTable 1 }
|
|
|
|
OpDehumidificationEntry ::= SEQUENCE {
|
|
dehumidifierStartHumidity Integer32,
|
|
dehumidificationHysteresis Integer32,
|
|
dehumidifierMinWaterTemp Integer32,
|
|
dehumidifierMaxWaterTemp Integer32
|
|
}
|
|
|
|
dehumidifierStartHumidity OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"dehumidifier start-humidity"
|
|
::= { opDehumidificationEntry 6809 }
|
|
|
|
dehumidificationHysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..300)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"dehumidification hysteresis"
|
|
::= { opDehumidificationEntry 6811 }
|
|
|
|
dehumidifierMinWaterTemp OBJECT-TYPE
|
|
SYNTAX Integer32 (-200..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"dehumidifier min water temp"
|
|
::= { opDehumidificationEntry 6817 }
|
|
|
|
dehumidifierMaxWaterTemp OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"dehumidifier max water temp"
|
|
::= { opDehumidificationEntry 6818 }
|
|
|
|
opFanTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpFanEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opFan"
|
|
::= { opFan 1 }
|
|
|
|
opFanEntry OBJECT-TYPE
|
|
SYNTAX OpFanEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opFan"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opFanTable 1 }
|
|
|
|
OpFanEntry ::= SEQUENCE {
|
|
fan1SpeedNmax Unsigned32,
|
|
fan1CWModeNmax Unsigned32,
|
|
fan1StartTemp Integer32,
|
|
fan1StartSpeed Unsigned32,
|
|
fan1AlarmDelay Unsigned32,
|
|
fan1FilterAlarmDelay Unsigned32,
|
|
fan1SpeedNmaxInEFCMIXModeForDFC Unsigned32,
|
|
fan2SpeedNmax Unsigned32,
|
|
fan2CWModeNmax Unsigned32,
|
|
fan2StartTemp Integer32,
|
|
fan2StartSpeed Unsigned32,
|
|
fan2AlarmDelay Unsigned32,
|
|
fan2FilterAlarmDelay Unsigned32,
|
|
fan2SpeedNmaxInEFCMIXModeForDFC Unsigned32,
|
|
fan3SpeedNmax Unsigned32,
|
|
fan3CWModeNmax Unsigned32,
|
|
fan3StartTemp Integer32,
|
|
fan3StartSpeed Unsigned32,
|
|
fan3AlarmDelay Unsigned32,
|
|
fan3FilterAlarmDelay Unsigned32,
|
|
fan3SpeedNmaxInEFCMIXModeForDFC Unsigned32
|
|
}
|
|
|
|
fan1SpeedNmax OBJECT-TYPE
|
|
SYNTAX Unsigned32 (40..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 speed nmax."
|
|
::= { opFanEntry 6909 }
|
|
|
|
fan1CWModeNmax OBJECT-TYPE
|
|
SYNTAX Unsigned32 (40..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 CW-mode nmax"
|
|
::= { opFanEntry 6910 }
|
|
|
|
fan1StartTemp OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 start temp"
|
|
::= { opFanEntry 6913 }
|
|
|
|
fan1StartSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 start speed"
|
|
::= { opFanEntry 6914 }
|
|
|
|
fan1AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 alarm delay"
|
|
::= { opFanEntry 6927 }
|
|
|
|
fan1FilterAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 filter alarm delay"
|
|
::= { opFanEntry 6930 }
|
|
|
|
fan1SpeedNmaxInEFCMIXModeForDFC OBJECT-TYPE
|
|
SYNTAX Unsigned32 (40..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 speed nmax. in EFC/MIX mode for DFC"
|
|
::= { opFanEntry 6947 }
|
|
|
|
fan2SpeedNmax OBJECT-TYPE
|
|
SYNTAX Unsigned32 (40..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 speed nmax."
|
|
::= { opFanEntry 7009 }
|
|
|
|
fan2CWModeNmax OBJECT-TYPE
|
|
SYNTAX Unsigned32 (40..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 CW-mode nmax"
|
|
::= { opFanEntry 7010 }
|
|
|
|
fan2StartTemp OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 start temp"
|
|
::= { opFanEntry 7013 }
|
|
|
|
fan2StartSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 start speed"
|
|
::= { opFanEntry 7014 }
|
|
|
|
fan2AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 alarm delay"
|
|
::= { opFanEntry 7027 }
|
|
|
|
fan2FilterAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 filter alarm delay"
|
|
::= { opFanEntry 7030 }
|
|
|
|
fan2SpeedNmaxInEFCMIXModeForDFC OBJECT-TYPE
|
|
SYNTAX Unsigned32 (40..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 speed nmax. in EFC/MIX mode for DFC"
|
|
::= { opFanEntry 7047 }
|
|
|
|
fan3SpeedNmax OBJECT-TYPE
|
|
SYNTAX Unsigned32 (40..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 speed nmax."
|
|
::= { opFanEntry 7109 }
|
|
|
|
fan3CWModeNmax OBJECT-TYPE
|
|
SYNTAX Unsigned32 (40..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 CW-mode nmax"
|
|
::= { opFanEntry 7110 }
|
|
|
|
fan3StartTemp OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 start temp"
|
|
::= { opFanEntry 7113 }
|
|
|
|
fan3StartSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 start speed"
|
|
::= { opFanEntry 7114 }
|
|
|
|
fan3AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 alarm delay"
|
|
::= { opFanEntry 7127 }
|
|
|
|
fan3FilterAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 filter alarm delay"
|
|
::= { opFanEntry 7130 }
|
|
|
|
fan3SpeedNmaxInEFCMIXModeForDFC OBJECT-TYPE
|
|
SYNTAX Unsigned32 (40..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 speed nmax. in EFC/MIX mode for DFC"
|
|
::= { opFanEntry 7147 }
|
|
|
|
opAirLouverTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpAirLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opAirLouver"
|
|
::= { opAirLouver 1 }
|
|
|
|
opAirLouverEntry OBJECT-TYPE
|
|
SYNTAX OpAirLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opAirLouver"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opAirLouverTable 1 }
|
|
|
|
OpAirLouverEntry ::= SEQUENCE {
|
|
louver1Delay Unsigned32,
|
|
louver2Delay Unsigned32,
|
|
louver3Delay Unsigned32
|
|
}
|
|
|
|
louver1Delay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..180)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver1 delay"
|
|
::= { opAirLouverEntry 7208 }
|
|
|
|
louver2Delay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..180)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver2 delay"
|
|
::= { opAirLouverEntry 7308 }
|
|
|
|
louver3Delay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..180)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver3 delay"
|
|
::= { opAirLouverEntry 7408 }
|
|
|
|
opAEfilterTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpAEfilterEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opAEfilter"
|
|
::= { opAEfilter 1 }
|
|
|
|
opAEfilterEntry OBJECT-TYPE
|
|
SYNTAX OpAEfilterEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opAEfilter"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opAEfilterTable 1 }
|
|
|
|
OpAEfilterEntry ::= SEQUENCE {
|
|
filter1MaxPressureDrop Unsigned32,
|
|
filter1AlarmDelay Unsigned32,
|
|
filter2MaxPressureDrop Unsigned32,
|
|
filter3MaxPressureDrop Unsigned32
|
|
}
|
|
|
|
filter1MaxPressureDrop OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 1 max pressure drop"
|
|
::= { opAEfilterEntry 11009 }
|
|
|
|
filter1AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 1 alarm delay"
|
|
::= { opAEfilterEntry 11012 }
|
|
|
|
filter2MaxPressureDrop OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 2 max pressure drop"
|
|
::= { opAEfilterEntry 11109 }
|
|
|
|
filter3MaxPressureDrop OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 3 max pressure drop"
|
|
::= { opAEfilterEntry 11209 }
|
|
|
|
opSensor1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor1"
|
|
::= { opSensor1 1 }
|
|
|
|
opSensor1Entry OBJECT-TYPE
|
|
SYNTAX OpSensor1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor1Table 1 }
|
|
|
|
OpSensor1Entry ::= SEQUENCE {
|
|
sensor1AlarmDelay Unsigned32,
|
|
sensor1FailureAlarmDelay Unsigned32,
|
|
sensor1AdjustOffset Integer32,
|
|
sensor1CurrentPhysValue Integer32,
|
|
sensor1CurrentValue Integer32,
|
|
sensor1BmsValue Integer32
|
|
}
|
|
|
|
sensor1AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 alarm delay"
|
|
::= { opSensor1Entry 2317 }
|
|
|
|
sensor1FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 failure alarm delay"
|
|
::= { opSensor1Entry 2319 }
|
|
|
|
sensor1AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 adjust offset"
|
|
::= { opSensor1Entry 2320 }
|
|
|
|
sensor1CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 current phys. value"
|
|
::= { opSensor1Entry 2321 }
|
|
|
|
sensor1CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 current value"
|
|
::= { opSensor1Entry 2322 }
|
|
|
|
sensor1BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 bms value"
|
|
::= { opSensor1Entry 2324 }
|
|
|
|
opSensor2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor2"
|
|
::= { opSensor2 1 }
|
|
|
|
opSensor2Entry OBJECT-TYPE
|
|
SYNTAX OpSensor2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor2Table 1 }
|
|
|
|
OpSensor2Entry ::= SEQUENCE {
|
|
sensor2AlarmDelay Unsigned32,
|
|
sensor2FailureAlarmDelay Unsigned32,
|
|
sensor2AdjustOffset Integer32,
|
|
sensor2CurrentPhysValue Integer32,
|
|
sensor2CurrentValue Integer32
|
|
}
|
|
|
|
sensor2AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 alarm delay"
|
|
::= { opSensor2Entry 2417 }
|
|
|
|
sensor2FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 failure alarm delay"
|
|
::= { opSensor2Entry 2419 }
|
|
|
|
sensor2AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 adjust offset"
|
|
::= { opSensor2Entry 2420 }
|
|
|
|
sensor2CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 current phys. value"
|
|
::= { opSensor2Entry 2421 }
|
|
|
|
sensor2CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 current value"
|
|
::= { opSensor2Entry 2422 }
|
|
|
|
opSensor3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor3"
|
|
::= { opSensor3 1 }
|
|
|
|
opSensor3Entry OBJECT-TYPE
|
|
SYNTAX OpSensor3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor3Table 1 }
|
|
|
|
OpSensor3Entry ::= SEQUENCE {
|
|
sensor3AlarmDelay Unsigned32,
|
|
sensor3FailureAlarmDelay Unsigned32,
|
|
sensor3AdjustOffset Integer32,
|
|
sensor3CurrentPhysValue Integer32,
|
|
sensor3CurrentValue Integer32
|
|
}
|
|
|
|
sensor3AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 alarm delay"
|
|
::= { opSensor3Entry 2517 }
|
|
|
|
sensor3FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 failure alarm delay"
|
|
::= { opSensor3Entry 2519 }
|
|
|
|
sensor3AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 adjust offset"
|
|
::= { opSensor3Entry 2520 }
|
|
|
|
sensor3CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 current phys. value"
|
|
::= { opSensor3Entry 2521 }
|
|
|
|
sensor3CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 current value"
|
|
::= { opSensor3Entry 2522 }
|
|
|
|
opSensor4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor4"
|
|
::= { opSensor4 1 }
|
|
|
|
opSensor4Entry OBJECT-TYPE
|
|
SYNTAX OpSensor4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor4Table 1 }
|
|
|
|
OpSensor4Entry ::= SEQUENCE {
|
|
sensor4AlarmDelay Unsigned32,
|
|
sensor4FailureAlarmDelay Unsigned32,
|
|
sensor4AdjustOffset Integer32,
|
|
sensor4CurrentPhysValue Integer32,
|
|
sensor4CurrentValue Integer32
|
|
}
|
|
|
|
sensor4AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 alarm delay"
|
|
::= { opSensor4Entry 2617 }
|
|
|
|
sensor4FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 failure alarm delay"
|
|
::= { opSensor4Entry 2619 }
|
|
|
|
sensor4AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 adjust offset"
|
|
::= { opSensor4Entry 2620 }
|
|
|
|
sensor4CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 current phys. value"
|
|
::= { opSensor4Entry 2621 }
|
|
|
|
sensor4CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 current value"
|
|
::= { opSensor4Entry 2622 }
|
|
|
|
opSensor5Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor5"
|
|
::= { opSensor5 1 }
|
|
|
|
opSensor5Entry OBJECT-TYPE
|
|
SYNTAX OpSensor5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor5"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor5Table 1 }
|
|
|
|
OpSensor5Entry ::= SEQUENCE {
|
|
sensor5AlarmDelay Unsigned32,
|
|
sensor5FailureAlarmDelay Unsigned32,
|
|
sensor5AdjustOffset Integer32,
|
|
sensor5CurrentPhysValue Integer32,
|
|
sensor5CurrentValue Integer32
|
|
}
|
|
|
|
sensor5AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 alarm delay"
|
|
::= { opSensor5Entry 2717 }
|
|
|
|
sensor5FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 failure alarm delay"
|
|
::= { opSensor5Entry 2719 }
|
|
|
|
sensor5AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 adjust offset"
|
|
::= { opSensor5Entry 2720 }
|
|
|
|
sensor5CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 current phys. value"
|
|
::= { opSensor5Entry 2721 }
|
|
|
|
sensor5CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 current value"
|
|
::= { opSensor5Entry 2722 }
|
|
|
|
opSensor6Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor6"
|
|
::= { opSensor6 1 }
|
|
|
|
opSensor6Entry OBJECT-TYPE
|
|
SYNTAX OpSensor6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor6"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor6Table 1 }
|
|
|
|
OpSensor6Entry ::= SEQUENCE {
|
|
sensor6AlarmDelay Unsigned32,
|
|
sensor6FailureAlarmDelay Unsigned32,
|
|
sensor6AdjustOffset Integer32,
|
|
sensor6CurrentPhysValue Integer32,
|
|
sensor6CurrentValue Integer32
|
|
}
|
|
|
|
sensor6AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 alarm delay"
|
|
::= { opSensor6Entry 2817 }
|
|
|
|
sensor6FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 failure alarm delay"
|
|
::= { opSensor6Entry 2819 }
|
|
|
|
sensor6AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 adjust offset"
|
|
::= { opSensor6Entry 2820 }
|
|
|
|
sensor6CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 current phys. value"
|
|
::= { opSensor6Entry 2821 }
|
|
|
|
sensor6CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 current value"
|
|
::= { opSensor6Entry 2822 }
|
|
|
|
opSensor7Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor7Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor7"
|
|
::= { opSensor7 1 }
|
|
|
|
opSensor7Entry OBJECT-TYPE
|
|
SYNTAX OpSensor7Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor7"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor7Table 1 }
|
|
|
|
OpSensor7Entry ::= SEQUENCE {
|
|
sensor7AlarmDelay Unsigned32,
|
|
sensor7FailureAlarmDelay Unsigned32,
|
|
sensor7AdjustOffset Integer32,
|
|
sensor7CurrentPhysValue Integer32,
|
|
sensor7CurrentValue Integer32
|
|
}
|
|
|
|
sensor7AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 alarm delay"
|
|
::= { opSensor7Entry 2917 }
|
|
|
|
sensor7FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 failure alarm delay"
|
|
::= { opSensor7Entry 2919 }
|
|
|
|
sensor7AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 adjust offset"
|
|
::= { opSensor7Entry 2920 }
|
|
|
|
sensor7CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 current phys. value"
|
|
::= { opSensor7Entry 2921 }
|
|
|
|
sensor7CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 current value"
|
|
::= { opSensor7Entry 2922 }
|
|
|
|
opSensor8Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor8Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor8"
|
|
::= { opSensor8 1 }
|
|
|
|
opSensor8Entry OBJECT-TYPE
|
|
SYNTAX OpSensor8Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor8"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor8Table 1 }
|
|
|
|
OpSensor8Entry ::= SEQUENCE {
|
|
sensor8AlarmDelay Unsigned32,
|
|
sensor8FailureAlarmDelay Unsigned32,
|
|
sensor8AdjustOffset Integer32,
|
|
sensor8CurrentPhysValue Integer32,
|
|
sensor8CurrentValue Integer32
|
|
}
|
|
|
|
sensor8AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 alarm delay"
|
|
::= { opSensor8Entry 3017 }
|
|
|
|
sensor8FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 failure alarm delay"
|
|
::= { opSensor8Entry 3019 }
|
|
|
|
sensor8AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 adjust offset"
|
|
::= { opSensor8Entry 3020 }
|
|
|
|
sensor8CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 current phys. value"
|
|
::= { opSensor8Entry 3021 }
|
|
|
|
sensor8CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 current value"
|
|
::= { opSensor8Entry 3022 }
|
|
|
|
opSensor9Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor9Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor9"
|
|
::= { opSensor9 1 }
|
|
|
|
opSensor9Entry OBJECT-TYPE
|
|
SYNTAX OpSensor9Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor9"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor9Table 1 }
|
|
|
|
OpSensor9Entry ::= SEQUENCE {
|
|
sensor9AlarmDelay Unsigned32,
|
|
sensor9FailureAlarmDelay Unsigned32,
|
|
sensor9AdjustOffset Integer32,
|
|
sensor9CurrentPhysValue Integer32,
|
|
sensor9CurrentValue Integer32
|
|
}
|
|
|
|
sensor9AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 alarm delay"
|
|
::= { opSensor9Entry 3117 }
|
|
|
|
sensor9FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 failure alarm delay"
|
|
::= { opSensor9Entry 3119 }
|
|
|
|
sensor9AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 adjust offset"
|
|
::= { opSensor9Entry 3120 }
|
|
|
|
sensor9CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 current phys. value"
|
|
::= { opSensor9Entry 3121 }
|
|
|
|
sensor9CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 current value"
|
|
::= { opSensor9Entry 3122 }
|
|
|
|
opSensor10Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor10Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor10"
|
|
::= { opSensor10 1 }
|
|
|
|
opSensor10Entry OBJECT-TYPE
|
|
SYNTAX OpSensor10Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor10"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor10Table 1 }
|
|
|
|
OpSensor10Entry ::= SEQUENCE {
|
|
sensor10AlarmDelay Unsigned32,
|
|
sensor10FailureAlarmDelay Unsigned32,
|
|
sensor10AdjustOffset Integer32,
|
|
sensor10CurrentPhysValue Integer32,
|
|
sensor10CurrentValue Integer32
|
|
}
|
|
|
|
sensor10AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 alarm delay"
|
|
::= { opSensor10Entry 3217 }
|
|
|
|
sensor10FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 failure alarm delay"
|
|
::= { opSensor10Entry 3219 }
|
|
|
|
sensor10AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 adjust offset"
|
|
::= { opSensor10Entry 3220 }
|
|
|
|
sensor10CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 current phys. value"
|
|
::= { opSensor10Entry 3221 }
|
|
|
|
sensor10CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 current value"
|
|
::= { opSensor10Entry 3222 }
|
|
|
|
opSensor11Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor11Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor11"
|
|
::= { opSensor11 1 }
|
|
|
|
opSensor11Entry OBJECT-TYPE
|
|
SYNTAX OpSensor11Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor11"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor11Table 1 }
|
|
|
|
OpSensor11Entry ::= SEQUENCE {
|
|
sensor11AlarmDelay Unsigned32,
|
|
sensor11FailureAlarmDelay Unsigned32,
|
|
sensor11AdjustOffset Integer32,
|
|
sensor11CurrentPhysValue Integer32,
|
|
sensor11CurrentValue Integer32
|
|
}
|
|
|
|
sensor11AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 alarm delay"
|
|
::= { opSensor11Entry 3317 }
|
|
|
|
sensor11FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 failure alarm delay"
|
|
::= { opSensor11Entry 3319 }
|
|
|
|
sensor11AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 adjust offset"
|
|
::= { opSensor11Entry 3320 }
|
|
|
|
sensor11CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 current phys. value"
|
|
::= { opSensor11Entry 3321 }
|
|
|
|
sensor11CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 current value"
|
|
::= { opSensor11Entry 3322 }
|
|
|
|
opSensor12Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor12Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor12"
|
|
::= { opSensor12 1 }
|
|
|
|
opSensor12Entry OBJECT-TYPE
|
|
SYNTAX OpSensor12Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor12"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor12Table 1 }
|
|
|
|
OpSensor12Entry ::= SEQUENCE {
|
|
sensor12AlarmDelay Unsigned32,
|
|
sensor12FailureAlarmDelay Unsigned32,
|
|
sensor12AdjustOffset Integer32,
|
|
sensor12CurrentPhysValue Integer32,
|
|
sensor12CurrentValue Integer32
|
|
}
|
|
|
|
sensor12AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 alarm delay"
|
|
::= { opSensor12Entry 3417 }
|
|
|
|
sensor12FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 failure alarm delay"
|
|
::= { opSensor12Entry 3419 }
|
|
|
|
sensor12AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 adjust offset"
|
|
::= { opSensor12Entry 3420 }
|
|
|
|
sensor12CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 current phys. value"
|
|
::= { opSensor12Entry 3421 }
|
|
|
|
sensor12CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 current value"
|
|
::= { opSensor12Entry 3422 }
|
|
|
|
opSensor13Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor13Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor13"
|
|
::= { opSensor13 1 }
|
|
|
|
opSensor13Entry OBJECT-TYPE
|
|
SYNTAX OpSensor13Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor13"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor13Table 1 }
|
|
|
|
OpSensor13Entry ::= SEQUENCE {
|
|
sensor13AlarmDelay Unsigned32,
|
|
sensor13FailureAlarmDelay Unsigned32,
|
|
sensor13AdjustOffset Integer32,
|
|
sensor13CurrentPhysValue Integer32,
|
|
sensor13CurrentValue Integer32
|
|
}
|
|
|
|
sensor13AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 alarm delay"
|
|
::= { opSensor13Entry 3517 }
|
|
|
|
sensor13FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 failure alarm delay"
|
|
::= { opSensor13Entry 3519 }
|
|
|
|
sensor13AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 adjust offset"
|
|
::= { opSensor13Entry 3520 }
|
|
|
|
sensor13CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 current phys. value"
|
|
::= { opSensor13Entry 3521 }
|
|
|
|
sensor13CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 current value"
|
|
::= { opSensor13Entry 3522 }
|
|
|
|
opSensor14Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor14Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor14"
|
|
::= { opSensor14 1 }
|
|
|
|
opSensor14Entry OBJECT-TYPE
|
|
SYNTAX OpSensor14Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor14"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor14Table 1 }
|
|
|
|
OpSensor14Entry ::= SEQUENCE {
|
|
sensor14AlarmDelay Unsigned32,
|
|
sensor14FailureAlarmDelay Unsigned32,
|
|
sensor14AdjustOffset Integer32,
|
|
sensor14CurrentPhysValue Integer32,
|
|
sensor14CurrentValue Integer32
|
|
}
|
|
|
|
sensor14AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 alarm delay"
|
|
::= { opSensor14Entry 3617 }
|
|
|
|
sensor14FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 failure alarm delay"
|
|
::= { opSensor14Entry 3619 }
|
|
|
|
sensor14AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 adjust offset"
|
|
::= { opSensor14Entry 3620 }
|
|
|
|
sensor14CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 current phys. value"
|
|
::= { opSensor14Entry 3621 }
|
|
|
|
sensor14CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 current value"
|
|
::= { opSensor14Entry 3622 }
|
|
|
|
opSensor15Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor15Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor15"
|
|
::= { opSensor15 1 }
|
|
|
|
opSensor15Entry OBJECT-TYPE
|
|
SYNTAX OpSensor15Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor15"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor15Table 1 }
|
|
|
|
OpSensor15Entry ::= SEQUENCE {
|
|
sensor15AlarmDelay Unsigned32,
|
|
sensor15FailureAlarmDelay Unsigned32,
|
|
sensor15AdjustOffset Integer32,
|
|
sensor15CurrentPhysValue Integer32,
|
|
sensor15CurrentValue Integer32
|
|
}
|
|
|
|
sensor15AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 alarm delay"
|
|
::= { opSensor15Entry 3717 }
|
|
|
|
sensor15FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 failure alarm delay"
|
|
::= { opSensor15Entry 3719 }
|
|
|
|
sensor15AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 adjust offset"
|
|
::= { opSensor15Entry 3720 }
|
|
|
|
sensor15CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 current phys. value"
|
|
::= { opSensor15Entry 3721 }
|
|
|
|
sensor15CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 current value"
|
|
::= { opSensor15Entry 3722 }
|
|
|
|
opSensor16Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor16Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor16"
|
|
::= { opSensor16 1 }
|
|
|
|
opSensor16Entry OBJECT-TYPE
|
|
SYNTAX OpSensor16Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor16"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor16Table 1 }
|
|
|
|
OpSensor16Entry ::= SEQUENCE {
|
|
sensor16AlarmDelay Unsigned32,
|
|
sensor16FailureAlarmDelay Unsigned32,
|
|
sensor16AdjustOffset Integer32,
|
|
sensor16CurrentPhysValue Integer32,
|
|
sensor16CurrentValue Integer32
|
|
}
|
|
|
|
sensor16AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 alarm delay"
|
|
::= { opSensor16Entry 3817 }
|
|
|
|
sensor16FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 failure alarm delay"
|
|
::= { opSensor16Entry 3819 }
|
|
|
|
sensor16AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 adjust offset"
|
|
::= { opSensor16Entry 3820 }
|
|
|
|
sensor16CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 current phys. value"
|
|
::= { opSensor16Entry 3821 }
|
|
|
|
sensor16CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 current value"
|
|
::= { opSensor16Entry 3822 }
|
|
|
|
opSensor17Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor17Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor17"
|
|
::= { opSensor17 1 }
|
|
|
|
opSensor17Entry OBJECT-TYPE
|
|
SYNTAX OpSensor17Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor17"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor17Table 1 }
|
|
|
|
OpSensor17Entry ::= SEQUENCE {
|
|
sensor17AlarmDelay Unsigned32,
|
|
sensor17FailureAlarmDelay Unsigned32,
|
|
sensor17AdjustOffset Integer32,
|
|
sensor17CurrentPhysValue Integer32,
|
|
sensor17CurrentValue Integer32
|
|
}
|
|
|
|
sensor17AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 alarm delay"
|
|
::= { opSensor17Entry 3917 }
|
|
|
|
sensor17FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 failure alarm delay"
|
|
::= { opSensor17Entry 3919 }
|
|
|
|
sensor17AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 adjust offset"
|
|
::= { opSensor17Entry 3920 }
|
|
|
|
sensor17CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 current phys. value"
|
|
::= { opSensor17Entry 3921 }
|
|
|
|
sensor17CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 current value"
|
|
::= { opSensor17Entry 3922 }
|
|
|
|
opSensor18Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor18Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor18"
|
|
::= { opSensor18 1 }
|
|
|
|
opSensor18Entry OBJECT-TYPE
|
|
SYNTAX OpSensor18Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor18"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor18Table 1 }
|
|
|
|
OpSensor18Entry ::= SEQUENCE {
|
|
sensor18AlarmDelay Unsigned32,
|
|
sensor18FailureAlarmDelay Unsigned32,
|
|
sensor18AdjustOffset Integer32,
|
|
sensor18CurrentPhysValue Integer32,
|
|
sensor18CurrentValue Integer32
|
|
}
|
|
|
|
sensor18AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 alarm delay"
|
|
::= { opSensor18Entry 4017 }
|
|
|
|
sensor18FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 failure alarm delay"
|
|
::= { opSensor18Entry 4019 }
|
|
|
|
sensor18AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 adjust offset"
|
|
::= { opSensor18Entry 4020 }
|
|
|
|
sensor18CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 current phys. value"
|
|
::= { opSensor18Entry 4021 }
|
|
|
|
sensor18CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 current value"
|
|
::= { opSensor18Entry 4022 }
|
|
|
|
opSensor19Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor19Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor19"
|
|
::= { opSensor19 1 }
|
|
|
|
opSensor19Entry OBJECT-TYPE
|
|
SYNTAX OpSensor19Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor19"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor19Table 1 }
|
|
|
|
OpSensor19Entry ::= SEQUENCE {
|
|
sensor19AlarmDelay Unsigned32,
|
|
sensor19FailureAlarmDelay Unsigned32,
|
|
sensor19AdjustOffset Integer32,
|
|
sensor19CurrentPhysValue Integer32,
|
|
sensor19CurrentValue Integer32
|
|
}
|
|
|
|
sensor19AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 alarm delay"
|
|
::= { opSensor19Entry 4117 }
|
|
|
|
sensor19FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 failure alarm delay"
|
|
::= { opSensor19Entry 4119 }
|
|
|
|
sensor19AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 adjust offset"
|
|
::= { opSensor19Entry 4120 }
|
|
|
|
sensor19CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 current phys. value"
|
|
::= { opSensor19Entry 4121 }
|
|
|
|
sensor19CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 current value"
|
|
::= { opSensor19Entry 4122 }
|
|
|
|
opSensor20Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor20Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor20"
|
|
::= { opSensor20 1 }
|
|
|
|
opSensor20Entry OBJECT-TYPE
|
|
SYNTAX OpSensor20Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor20"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor20Table 1 }
|
|
|
|
OpSensor20Entry ::= SEQUENCE {
|
|
sensor20AlarmDelay Unsigned32,
|
|
sensor20FailureAlarmDelay Unsigned32,
|
|
sensor20AdjustOffset Integer32,
|
|
sensor20CurrentPhysValue Integer32,
|
|
sensor20CurrentValue Integer32
|
|
}
|
|
|
|
sensor20AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 alarm delay"
|
|
::= { opSensor20Entry 4217 }
|
|
|
|
sensor20FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 failure alarm delay"
|
|
::= { opSensor20Entry 4219 }
|
|
|
|
sensor20AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 adjust offset"
|
|
::= { opSensor20Entry 4220 }
|
|
|
|
sensor20CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 current phys. value"
|
|
::= { opSensor20Entry 4221 }
|
|
|
|
sensor20CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 current value"
|
|
::= { opSensor20Entry 4222 }
|
|
|
|
opSensor21Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpSensor21Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opSensor21"
|
|
::= { opSensor21 1 }
|
|
|
|
opSensor21Entry OBJECT-TYPE
|
|
SYNTAX OpSensor21Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opSensor21"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opSensor21Table 1 }
|
|
|
|
OpSensor21Entry ::= SEQUENCE {
|
|
sensor21AlarmDelay Unsigned32,
|
|
sensor21FailureAlarmDelay Unsigned32,
|
|
sensor21AdjustOffset Integer32,
|
|
sensor21CurrentPhysValue Integer32,
|
|
sensor21CurrentValue Integer32
|
|
}
|
|
|
|
sensor21AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 alarm delay"
|
|
::= { opSensor21Entry 4317 }
|
|
|
|
sensor21FailureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 failure alarm delay"
|
|
::= { opSensor21Entry 4319 }
|
|
|
|
sensor21AdjustOffset OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 adjust offset"
|
|
::= { opSensor21Entry 4320 }
|
|
|
|
sensor21CurrentPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 current phys. value"
|
|
::= { opSensor21Entry 4321 }
|
|
|
|
sensor21CurrentValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 current value"
|
|
::= { opSensor21Entry 4322 }
|
|
|
|
opExtAlarms1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpExtAlarms1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opExtAlarms1"
|
|
::= { opExtAlarms1 1 }
|
|
|
|
opExtAlarms1Entry OBJECT-TYPE
|
|
SYNTAX OpExtAlarms1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opExtAlarms1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opExtAlarms1Table 1 }
|
|
|
|
OpExtAlarms1Entry ::= SEQUENCE {
|
|
extAlarm1Delay Unsigned32,
|
|
extAlarm1Text0 Unsigned32
|
|
}
|
|
|
|
extAlarm1Delay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm1 delay"
|
|
::= { opExtAlarms1Entry 7510 }
|
|
|
|
extAlarm1Text0 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (32..125)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm1 text 0"
|
|
::= { opExtAlarms1Entry 7511 }
|
|
|
|
opExtAlarms2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpExtAlarms2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opExtAlarms2"
|
|
::= { opExtAlarms2 1 }
|
|
|
|
opExtAlarms2Entry OBJECT-TYPE
|
|
SYNTAX OpExtAlarms2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opExtAlarms2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opExtAlarms2Table 1 }
|
|
|
|
OpExtAlarms2Entry ::= SEQUENCE {
|
|
extAlarm2Delay Unsigned32,
|
|
extAlarm2Text0 Unsigned32
|
|
}
|
|
|
|
extAlarm2Delay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm2 delay"
|
|
::= { opExtAlarms2Entry 7610 }
|
|
|
|
extAlarm2Text0 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (32..125)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm2 text 0"
|
|
::= { opExtAlarms2Entry 7611 }
|
|
|
|
opExtAlarms3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpExtAlarms3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opExtAlarms3"
|
|
::= { opExtAlarms3 1 }
|
|
|
|
opExtAlarms3Entry OBJECT-TYPE
|
|
SYNTAX OpExtAlarms3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opExtAlarms3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opExtAlarms3Table 1 }
|
|
|
|
OpExtAlarms3Entry ::= SEQUENCE {
|
|
extAlarm3Delay Unsigned32,
|
|
extAlarm3Text0 Unsigned32
|
|
}
|
|
|
|
extAlarm3Delay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm3 delay"
|
|
::= { opExtAlarms3Entry 7710 }
|
|
|
|
extAlarm3Text0 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (32..125)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm3 text 0"
|
|
::= { opExtAlarms3Entry 7711 }
|
|
|
|
opExtAlarms4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpExtAlarms4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opExtAlarms4"
|
|
::= { opExtAlarms4 1 }
|
|
|
|
opExtAlarms4Entry OBJECT-TYPE
|
|
SYNTAX OpExtAlarms4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opExtAlarms4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opExtAlarms4Table 1 }
|
|
|
|
OpExtAlarms4Entry ::= SEQUENCE {
|
|
extAlarm4Delay Unsigned32,
|
|
extAlarm4Text0 Unsigned32
|
|
}
|
|
|
|
extAlarm4Delay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm4 delay"
|
|
::= { opExtAlarms4Entry 7810 }
|
|
|
|
extAlarm4Text0 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (32..125)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm4 text 0"
|
|
::= { opExtAlarms4Entry 7811 }
|
|
|
|
opExtAlarms5Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpExtAlarms5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opExtAlarms5"
|
|
::= { opExtAlarms5 1 }
|
|
|
|
opExtAlarms5Entry OBJECT-TYPE
|
|
SYNTAX OpExtAlarms5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opExtAlarms5"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opExtAlarms5Table 1 }
|
|
|
|
OpExtAlarms5Entry ::= SEQUENCE {
|
|
extAlarm5Delay Unsigned32,
|
|
extAlarm5Text0 Unsigned32
|
|
}
|
|
|
|
extAlarm5Delay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm5 delay"
|
|
::= { opExtAlarms5Entry 7910 }
|
|
|
|
extAlarm5Text0 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (32..125)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm5 text 0"
|
|
::= { opExtAlarms5Entry 7911 }
|
|
|
|
opExtAlarms6Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpExtAlarms6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opExtAlarms6"
|
|
::= { opExtAlarms6 1 }
|
|
|
|
opExtAlarms6Entry OBJECT-TYPE
|
|
SYNTAX OpExtAlarms6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opExtAlarms6"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opExtAlarms6Table 1 }
|
|
|
|
OpExtAlarms6Entry ::= SEQUENCE {
|
|
extAlarm6Delay Unsigned32,
|
|
extAlarm6Text0 Unsigned32
|
|
}
|
|
|
|
extAlarm6Delay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm6 delay"
|
|
::= { opExtAlarms6Entry 8010 }
|
|
|
|
extAlarm6Text0 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (32..125)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm6 text 0"
|
|
::= { opExtAlarms6Entry 8011 }
|
|
|
|
opExtAlarms7Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpExtAlarms7Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opExtAlarms7"
|
|
::= { opExtAlarms7 1 }
|
|
|
|
opExtAlarms7Entry OBJECT-TYPE
|
|
SYNTAX OpExtAlarms7Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opExtAlarms7"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opExtAlarms7Table 1 }
|
|
|
|
OpExtAlarms7Entry ::= SEQUENCE {
|
|
extAlarm7Delay Unsigned32,
|
|
extAlarm7Text0 Unsigned32
|
|
}
|
|
|
|
extAlarm7Delay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm7 delay"
|
|
::= { opExtAlarms7Entry 8110 }
|
|
|
|
extAlarm7Text0 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (32..125)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm7 text 0"
|
|
::= { opExtAlarms7Entry 8111 }
|
|
|
|
opExtAlarms8Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpExtAlarms8Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opExtAlarms8"
|
|
::= { opExtAlarms8 1 }
|
|
|
|
opExtAlarms8Entry OBJECT-TYPE
|
|
SYNTAX OpExtAlarms8Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opExtAlarms8"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opExtAlarms8Table 1 }
|
|
|
|
OpExtAlarms8Entry ::= SEQUENCE {
|
|
extAlarm8Delay Unsigned32,
|
|
extAlarm8Text0 Unsigned32
|
|
}
|
|
|
|
extAlarm8Delay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm8 delay"
|
|
::= { opExtAlarms8Entry 8210 }
|
|
|
|
extAlarm8Text0 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (32..125)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm8 text 0"
|
|
::= { opExtAlarms8Entry 8211 }
|
|
|
|
opExtAlarms9Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpExtAlarms9Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opExtAlarms9"
|
|
::= { opExtAlarms9 1 }
|
|
|
|
opExtAlarms9Entry OBJECT-TYPE
|
|
SYNTAX OpExtAlarms9Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opExtAlarms9"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opExtAlarms9Table 1 }
|
|
|
|
OpExtAlarms9Entry ::= SEQUENCE {
|
|
extAlarm9Delay Unsigned32,
|
|
extAlarm9Text0 Unsigned32
|
|
}
|
|
|
|
extAlarm9Delay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm9 delay"
|
|
::= { opExtAlarms9Entry 8310 }
|
|
|
|
extAlarm9Text0 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (32..125)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm9 text 0"
|
|
::= { opExtAlarms9Entry 8311 }
|
|
|
|
opExtAlarms10Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpExtAlarms10Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opExtAlarms10"
|
|
::= { opExtAlarms10 1 }
|
|
|
|
opExtAlarms10Entry OBJECT-TYPE
|
|
SYNTAX OpExtAlarms10Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opExtAlarms10"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opExtAlarms10Table 1 }
|
|
|
|
OpExtAlarms10Entry ::= SEQUENCE {
|
|
extAlarm10Delay Unsigned32,
|
|
extAlarm10Text0 Unsigned32
|
|
}
|
|
|
|
extAlarm10Delay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm10 delay"
|
|
::= { opExtAlarms10Entry 8410 }
|
|
|
|
extAlarm10Text0 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (32..125)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm10 text 0"
|
|
::= { opExtAlarms10Entry 8411 }
|
|
|
|
opUnitalarmsTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OpUnitalarmsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu opUnitalarms"
|
|
::= { opUnitalarms 1 }
|
|
|
|
opUnitalarmsEntry OBJECT-TYPE
|
|
SYNTAX OpUnitalarmsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu opUnitalarms"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { opUnitalarmsTable 1 }
|
|
|
|
OpUnitalarmsEntry ::= SEQUENCE {
|
|
busalarmdelay Unsigned32,
|
|
busadrconflictdelay Unsigned32,
|
|
fireAlarmDelay Unsigned32,
|
|
waterAlarmDelay Unsigned32,
|
|
phaseAlarmDelay Unsigned32,
|
|
waterflowAlarmDelay Unsigned32,
|
|
freezeAlarmDelay Unsigned32,
|
|
localStopDigitalOut Unsigned32,
|
|
freecoolingDOUTAuallyCoolingByFC Unsigned32,
|
|
roomHighPressureAlarmDelay Unsigned32
|
|
}
|
|
|
|
busalarmdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..300)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"busalarmdelay"
|
|
::= { opUnitalarmsEntry 17 }
|
|
|
|
busadrconflictdelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..300)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"busadrconflictdelay"
|
|
::= { opUnitalarmsEntry 19 }
|
|
|
|
fireAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fire alarm delay"
|
|
::= { opUnitalarmsEntry 1712 }
|
|
|
|
waterAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water alarm delay"
|
|
::= { opUnitalarmsEntry 1714 }
|
|
|
|
phaseAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"phase alarm delay"
|
|
::= { opUnitalarmsEntry 1716 }
|
|
|
|
waterflowAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"waterflow alarm delay"
|
|
::= { opUnitalarmsEntry 1720 }
|
|
|
|
freezeAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freeze alarm delay"
|
|
::= { opUnitalarmsEntry 1721 }
|
|
|
|
localStopDigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"local stop digital out"
|
|
::= { opUnitalarmsEntry 1722 }
|
|
|
|
freecoolingDOUTAuallyCoolingByFC OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling DOUT (actually cooling by FC)"
|
|
::= { opUnitalarmsEntry 1723 }
|
|
|
|
roomHighPressureAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"room high pressure alarm delay"
|
|
::= { opUnitalarmsEntry 10313 }
|
|
|
|
confCtrlAirTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCtrlAirEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCtrlAir"
|
|
::= { confCtrlAir 4 }
|
|
|
|
confCtrlAirEntry OBJECT-TYPE
|
|
SYNTAX ConfCtrlAirEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCtrlAir"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCtrlAirTable 1 }
|
|
|
|
ConfCtrlAirEntry ::= SEQUENCE {
|
|
unitControlTypeAirAcUnits Unsigned32
|
|
}
|
|
|
|
unitControlTypeAirAcUnits OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit control type, air (ac-units)"
|
|
::= { confCtrlAirEntry 1183 }
|
|
|
|
confCtrlTemperatureTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCtrlTemperatureEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCtrlTemperature"
|
|
::= { confCtrlTemperature 1 }
|
|
|
|
confCtrlTemperatureEntry OBJECT-TYPE
|
|
SYNTAX ConfCtrlTemperatureEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCtrlTemperature"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCtrlTemperatureTable 1 }
|
|
|
|
ConfCtrlTemperatureEntry ::= SEQUENCE {
|
|
limitedControlStartTemperature Integer32,
|
|
limitedControlLiangeTemperature Integer32,
|
|
unitIntegralFactor Unsigned32,
|
|
limitedControlStartTemperature2 Integer32,
|
|
unitTempOffsetBoostCooling Integer32,
|
|
limitReturnAirTehAlarmPriorities Unsigned32,
|
|
limitReturnAirTeAlarmPriorities Unsigned32,
|
|
limitSupplyAirTehAlarmPriorities Unsigned32,
|
|
limitSupplyAirTeAlarmPriorities Unsigned32,
|
|
limitReturnAirTeommonAlarmConfig Unsigned32,
|
|
limitReturnAirTemmonAlarmConfig Unsigned32,
|
|
limitSupplyAirTeommonAlarmConfig Unsigned32,
|
|
limitSupplyAirTemmonAlarmConfig Unsigned32
|
|
}
|
|
|
|
limitedControlStartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..400)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limited control: start temperature"
|
|
::= { confCtrlTemperatureEntry 1184 }
|
|
|
|
limitedControlLiangeTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limited control: lineary range temperature"
|
|
::= { confCtrlTemperatureEntry 1185 }
|
|
|
|
unitIntegralFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit integral factor"
|
|
::= { confCtrlTemperatureEntry 1190 }
|
|
|
|
limitedControlStartTemperature2 OBJECT-TYPE
|
|
SYNTAX Integer32 (0..400)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limited control: start temperature 2"
|
|
::= { confCtrlTemperatureEntry 1228 }
|
|
|
|
unitTempOffsetBoostCooling OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit temp. offset boost cooling"
|
|
::= { confCtrlTemperatureEntry 2251 }
|
|
|
|
limitReturnAirTehAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air temp. too high alarm priorities"
|
|
::= { confCtrlTemperatureEntry 2252 }
|
|
|
|
limitReturnAirTeAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air temp. too low alarm priorities"
|
|
::= { confCtrlTemperatureEntry 2254 }
|
|
|
|
limitSupplyAirTehAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air temp. too high alarm priorities"
|
|
::= { confCtrlTemperatureEntry 2256 }
|
|
|
|
limitSupplyAirTeAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air temp. too low alarm priorities"
|
|
::= { confCtrlTemperatureEntry 2258 }
|
|
|
|
limitReturnAirTeommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air temp. too high common alarm config"
|
|
::= { confCtrlTemperatureEntry 2284 }
|
|
|
|
limitReturnAirTemmonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air temp. too low common alarm config"
|
|
::= { confCtrlTemperatureEntry 2285 }
|
|
|
|
limitSupplyAirTeommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air temp. too high common alarm config"
|
|
::= { confCtrlTemperatureEntry 2286 }
|
|
|
|
limitSupplyAirTemmonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air temp. too low common alarm config"
|
|
::= { confCtrlTemperatureEntry 2287 }
|
|
|
|
confCtrlHumidityTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCtrlHumidityEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCtrlHumidity"
|
|
::= { confCtrlHumidity 1 }
|
|
|
|
confCtrlHumidityEntry OBJECT-TYPE
|
|
SYNTAX ConfCtrlHumidityEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCtrlHumidity"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCtrlHumidityTable 1 }
|
|
|
|
ConfCtrlHumidityEntry ::= SEQUENCE {
|
|
limitedControlStartHumidity Unsigned32,
|
|
limitedControlLiaryRangeHumidity Unsigned32,
|
|
limitReturnAirHuAlarmPriorities Unsigned32,
|
|
limitReturnAirHuwAlarmPriorities Unsigned32,
|
|
limitSupplyAirHuAlarmPriorities Unsigned32,
|
|
limitSupplyAirHuwAlarmPriorities Unsigned32,
|
|
unitHumidityOffsBoostHumidifying Integer32,
|
|
unitHumidityOffsostDehumidifying Integer32,
|
|
limitReturnAirHummonAlarmConfig Unsigned32,
|
|
limitReturnAirHuommonAlarmConfig Unsigned32,
|
|
limitSupplyAirHummonAlarmConfig Unsigned32,
|
|
limitSupplyAirHuommonAlarmConfig Unsigned32
|
|
}
|
|
|
|
limitedControlStartHumidity OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..900)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limited control: start humidity"
|
|
::= { confCtrlHumidityEntry 1186 }
|
|
|
|
limitedControlLiaryRangeHumidity OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limited control: lineary range humidity"
|
|
::= { confCtrlHumidityEntry 1187 }
|
|
|
|
limitReturnAirHuAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air humid. too high alarm priorities"
|
|
::= { confCtrlHumidityEntry 2264 }
|
|
|
|
limitReturnAirHuwAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air humid. too low alarm priorities"
|
|
::= { confCtrlHumidityEntry 2266 }
|
|
|
|
limitSupplyAirHuAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air humid. too high alarm priorities"
|
|
::= { confCtrlHumidityEntry 2268 }
|
|
|
|
limitSupplyAirHuwAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air humid. too low alarm priorities"
|
|
::= { confCtrlHumidityEntry 2270 }
|
|
|
|
unitHumidityOffsBoostHumidifying OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit humidity offset boost humidifying"
|
|
::= { confCtrlHumidityEntry 2275 }
|
|
|
|
unitHumidityOffsostDehumidifying OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit humidity offset boost dehumidifying"
|
|
::= { confCtrlHumidityEntry 2280 }
|
|
|
|
limitReturnAirHummonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air humid. too high common alarm config"
|
|
::= { confCtrlHumidityEntry 2290 }
|
|
|
|
limitReturnAirHuommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, return air humid. too low common alarm config"
|
|
::= { confCtrlHumidityEntry 2291 }
|
|
|
|
limitSupplyAirHummonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air humid. too high common alarm config"
|
|
::= { confCtrlHumidityEntry 2292 }
|
|
|
|
limitSupplyAirHuommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air humid. too low common alarm config"
|
|
::= { confCtrlHumidityEntry 2293 }
|
|
|
|
confCtrlPressureTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCtrlPressureEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCtrlPressure"
|
|
::= { confCtrlPressure 1 }
|
|
|
|
confCtrlPressureEntry OBJECT-TYPE
|
|
SYNTAX ConfCtrlPressureEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCtrlPressure"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCtrlPressureTable 1 }
|
|
|
|
ConfCtrlPressureEntry ::= SEQUENCE {
|
|
prealarmSupplyAiooHighDigOutPrio Unsigned32,
|
|
prealarmSupplyAiooLowDigOutPrio Unsigned32,
|
|
limitSupplyAirPrommonAlarmConfig Unsigned32,
|
|
limitSupplyAirPrmmonAlarmConfig Unsigned32,
|
|
prealarmSupplyAimmonAlarmConfig Unsigned32,
|
|
prealarmSupplyAiommonAlarmConfig Unsigned32
|
|
}
|
|
|
|
prealarmSupplyAiooHighDigOutPrio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"prealarm supply air pressure too high: dig. out (prio)"
|
|
::= { confCtrlPressureEntry 1876 }
|
|
|
|
prealarmSupplyAiooLowDigOutPrio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"prealarm supply air pressure too low: dig. out (prio)"
|
|
::= { confCtrlPressureEntry 1879 }
|
|
|
|
limitSupplyAirPrommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air pressure too high common alarm config"
|
|
::= { confCtrlPressureEntry 2294 }
|
|
|
|
limitSupplyAirPrmmonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, supply air pressure too low common alarm config"
|
|
::= { confCtrlPressureEntry 2295 }
|
|
|
|
prealarmSupplyAimmonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"prealarm supply air pressure too high: common alarm config"
|
|
::= { confCtrlPressureEntry 2296 }
|
|
|
|
prealarmSupplyAiommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"prealarm supply air pressure too low: common alarm config"
|
|
::= { confCtrlPressureEntry 2297 }
|
|
|
|
confCtrlWaterTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCtrlWaterEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCtrlWater"
|
|
::= { confCtrlWater 1 }
|
|
|
|
confCtrlWaterEntry OBJECT-TYPE
|
|
SYNTAX ConfCtrlWaterEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCtrlWater"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCtrlWaterTable 1 }
|
|
|
|
ConfCtrlWaterEntry ::= SEQUENCE {
|
|
controlTypeWaterChiller Unsigned32,
|
|
unitOverloadSwitchOnByWatertemp Integer32,
|
|
waterInlet1MinTeeratureAlarmprio Unsigned32,
|
|
waterInlet1MaxTeeratureAlarmprio Unsigned32,
|
|
waterOutlet1MinTratureAlarmprio Unsigned32,
|
|
waterOutlet1MaxTratureAlarmprio Unsigned32,
|
|
waterInlet2MinTeeratureAlarmprio Unsigned32,
|
|
waterInlet2MaxTeeratureAlarmprio Unsigned32,
|
|
waterOutlet2MinTratureAlarmprio Unsigned32,
|
|
waterOutlet2MaxTratureAlarmprio Unsigned32,
|
|
waterInlet1MinTeatureCommonalarm Unsigned32,
|
|
waterInlet1MaxTeatureCommonalarm Unsigned32,
|
|
waterOutlet1MinTtureCommonalarm Unsigned32,
|
|
waterOutlet1MaxTtureCommonalarm Unsigned32,
|
|
waterInlet2MinTeatureCommonalarm Unsigned32,
|
|
waterInlet2MaxTeatureCommonalarm Unsigned32,
|
|
waterOutlet2MinTtureCommonalarm Unsigned32,
|
|
waterOutlet2MaxTtureCommonalarm Unsigned32,
|
|
limitWaterTempTohAlarmPriorities Unsigned32,
|
|
limitWaterTempToAlarmPriorities Unsigned32,
|
|
limitWaterTempToommonAlarmConfig Unsigned32,
|
|
limitWaterTempTommonAlarmConfig Unsigned32
|
|
}
|
|
|
|
controlTypeWaterChiller OBJECT-TYPE
|
|
SYNTAX Unsigned32 (6..8)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"control type water (chiller)"
|
|
::= { confCtrlWaterEntry 1229 }
|
|
|
|
unitOverloadSwitchOnByWatertemp OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit overload switch on by watertemp"
|
|
::= { confCtrlWaterEntry 1239 }
|
|
|
|
waterInlet1MinTeeratureAlarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water inlet 1, min temperature alarmprio"
|
|
::= { confCtrlWaterEntry 1484 }
|
|
|
|
waterInlet1MaxTeeratureAlarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water inlet 1, max temperature alarmprio"
|
|
::= { confCtrlWaterEntry 1485 }
|
|
|
|
waterOutlet1MinTratureAlarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water outlet 1, min temperature alarmprio"
|
|
::= { confCtrlWaterEntry 1486 }
|
|
|
|
waterOutlet1MaxTratureAlarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water outlet 1, max temperature alarmprio"
|
|
::= { confCtrlWaterEntry 1487 }
|
|
|
|
waterInlet2MinTeeratureAlarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water inlet 2, min temperature alarmprio"
|
|
::= { confCtrlWaterEntry 1488 }
|
|
|
|
waterInlet2MaxTeeratureAlarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water inlet 2, max temperature alarmprio"
|
|
::= { confCtrlWaterEntry 1489 }
|
|
|
|
waterOutlet2MinTratureAlarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water outlet 2, min temperature alarmprio"
|
|
::= { confCtrlWaterEntry 1490 }
|
|
|
|
waterOutlet2MaxTratureAlarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water outlet 2, max temperature alarmprio"
|
|
::= { confCtrlWaterEntry 1491 }
|
|
|
|
waterInlet1MinTeatureCommonalarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water inlet 1, min temperature commonalarm"
|
|
::= { confCtrlWaterEntry 1492 }
|
|
|
|
waterInlet1MaxTeatureCommonalarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water inlet 1, max temperature commonalarm"
|
|
::= { confCtrlWaterEntry 1493 }
|
|
|
|
waterOutlet1MinTtureCommonalarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water outlet 1, min temperature commonalarm"
|
|
::= { confCtrlWaterEntry 1494 }
|
|
|
|
waterOutlet1MaxTtureCommonalarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water outlet 1, max temperature commonalarm"
|
|
::= { confCtrlWaterEntry 1495 }
|
|
|
|
waterInlet2MinTeatureCommonalarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water inlet 2, min temperature commonalarm"
|
|
::= { confCtrlWaterEntry 1496 }
|
|
|
|
waterInlet2MaxTeatureCommonalarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water inlet 2, max temperature commonalarm"
|
|
::= { confCtrlWaterEntry 1497 }
|
|
|
|
waterOutlet2MinTtureCommonalarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water outlet 2, min temperature commonalarm"
|
|
::= { confCtrlWaterEntry 1498 }
|
|
|
|
waterOutlet2MaxTtureCommonalarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water outlet 2, max temperature commonalarm"
|
|
::= { confCtrlWaterEntry 1499 }
|
|
|
|
limitWaterTempTohAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water temp. too high alarm priorities"
|
|
::= { confCtrlWaterEntry 2260 }
|
|
|
|
limitWaterTempToAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water temp. too low alarm priorities"
|
|
::= { confCtrlWaterEntry 2262 }
|
|
|
|
limitWaterTempToommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water temp. too high common alarm config"
|
|
::= { confCtrlWaterEntry 2288 }
|
|
|
|
limitWaterTempTommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"limit, water temp. too low common alarm config"
|
|
::= { confCtrlWaterEntry 2289 }
|
|
|
|
confCtrlRefrigLPmanagementTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCtrlRefrigLPmanagementEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCtrlRefrigLPmanagement"
|
|
::= { confCtrlRefrigLPmanagement 1 }
|
|
|
|
confCtrlRefrigLPmanagementEntry OBJECT-TYPE
|
|
SYNTAX ConfCtrlRefrigLPmanagementEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCtrlRefrigLPmanagement"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCtrlRefrigLPmanagementTable 1 }
|
|
|
|
ConfCtrlRefrigLPmanagementEntry ::= SEQUENCE {
|
|
circuit1LPManagemmonAlarmConfig Unsigned32,
|
|
circuit1LPManagementDigitalIn Unsigned32,
|
|
circuit1LPManagentAlarmpriority Unsigned32,
|
|
circuit1LPManagementTime Unsigned32,
|
|
circuit1LPManagementMinPressure Integer32,
|
|
circuit1LPManagementTries Unsigned32,
|
|
circuit2LPManagemmonAlarmConfig Unsigned32,
|
|
circuit2LPManagementDigitalIn Unsigned32,
|
|
circuit2LPManagentAlarmpriority Unsigned32,
|
|
circuit2LPManagementTime Unsigned32,
|
|
circuit2LPManagementMinPressure Integer32,
|
|
circuit2LPManagementTries Unsigned32
|
|
}
|
|
|
|
circuit1LPManagemmonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 LP management common alarm config"
|
|
::= { confCtrlRefrigLPmanagementEntry 1500 }
|
|
|
|
circuit1LPManagementDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..43)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 LP management digital in"
|
|
::= { confCtrlRefrigLPmanagementEntry 1508 }
|
|
|
|
circuit1LPManagentAlarmpriority OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 LP management alarmpriority"
|
|
::= { confCtrlRefrigLPmanagementEntry 1510 }
|
|
|
|
circuit1LPManagementTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 LP management time"
|
|
::= { confCtrlRefrigLPmanagementEntry 1511 }
|
|
|
|
circuit1LPManagementMinPressure OBJECT-TYPE
|
|
SYNTAX Integer32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 LP management min pressure"
|
|
::= { confCtrlRefrigLPmanagementEntry 1512 }
|
|
|
|
circuit1LPManagementTries OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 LP management tries"
|
|
::= { confCtrlRefrigLPmanagementEntry 1513 }
|
|
|
|
circuit2LPManagemmonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 LP management common alarm config"
|
|
::= { confCtrlRefrigLPmanagementEntry 1600 }
|
|
|
|
circuit2LPManagementDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..43)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 LP management digital in"
|
|
::= { confCtrlRefrigLPmanagementEntry 1608 }
|
|
|
|
circuit2LPManagentAlarmpriority OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 LP management alarmpriority"
|
|
::= { confCtrlRefrigLPmanagementEntry 1610 }
|
|
|
|
circuit2LPManagementTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 LP management time"
|
|
::= { confCtrlRefrigLPmanagementEntry 1611 }
|
|
|
|
circuit2LPManagementMinPressure OBJECT-TYPE
|
|
SYNTAX Integer32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 LP management min pressure"
|
|
::= { confCtrlRefrigLPmanagementEntry 1612 }
|
|
|
|
circuit2LPManagementTries OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 LP management tries"
|
|
::= { confCtrlRefrigLPmanagementEntry 1613 }
|
|
|
|
confCtrlRefrigHPmanagementTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCtrlRefrigHPmanagementEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCtrlRefrigHPmanagement"
|
|
::= { confCtrlRefrigHPmanagement 1 }
|
|
|
|
confCtrlRefrigHPmanagementEntry OBJECT-TYPE
|
|
SYNTAX ConfCtrlRefrigHPmanagementEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCtrlRefrigHPmanagement"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCtrlRefrigHPmanagementTable 1 }
|
|
|
|
ConfCtrlRefrigHPmanagementEntry ::= SEQUENCE {
|
|
circuit1HPManagemmonAlarmConfig Unsigned32,
|
|
circuit1HPManagementDigitalIn Unsigned32,
|
|
circuit1HPManagentAlarmpriority Unsigned32,
|
|
circuit1HPManagementTime Unsigned32,
|
|
circuit1HPManagementMaxPressure Integer32,
|
|
circuit1HPManagementTries Unsigned32,
|
|
circuit1HPManagementMode Unsigned32,
|
|
circuit2HPManagemmonAlarmConfig Unsigned32,
|
|
circuit2HPManagementDigitalIn Unsigned32,
|
|
circuit2HPManagentAlarmpriority Unsigned32,
|
|
circuit2HPManagementTime Unsigned32,
|
|
circuit2HPManagementMaxPressure Integer32,
|
|
circuit2HPManagementTries Unsigned32,
|
|
circuit2HPManagementMode Unsigned32
|
|
}
|
|
|
|
circuit1HPManagemmonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 HP management common alarm config"
|
|
::= { confCtrlRefrigHPmanagementEntry 1530 }
|
|
|
|
circuit1HPManagementDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..43)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 HP management digital in"
|
|
::= { confCtrlRefrigHPmanagementEntry 1538 }
|
|
|
|
circuit1HPManagentAlarmpriority OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 HP management alarmpriority"
|
|
::= { confCtrlRefrigHPmanagementEntry 1540 }
|
|
|
|
circuit1HPManagementTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 HP management time"
|
|
::= { confCtrlRefrigHPmanagementEntry 1541 }
|
|
|
|
circuit1HPManagementMaxPressure OBJECT-TYPE
|
|
SYNTAX Integer32 (0..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 HP management max pressure"
|
|
::= { confCtrlRefrigHPmanagementEntry 1542 }
|
|
|
|
circuit1HPManagementTries OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 HP management tries"
|
|
::= { confCtrlRefrigHPmanagementEntry 1543 }
|
|
|
|
circuit1HPManagementMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 1 HP management mode"
|
|
::= { confCtrlRefrigHPmanagementEntry 1544 }
|
|
|
|
circuit2HPManagemmonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 HP management common alarm config"
|
|
::= { confCtrlRefrigHPmanagementEntry 1630 }
|
|
|
|
circuit2HPManagementDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..43)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 HP management digital in "
|
|
::= { confCtrlRefrigHPmanagementEntry 1638 }
|
|
|
|
circuit2HPManagentAlarmpriority OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 HP management alarmpriority"
|
|
::= { confCtrlRefrigHPmanagementEntry 1640 }
|
|
|
|
circuit2HPManagementTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 HP management time"
|
|
::= { confCtrlRefrigHPmanagementEntry 1641 }
|
|
|
|
circuit2HPManagementMaxPressure OBJECT-TYPE
|
|
SYNTAX Integer32 (0..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 HP management max pressure"
|
|
::= { confCtrlRefrigHPmanagementEntry 1642 }
|
|
|
|
circuit2HPManagementTries OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 HP management tries"
|
|
::= { confCtrlRefrigHPmanagementEntry 1643 }
|
|
|
|
circuit2HPManagementMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"circuit 2 HP management mode"
|
|
::= { confCtrlRefrigHPmanagementEntry 1644 }
|
|
|
|
confCtrlMiscParametersTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCtrlMiscParametersEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCtrlMiscParameters"
|
|
::= { confCtrlMiscParameters 1 }
|
|
|
|
confCtrlMiscParametersEntry OBJECT-TYPE
|
|
SYNTAX ConfCtrlMiscParametersEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCtrlMiscParameters"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCtrlMiscParametersTable 1 }
|
|
|
|
ConfCtrlMiscParametersEntry ::= SEQUENCE {
|
|
cW2ChangeOver Unsigned32,
|
|
cW2ChangeOverState Unsigned32,
|
|
oTEModeOff Unsigned32,
|
|
unitStartByRemoteOnOff Unsigned32,
|
|
unitCoolingPriority Unsigned32,
|
|
unitStartDelay Unsigned32,
|
|
autoRestartAfterPhaseAlarm Unsigned32
|
|
}
|
|
|
|
cW2ChangeOver OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"CW2 change-over"
|
|
::= { confCtrlMiscParametersEntry 1025 }
|
|
|
|
cW2ChangeOverState OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"CW2 change-over state"
|
|
::= { confCtrlMiscParametersEntry 1026 }
|
|
|
|
oTEModeOff OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"OTE-mode off"
|
|
::= { confCtrlMiscParametersEntry 1027 }
|
|
|
|
unitStartByRemoteOnOff OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit start by remote-on/off"
|
|
::= { confCtrlMiscParametersEntry 1028 }
|
|
|
|
unitCoolingPriority OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit cooling priority"
|
|
::= { confCtrlMiscParametersEntry 1198 }
|
|
|
|
unitStartDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit start delay"
|
|
::= { confCtrlMiscParametersEntry 1205 }
|
|
|
|
autoRestartAfterPhaseAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"auto-restart after phase alarm"
|
|
::= { confCtrlMiscParametersEntry 1746 }
|
|
|
|
confCtrlGEOperationTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCtrlGEOperationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCtrlGEOperation"
|
|
::= { confCtrlGEOperation 1 }
|
|
|
|
confCtrlGEOperationEntry OBJECT-TYPE
|
|
SYNTAX ConfCtrlGEOperationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCtrlGEOperation"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCtrlGEOperationTable 1 }
|
|
|
|
ConfCtrlGEOperationEntry ::= SEQUENCE {
|
|
unitWinterModeStarttemp Integer32,
|
|
unitWinterModeHysteresis Integer32,
|
|
outsideTemperatureForPressure Integer32,
|
|
gradientForPressure Integer32
|
|
}
|
|
|
|
unitWinterModeStarttemp OBJECT-TYPE
|
|
SYNTAX Integer32 (50..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit winter-mode starttemp"
|
|
::= { confCtrlGEOperationEntry 1188 }
|
|
|
|
unitWinterModeHysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (10..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit winter-mode hysteresis"
|
|
::= { confCtrlGEOperationEntry 1189 }
|
|
|
|
outsideTemperatureForPressure OBJECT-TYPE
|
|
SYNTAX Integer32 (50..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"outside temperature for pressure "
|
|
::= { confCtrlGEOperationEntry 1199 }
|
|
|
|
gradientForPressure OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"gradient for pressure "
|
|
::= { confCtrlGEOperationEntry 1200 }
|
|
|
|
confCtrlChillerFreecoolingTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCtrlChillerFreecoolingEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCtrlChillerFreecooling"
|
|
::= { confCtrlChillerFreecooling 1 }
|
|
|
|
confCtrlChillerFreecoolingEntry OBJECT-TYPE
|
|
SYNTAX ConfCtrlChillerFreecoolingEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCtrlChillerFreecooling"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCtrlChillerFreecoolingTable 1 }
|
|
|
|
ConfCtrlChillerFreecoolingEntry ::= SEQUENCE {
|
|
freezeCirculationStarttemp Integer32,
|
|
freezeCirculationStopHysteresis Integer32,
|
|
pump12SequencingTime Unsigned32,
|
|
pump12HandoverTime Unsigned32,
|
|
freeCoolingWinterModeAnalogAout Unsigned32,
|
|
freecoolingConfig Unsigned32,
|
|
freecoolingValveOpeningStart Integer32,
|
|
freecoolingValveGradient Unsigned32,
|
|
freecoolingStopTemperature Integer32
|
|
}
|
|
|
|
freezeCirculationStarttemp OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freeze circulation starttemp"
|
|
::= { confCtrlChillerFreecoolingEntry 1231 }
|
|
|
|
freezeCirculationStopHysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freeze circulation stop hysteresis"
|
|
::= { confCtrlChillerFreecoolingEntry 1232 }
|
|
|
|
pump12SequencingTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump 1, 2 sequencing time"
|
|
::= { confCtrlChillerFreecoolingEntry 1235 }
|
|
|
|
pump12HandoverTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..120)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump 1, 2 handover time"
|
|
::= { confCtrlChillerFreecoolingEntry 1236 }
|
|
|
|
freeCoolingWinterModeAnalogAout OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Free cooling (winter mode) analog aout"
|
|
::= { confCtrlChillerFreecoolingEntry 1724 }
|
|
|
|
freecoolingConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling config"
|
|
::= { confCtrlChillerFreecoolingEntry 10100 }
|
|
|
|
freecoolingValveOpeningStart OBJECT-TYPE
|
|
SYNTAX Integer32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling valve opening start"
|
|
::= { confCtrlChillerFreecoolingEntry 10110 }
|
|
|
|
freecoolingValveGradient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling valve gradient"
|
|
::= { confCtrlChillerFreecoolingEntry 10111 }
|
|
|
|
freecoolingStopTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecooling stop temperature"
|
|
::= { confCtrlChillerFreecoolingEntry 10112 }
|
|
|
|
confCtrlAEoperationTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCtrlAEoperationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCtrlAEoperation"
|
|
::= { confCtrlAEoperation 1 }
|
|
|
|
confCtrlAEoperationEntry OBJECT-TYPE
|
|
SYNTAX ConfCtrlAEoperationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCtrlAEoperation"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCtrlAEoperationTable 1 }
|
|
|
|
ConfCtrlAEoperationEntry ::= SEQUENCE {
|
|
aEControlActive Unsigned32,
|
|
forceSummerMode Unsigned32,
|
|
actionOnHumidityTooHighAlarm Unsigned32,
|
|
actionOnWaterAlarm Unsigned32
|
|
}
|
|
|
|
aEControlActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"AE control active"
|
|
::= { confCtrlAEoperationEntry 10300 }
|
|
|
|
forceSummerMode OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"force summer mode"
|
|
::= { confCtrlAEoperationEntry 10303 }
|
|
|
|
actionOnHumidityTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"action on humidity too high alarm"
|
|
::= { confCtrlAEoperationEntry 10304 }
|
|
|
|
actionOnWaterAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"action on water alarm"
|
|
::= { confCtrlAEoperationEntry 10305 }
|
|
|
|
confCtrlecocoolTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCtrlecocoolEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCtrlecocool"
|
|
::= { confCtrlecocool 1 }
|
|
|
|
confCtrlecocoolEntry OBJECT-TYPE
|
|
SYNTAX ConfCtrlecocoolEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCtrlecocool"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCtrlecocoolTable 1 }
|
|
|
|
ConfCtrlecocoolEntry ::= SEQUENCE {
|
|
eCOCOOL2ConfigActive Unsigned32
|
|
}
|
|
|
|
eCOCOOL2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO-COOL2 config active"
|
|
::= { confCtrlecocoolEntry 9930 }
|
|
|
|
confCompressor1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCompressor1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCompressor1"
|
|
::= { confCompressor1 1 }
|
|
|
|
confCompressor1Entry OBJECT-TYPE
|
|
SYNTAX ConfCompressor1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCompressor1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCompressor1Table 1 }
|
|
|
|
ConfCompressor1Entry ::= SEQUENCE {
|
|
compressor1ConfigActive Unsigned32,
|
|
compr1CommonAlarmConfig Unsigned32,
|
|
compr1LowPressCommonAlarmConfig Unsigned32,
|
|
compr1DigitalOut Unsigned32,
|
|
compr1AlarmDigitalIn Unsigned32,
|
|
compr1AlarmPriorities Unsigned32,
|
|
compr1LowPressDigitalIn Unsigned32,
|
|
compr1LowPressAlarmPriorities Unsigned32,
|
|
compr1LowPressManagTime Unsigned32,
|
|
compr1LowPressManagPress Unsigned32,
|
|
compr1LowPressManagRestarts Unsigned32,
|
|
compr1HighPressManagTime Unsigned32,
|
|
compr1HighPressManagPress Unsigned32,
|
|
compr1HighPressManagRestarts Unsigned32,
|
|
compr1HighPressManagMode Unsigned32,
|
|
compr1ActualCurrReadBackFromComp Unsigned32,
|
|
compr1DesiredSpeedPower Unsigned32,
|
|
compr1OilTemperature Integer32,
|
|
compr1ASTPThreshold Integer32,
|
|
compr1ASTPHysteresis Integer32
|
|
}
|
|
|
|
compressor1ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor1 config. active"
|
|
::= { confCompressor1Entry 4400 }
|
|
|
|
compr1CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 common alarm config"
|
|
::= { confCompressor1Entry 4407 }
|
|
|
|
compr1LowPressCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 low press. common alarm config"
|
|
::= { confCompressor1Entry 4408 }
|
|
|
|
compr1DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 digital out"
|
|
::= { confCompressor1Entry 4420 }
|
|
|
|
compr1AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 alarm digital in"
|
|
::= { confCompressor1Entry 4421 }
|
|
|
|
compr1AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 alarm priorities"
|
|
::= { confCompressor1Entry 4422 }
|
|
|
|
compr1LowPressDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 low press. Digital in"
|
|
::= { confCompressor1Entry 4424 }
|
|
|
|
compr1LowPressAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 low press. Alarm priorities"
|
|
::= { confCompressor1Entry 4425 }
|
|
|
|
compr1LowPressManagTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 low press manag. time"
|
|
::= { confCompressor1Entry 4429 }
|
|
|
|
compr1LowPressManagPress OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 low press manag. press."
|
|
::= { confCompressor1Entry 4430 }
|
|
|
|
compr1LowPressManagRestarts OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 low press manag. restarts"
|
|
::= { confCompressor1Entry 4431 }
|
|
|
|
compr1HighPressManagTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 high press manag. time"
|
|
::= { confCompressor1Entry 4432 }
|
|
|
|
compr1HighPressManagPress OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 high press manag. press."
|
|
::= { confCompressor1Entry 4433 }
|
|
|
|
compr1HighPressManagRestarts OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 high press manag. restarts"
|
|
::= { confCompressor1Entry 4434 }
|
|
|
|
compr1HighPressManagMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 high press manag. mode"
|
|
::= { confCompressor1Entry 4435 }
|
|
|
|
compr1ActualCurrReadBackFromComp OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 actual current speed (read back from comp.)"
|
|
::= { confCompressor1Entry 4437 }
|
|
|
|
compr1DesiredSpeedPower OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 desired speed/power"
|
|
::= { confCompressor1Entry 4438 }
|
|
|
|
compr1OilTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 oil temperature"
|
|
::= { confCompressor1Entry 4439 }
|
|
|
|
compr1ASTPThreshold OBJECT-TYPE
|
|
SYNTAX Integer32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 ASTP threshold"
|
|
::= { confCompressor1Entry 4440 }
|
|
|
|
compr1ASTPHysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 ASTP hysteresis"
|
|
::= { confCompressor1Entry 4441 }
|
|
|
|
confCompressor2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCompressor2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCompressor2"
|
|
::= { confCompressor2 1 }
|
|
|
|
confCompressor2Entry OBJECT-TYPE
|
|
SYNTAX ConfCompressor2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCompressor2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCompressor2Table 1 }
|
|
|
|
ConfCompressor2Entry ::= SEQUENCE {
|
|
compressor2ConfigActive Unsigned32,
|
|
compr2CommonAlarmConfig Unsigned32,
|
|
compr2LowPressCommonAlarmConfig Unsigned32,
|
|
compr2DigitalOut Unsigned32,
|
|
compr2AlarmDigitalIn Unsigned32,
|
|
compr2AlarmPriorities Unsigned32,
|
|
compr2LowPressDigitalIn Unsigned32,
|
|
compr2LowPressAlarmPriorities Unsigned32,
|
|
compr2LowPressManagTime Unsigned32,
|
|
compr2LowPressManagPress Unsigned32,
|
|
compr2LowPressManagRestarts Unsigned32,
|
|
compr2HighPressManagTime Unsigned32,
|
|
compr2HighPressManagPress Unsigned32,
|
|
compr2HighPressManagRestarts Unsigned32,
|
|
compr2HighPressManagMode Unsigned32,
|
|
compr2actualCurrReadBackFromComp Unsigned32,
|
|
compr2DesiredSpeedPower Unsigned32,
|
|
compr2OilTemperature Integer32,
|
|
compr2ASTPThreshold Integer32,
|
|
compr2ASTPHysteresis Integer32
|
|
}
|
|
|
|
compressor2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 2 config. active"
|
|
::= { confCompressor2Entry 4500 }
|
|
|
|
compr2CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 common alarm config"
|
|
::= { confCompressor2Entry 4507 }
|
|
|
|
compr2LowPressCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 low press. common alarm config"
|
|
::= { confCompressor2Entry 4508 }
|
|
|
|
compr2DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 digital out"
|
|
::= { confCompressor2Entry 4520 }
|
|
|
|
compr2AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 alarm digital in"
|
|
::= { confCompressor2Entry 4521 }
|
|
|
|
compr2AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 alarm priorities"
|
|
::= { confCompressor2Entry 4522 }
|
|
|
|
compr2LowPressDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 low press. Digital in"
|
|
::= { confCompressor2Entry 4524 }
|
|
|
|
compr2LowPressAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 low press. Alarm priorities"
|
|
::= { confCompressor2Entry 4525 }
|
|
|
|
compr2LowPressManagTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.2 low press manag. time"
|
|
::= { confCompressor2Entry 4529 }
|
|
|
|
compr2LowPressManagPress OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.2 low press manag. press."
|
|
::= { confCompressor2Entry 4530 }
|
|
|
|
compr2LowPressManagRestarts OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.2 low press manag. restarts"
|
|
::= { confCompressor2Entry 4531 }
|
|
|
|
compr2HighPressManagTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.2 high press manag. time"
|
|
::= { confCompressor2Entry 4532 }
|
|
|
|
compr2HighPressManagPress OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.2 high press manag. press."
|
|
::= { confCompressor2Entry 4533 }
|
|
|
|
compr2HighPressManagRestarts OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.2 high press manag. restarts"
|
|
::= { confCompressor2Entry 4534 }
|
|
|
|
compr2HighPressManagMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.2 high press manag. mode"
|
|
::= { confCompressor2Entry 4535 }
|
|
|
|
compr2actualCurrReadBackFromComp OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.2actual current speed (read back from comp.)"
|
|
::= { confCompressor2Entry 4537 }
|
|
|
|
compr2DesiredSpeedPower OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.2 desired speed/power"
|
|
::= { confCompressor2Entry 4538 }
|
|
|
|
compr2OilTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.2 oil temperature"
|
|
::= { confCompressor2Entry 4539 }
|
|
|
|
compr2ASTPThreshold OBJECT-TYPE
|
|
SYNTAX Integer32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.2 ASTP threshold"
|
|
::= { confCompressor2Entry 4540 }
|
|
|
|
compr2ASTPHysteresis OBJECT-TYPE
|
|
SYNTAX Integer32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.2 ASTP hysteresis"
|
|
::= { confCompressor2Entry 4541 }
|
|
|
|
confCompressor3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCompressor3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCompressor3"
|
|
::= { confCompressor3 1 }
|
|
|
|
confCompressor3Entry OBJECT-TYPE
|
|
SYNTAX ConfCompressor3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCompressor3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCompressor3Table 1 }
|
|
|
|
ConfCompressor3Entry ::= SEQUENCE {
|
|
compressor3ConfigActive Unsigned32,
|
|
compr3CommonAlarmConfig Unsigned32,
|
|
compr3DigitalOut Unsigned32,
|
|
compr3AlarmDigitalIn Unsigned32,
|
|
compr3AlarmPriorities Unsigned32,
|
|
compr3LowPressDigitalIn Unsigned32,
|
|
compr3LowPressAlarmPriorities Unsigned32,
|
|
compr3LowPressManagTime Unsigned32,
|
|
compr3LowPressManagPress Unsigned32,
|
|
compr3LowPressManagRestarts Unsigned32,
|
|
compr3HighPressManagTime Unsigned32,
|
|
compr3HighPressManagPress Unsigned32,
|
|
compr3HighPressManagRestarts Unsigned32,
|
|
compr3HighPressManagMode Unsigned32,
|
|
compr3MinimumRuntime Unsigned32,
|
|
compr3ActualCurrReadBackFromComp Unsigned32,
|
|
compr3DesiredSpeedPower Unsigned32,
|
|
compr3OilTemperature Integer32,
|
|
compr5LowPressDigitalIn Unsigned32,
|
|
compr5LowPressAlarmPriorities Unsigned32,
|
|
compr6LowPressDigitalIn Unsigned32,
|
|
compr6LowPressAlarmPriorities Unsigned32
|
|
}
|
|
|
|
compressor3ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 3 config. active"
|
|
::= { confCompressor3Entry 9500 }
|
|
|
|
compr3CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 3 common alarm config"
|
|
::= { confCompressor3Entry 9507 }
|
|
|
|
compr3DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 3 digital out"
|
|
::= { confCompressor3Entry 9520 }
|
|
|
|
compr3AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 3 alarm digital in"
|
|
::= { confCompressor3Entry 9521 }
|
|
|
|
compr3AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 3 alarm priorities"
|
|
::= { confCompressor3Entry 9522 }
|
|
|
|
compr3LowPressDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 low press. Digital in"
|
|
::= { confCompressor3Entry 9524 }
|
|
|
|
compr3LowPressAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 low press. Alarm priorities"
|
|
::= { confCompressor3Entry 9525 }
|
|
|
|
compr3LowPressManagTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 low press manag. time"
|
|
::= { confCompressor3Entry 9529 }
|
|
|
|
compr3LowPressManagPress OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 low press manag. press."
|
|
::= { confCompressor3Entry 9530 }
|
|
|
|
compr3LowPressManagRestarts OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 low press manag. restarts"
|
|
::= { confCompressor3Entry 9531 }
|
|
|
|
compr3HighPressManagTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 high press manag. time"
|
|
::= { confCompressor3Entry 9532 }
|
|
|
|
compr3HighPressManagPress OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 high press manag. press."
|
|
::= { confCompressor3Entry 9533 }
|
|
|
|
compr3HighPressManagRestarts OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 high press manag. restarts"
|
|
::= { confCompressor3Entry 9534 }
|
|
|
|
compr3HighPressManagMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 high press manag. mode"
|
|
::= { confCompressor3Entry 9535 }
|
|
|
|
compr3MinimumRuntime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..3600)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 minimum runtime"
|
|
::= { confCompressor3Entry 9536 }
|
|
|
|
compr3ActualCurrReadBackFromComp OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 actual current speed (read back from comp.)"
|
|
::= { confCompressor3Entry 9537 }
|
|
|
|
compr3DesiredSpeedPower OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 desired speed/power"
|
|
::= { confCompressor3Entry 9538 }
|
|
|
|
compr3OilTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.3 oil temperature"
|
|
::= { confCompressor3Entry 9539 }
|
|
|
|
compr5LowPressDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 low press. Digital in"
|
|
::= { confCompressor3Entry 9724 }
|
|
|
|
compr5LowPressAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 low press. Alarm priorities"
|
|
::= { confCompressor3Entry 9725 }
|
|
|
|
compr6LowPressDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 low press. Digital in"
|
|
::= { confCompressor3Entry 9824 }
|
|
|
|
compr6LowPressAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 low press. Alarm priorities"
|
|
::= { confCompressor3Entry 9825 }
|
|
|
|
confCompressor4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCompressor4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCompressor4"
|
|
::= { confCompressor4 1 }
|
|
|
|
confCompressor4Entry OBJECT-TYPE
|
|
SYNTAX ConfCompressor4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCompressor4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCompressor4Table 1 }
|
|
|
|
ConfCompressor4Entry ::= SEQUENCE {
|
|
compressor4ConfigActive Unsigned32,
|
|
compr4CommonAlarmConfig Unsigned32,
|
|
compr4DigitalOut Unsigned32,
|
|
compr4AlarmDigitalIn Unsigned32,
|
|
compr4AlarmPriorities Unsigned32,
|
|
compr4LowPressManagTime Unsigned32,
|
|
compr4LowPressManagPress Unsigned32,
|
|
compr4LowPressManagRestarts Unsigned32,
|
|
compr4HighPressManagTime Unsigned32,
|
|
compr4HighPressManagPress Unsigned32,
|
|
compr4HighPressManagRestarts Unsigned32,
|
|
compr4HighPressManagMode Unsigned32,
|
|
compr4MinimumRuntime Unsigned32,
|
|
compr4ActualCurrReadBackFromComp Unsigned32,
|
|
compr4DesiredSpeedPower Unsigned32,
|
|
compr4OilTemperature Integer32
|
|
}
|
|
|
|
compressor4ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 4 config. active"
|
|
::= { confCompressor4Entry 9600 }
|
|
|
|
compr4CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 4 common alarm config"
|
|
::= { confCompressor4Entry 9607 }
|
|
|
|
compr4DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 4 digital out"
|
|
::= { confCompressor4Entry 9620 }
|
|
|
|
compr4AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 4 alarm digital in"
|
|
::= { confCompressor4Entry 9621 }
|
|
|
|
compr4AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 4 alarm priorities"
|
|
::= { confCompressor4Entry 9622 }
|
|
|
|
compr4LowPressManagTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 low press manag. time"
|
|
::= { confCompressor4Entry 9629 }
|
|
|
|
compr4LowPressManagPress OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 low press manag. press."
|
|
::= { confCompressor4Entry 9630 }
|
|
|
|
compr4LowPressManagRestarts OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 low press manag. restarts"
|
|
::= { confCompressor4Entry 9631 }
|
|
|
|
compr4HighPressManagTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 high press manag. time"
|
|
::= { confCompressor4Entry 9632 }
|
|
|
|
compr4HighPressManagPress OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 high press manag. press."
|
|
::= { confCompressor4Entry 9633 }
|
|
|
|
compr4HighPressManagRestarts OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 high press manag. restarts"
|
|
::= { confCompressor4Entry 9634 }
|
|
|
|
compr4HighPressManagMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 high press manag. mode"
|
|
::= { confCompressor4Entry 9635 }
|
|
|
|
compr4MinimumRuntime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..3600)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 minimum runtime"
|
|
::= { confCompressor4Entry 9636 }
|
|
|
|
compr4ActualCurrReadBackFromComp OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 actual current speed (read back from comp.)"
|
|
::= { confCompressor4Entry 9637 }
|
|
|
|
compr4DesiredSpeedPower OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 desired speed/power"
|
|
::= { confCompressor4Entry 9638 }
|
|
|
|
compr4OilTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.4 oil temperature"
|
|
::= { confCompressor4Entry 9639 }
|
|
|
|
confCompressor5Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCompressor5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCompressor5"
|
|
::= { confCompressor5 1 }
|
|
|
|
confCompressor5Entry OBJECT-TYPE
|
|
SYNTAX ConfCompressor5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCompressor5"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCompressor5Table 1 }
|
|
|
|
ConfCompressor5Entry ::= SEQUENCE {
|
|
compressor5ConfigActive Unsigned32,
|
|
compr5CommonAlarmConfig Unsigned32,
|
|
compr5DigitalOut Unsigned32,
|
|
compr5AlarmDigitalIn Unsigned32,
|
|
compr5AlarmPriorities Unsigned32,
|
|
compr5LowPressManagTime Unsigned32,
|
|
compr5LowPressManagPress Unsigned32,
|
|
compr5LowPressManagRestarts Unsigned32,
|
|
compr5HighPressManagTime Unsigned32,
|
|
compr5HighPressManagPress Unsigned32,
|
|
compr5HighPressManagRestarts Unsigned32,
|
|
compr5HighPressManagMode Unsigned32,
|
|
compr5MinimumRuntime Unsigned32,
|
|
compr5ActualCurrReadBackFromComp Unsigned32,
|
|
compr5DesiredSpeedPower Unsigned32,
|
|
compr5OilTemperature Integer32
|
|
}
|
|
|
|
compressor5ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 5 config. active"
|
|
::= { confCompressor5Entry 9700 }
|
|
|
|
compr5CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 5 common alarm config"
|
|
::= { confCompressor5Entry 9707 }
|
|
|
|
compr5DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 5 digital out"
|
|
::= { confCompressor5Entry 9720 }
|
|
|
|
compr5AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 5 alarm digital in"
|
|
::= { confCompressor5Entry 9721 }
|
|
|
|
compr5AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 5 alarm priorities"
|
|
::= { confCompressor5Entry 9722 }
|
|
|
|
compr5LowPressManagTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 low press manag. time"
|
|
::= { confCompressor5Entry 9729 }
|
|
|
|
compr5LowPressManagPress OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 low press manag. press."
|
|
::= { confCompressor5Entry 9730 }
|
|
|
|
compr5LowPressManagRestarts OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 low press manag. restarts"
|
|
::= { confCompressor5Entry 9731 }
|
|
|
|
compr5HighPressManagTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 high press manag. time"
|
|
::= { confCompressor5Entry 9732 }
|
|
|
|
compr5HighPressManagPress OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 high press manag. press."
|
|
::= { confCompressor5Entry 9733 }
|
|
|
|
compr5HighPressManagRestarts OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 high press manag. restarts"
|
|
::= { confCompressor5Entry 9734 }
|
|
|
|
compr5HighPressManagMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 high press manag. mode"
|
|
::= { confCompressor5Entry 9735 }
|
|
|
|
compr5MinimumRuntime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..3600)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 minimum runtime"
|
|
::= { confCompressor5Entry 9736 }
|
|
|
|
compr5ActualCurrReadBackFromComp OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 actual current speed (read back from comp.)"
|
|
::= { confCompressor5Entry 9737 }
|
|
|
|
compr5DesiredSpeedPower OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 desired speed/power"
|
|
::= { confCompressor5Entry 9738 }
|
|
|
|
compr5OilTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.5 oil temperature"
|
|
::= { confCompressor5Entry 9739 }
|
|
|
|
confCompressor6Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCompressor6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCompressor6"
|
|
::= { confCompressor6 1 }
|
|
|
|
confCompressor6Entry OBJECT-TYPE
|
|
SYNTAX ConfCompressor6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCompressor6"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCompressor6Table 1 }
|
|
|
|
ConfCompressor6Entry ::= SEQUENCE {
|
|
compressor6ConfigActive Unsigned32,
|
|
compr6CommonAlarmConfig Unsigned32,
|
|
compr6DigitalOut Unsigned32,
|
|
compr6AlarmDigitalIn Unsigned32,
|
|
compr6AlarmPriorities Unsigned32,
|
|
compr6LowPressManagTime Unsigned32,
|
|
compr6LowPressManagPress Unsigned32,
|
|
compr6LowPressManagRestarts Unsigned32,
|
|
compr6HighPressManagTime Unsigned32,
|
|
compr6HighPressManagPress Unsigned32,
|
|
compr6HighPressManagRestarts Unsigned32,
|
|
compr6HighPressManagMode Unsigned32,
|
|
compr6MinimumRuntime Unsigned32,
|
|
compr6ActualCurrReadBackFromComp Unsigned32,
|
|
compr6DesiredSpeedPower Unsigned32,
|
|
compr6OilTemperature Integer32
|
|
}
|
|
|
|
compressor6ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 6 config. active"
|
|
::= { confCompressor6Entry 9800 }
|
|
|
|
compr6CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 6 common alarm config"
|
|
::= { confCompressor6Entry 9807 }
|
|
|
|
compr6DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 6 digital out"
|
|
::= { confCompressor6Entry 9820 }
|
|
|
|
compr6AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 6 alarm digital in"
|
|
::= { confCompressor6Entry 9821 }
|
|
|
|
compr6AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 6 alarm priorities"
|
|
::= { confCompressor6Entry 9822 }
|
|
|
|
compr6LowPressManagTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 low press manag. time"
|
|
::= { confCompressor6Entry 9829 }
|
|
|
|
compr6LowPressManagPress OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 low press manag. press."
|
|
::= { confCompressor6Entry 9830 }
|
|
|
|
compr6LowPressManagRestarts OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 low press manag. restarts"
|
|
::= { confCompressor6Entry 9831 }
|
|
|
|
compr6HighPressManagTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 high press manag. time"
|
|
::= { confCompressor6Entry 9832 }
|
|
|
|
compr6HighPressManagPress OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 high press manag. press."
|
|
::= { confCompressor6Entry 9833 }
|
|
|
|
compr6HighPressManagRestarts OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 high press manag. restarts"
|
|
::= { confCompressor6Entry 9834 }
|
|
|
|
compr6HighPressManagMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 high press manag. mode"
|
|
::= { confCompressor6Entry 9835 }
|
|
|
|
compr6MinimumRuntime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..3600)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 minimum runtime"
|
|
::= { confCompressor6Entry 9836 }
|
|
|
|
compr6ActualCurrReadBackFromComp OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 actual current speed (read back from comp.)"
|
|
::= { confCompressor6Entry 9837 }
|
|
|
|
compr6DesiredSpeedPower OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 desired speed/power"
|
|
::= { confCompressor6Entry 9838 }
|
|
|
|
compr6OilTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.6 oil temperature"
|
|
::= { confCompressor6Entry 9839 }
|
|
|
|
confSuctionValvesTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSuctionValvesEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSuctionValves"
|
|
::= { confSuctionValves 1 }
|
|
|
|
confSuctionValvesEntry OBJECT-TYPE
|
|
SYNTAX ConfSuctionValvesEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSuctionValves"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSuctionValvesTable 1 }
|
|
|
|
ConfSuctionValvesEntry ::= SEQUENCE {
|
|
suctionvalve1ConfigActive Unsigned32,
|
|
suctionvalve1AnalogOut Unsigned32,
|
|
suctionvalve2ConfigActive Unsigned32,
|
|
suctionvalve2AnalogOut Unsigned32
|
|
}
|
|
|
|
suctionvalve1ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve1 config. Active"
|
|
::= { confSuctionValvesEntry 4600 }
|
|
|
|
suctionvalve1AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve1 analog out"
|
|
::= { confSuctionValvesEntry 4610 }
|
|
|
|
suctionvalve2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve2 config. Active"
|
|
::= { confSuctionValvesEntry 4700 }
|
|
|
|
suctionvalve2AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve2 analog out"
|
|
::= { confSuctionValvesEntry 4710 }
|
|
|
|
confGECWValveTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfGECWValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confGECWValve"
|
|
::= { confGECWValve 3 }
|
|
|
|
confGECWValveEntry OBJECT-TYPE
|
|
SYNTAX ConfGECWValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confGECWValve"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confGECWValveTable 1 }
|
|
|
|
ConfGECWValveEntry ::= SEQUENCE {
|
|
gECWValveConfigActive Unsigned32,
|
|
gECWValveCloseWithComprStart Unsigned32,
|
|
gECWValveCloseIfWTOverSP Unsigned32,
|
|
gECWValveHeatingPermitted Unsigned32,
|
|
gECWValveAnalogOut1 Unsigned32,
|
|
gECWValveAnalogOut2 Unsigned32,
|
|
gECWValveDinForSwitch Unsigned32,
|
|
gECWValveOpeningGradeSetpoint Unsigned32,
|
|
gECWValveDoutForSwitch Unsigned32,
|
|
gECWValveOperationMode Unsigned32,
|
|
gECWValveAnalogIn1 Unsigned32,
|
|
gECWValveOpeningGradeReturned1 Unsigned32,
|
|
gECWValveOpeningve1DuringSwitch Unsigned32,
|
|
gECWValveAnalogIn2 Unsigned32,
|
|
gECWValveOpeningGradeReturned2 Unsigned32,
|
|
gECWValveControlCycle Unsigned32,
|
|
gECWValvePFactor Unsigned32,
|
|
gECWValveIFactor Unsigned32,
|
|
gECWValveDFactor Unsigned32,
|
|
gECWValveMaximumOpeningTime Unsigned32,
|
|
gECWValveMaxAdjust Unsigned32,
|
|
gECWValveMaxAdjustCalculated Unsigned32,
|
|
gECWValveChillerverAnalogOutput Unsigned32,
|
|
gECWValveControlStart Integer32
|
|
}
|
|
|
|
gECWValveConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve config active"
|
|
::= { confGECWValveEntry 5200 }
|
|
|
|
gECWValveCloseWithComprStart OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve close with compr.-start"
|
|
::= { confGECWValveEntry 5202 }
|
|
|
|
gECWValveCloseIfWTOverSP OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve close if WT over SP"
|
|
::= { confGECWValveEntry 5203 }
|
|
|
|
gECWValveHeatingPermitted OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve heating permitted"
|
|
::= { confGECWValveEntry 5204 }
|
|
|
|
gECWValveAnalogOut1 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve analog out 1"
|
|
::= { confGECWValveEntry 5210 }
|
|
|
|
gECWValveAnalogOut2 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve analog out 2"
|
|
::= { confGECWValveEntry 5216 }
|
|
|
|
gECWValveDinForSwitch OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve din for switch"
|
|
::= { confGECWValveEntry 5217 }
|
|
|
|
gECWValveOpeningGradeSetpoint OBJECT-TYPE
|
|
SYNTAX Unsigned32 (50..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve opening grade setpoint"
|
|
::= { confGECWValveEntry 5218 }
|
|
|
|
gECWValveDoutForSwitch OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve dout for switch"
|
|
::= { confGECWValveEntry 5222 }
|
|
|
|
gECWValveOperationMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..3)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve operation mode"
|
|
::= { confGECWValveEntry 5223 }
|
|
|
|
gECWValveAnalogIn1 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve analog in 1"
|
|
::= { confGECWValveEntry 5225 }
|
|
|
|
gECWValveOpeningGradeReturned1 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve opening grade returned 1"
|
|
::= { confGECWValveEntry 5226 }
|
|
|
|
gECWValveOpeningve1DuringSwitch OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve opening grade of valve 1 during switch"
|
|
::= { confGECWValveEntry 5228 }
|
|
|
|
gECWValveAnalogIn2 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve analog in 2"
|
|
::= { confGECWValveEntry 5229 }
|
|
|
|
gECWValveOpeningGradeReturned2 OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve opening grade returned 2"
|
|
::= { confGECWValveEntry 5230 }
|
|
|
|
gECWValveControlCycle OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve control cycle"
|
|
::= { confGECWValveEntry 5231 }
|
|
|
|
gECWValvePFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve P factor"
|
|
::= { confGECWValveEntry 5232 }
|
|
|
|
gECWValveIFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve I factor"
|
|
::= { confGECWValveEntry 5233 }
|
|
|
|
gECWValveDFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve D factor"
|
|
::= { confGECWValveEntry 5234 }
|
|
|
|
gECWValveMaximumOpeningTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve maximum opening time"
|
|
::= { confGECWValveEntry 5235 }
|
|
|
|
gECWValveMaxAdjust OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..30)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve max adjust"
|
|
::= { confGECWValveEntry 5236 }
|
|
|
|
gECWValveMaxAdjustCalculated OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve max adjust, calculated"
|
|
::= { confGECWValveEntry 5237 }
|
|
|
|
gECWValveChillerverAnalogOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve ChillerSaver analog output"
|
|
::= { confGECWValveEntry 5239 }
|
|
|
|
gECWValveControlStart OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve control start"
|
|
::= { confGECWValveEntry 5243 }
|
|
|
|
confGECWValve1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfGECWValve1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confGECWValve1"
|
|
::= { confGECWValve1 1 }
|
|
|
|
confGECWValve1Entry OBJECT-TYPE
|
|
SYNTAX ConfGECWValve1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confGECWValve1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confGECWValve1Table 1 }
|
|
|
|
ConfGECWValve1Entry ::= SEQUENCE {
|
|
gECWValve1ConfigActive Unsigned32,
|
|
gECWValve1ManualOperationActive Unsigned32,
|
|
gECWValve1CloseIfWTOverSP Unsigned32,
|
|
gECWValve1HeatingPermitted Unsigned32,
|
|
gECWValve1AnalogOutputInverted Unsigned32,
|
|
gECWValve1StartTemperature Integer32,
|
|
gECWValve1AnalogOut Unsigned32,
|
|
gECWValve1GEOffTempAbsolute Integer32,
|
|
gECWValve1OpeningGrade Unsigned32,
|
|
gECWValve1ManOpetionOpeningGrade Unsigned32,
|
|
gECWValve1AnalogIn Unsigned32,
|
|
gECWValve1OpeningGradeReturned Unsigned32,
|
|
gECWValve1PFactor Unsigned32,
|
|
gECWValve1IFactor Unsigned32,
|
|
gECWValve1DFactor Unsigned32,
|
|
gECWValve1ControlStart Integer32,
|
|
gECWValve1GEOffTempRelative Integer32
|
|
}
|
|
|
|
gECWValve1ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 config active"
|
|
::= { confGECWValve1Entry 11400 }
|
|
|
|
gECWValve1ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 manual operation active"
|
|
::= { confGECWValve1Entry 11401 }
|
|
|
|
gECWValve1CloseIfWTOverSP OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 close if WT over SP"
|
|
::= { confGECWValve1Entry 11403 }
|
|
|
|
gECWValve1HeatingPermitted OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 heating permitted"
|
|
::= { confGECWValve1Entry 11404 }
|
|
|
|
gECWValve1AnalogOutputInverted OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 analog output inverted"
|
|
::= { confGECWValve1Entry 11405 }
|
|
|
|
gECWValve1StartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-99..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 start temperature"
|
|
::= { confGECWValve1Entry 11408 }
|
|
|
|
gECWValve1AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 analog out"
|
|
::= { confGECWValve1Entry 11410 }
|
|
|
|
gECWValve1GEOffTempAbsolute OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 GE-off-temp absolute"
|
|
::= { confGECWValve1Entry 11411 }
|
|
|
|
gECWValve1OpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 opening grade"
|
|
::= { confGECWValve1Entry 11414 }
|
|
|
|
gECWValve1ManOpetionOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 man. operation opening grade"
|
|
::= { confGECWValve1Entry 11415 }
|
|
|
|
gECWValve1AnalogIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 analog in"
|
|
::= { confGECWValve1Entry 11425 }
|
|
|
|
gECWValve1OpeningGradeReturned OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 opening grade returned"
|
|
::= { confGECWValve1Entry 11426 }
|
|
|
|
gECWValve1PFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 P factor"
|
|
::= { confGECWValve1Entry 11432 }
|
|
|
|
gECWValve1IFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 I factor"
|
|
::= { confGECWValve1Entry 11433 }
|
|
|
|
gECWValve1DFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 D factor"
|
|
::= { confGECWValve1Entry 11434 }
|
|
|
|
gECWValve1ControlStart OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 control start"
|
|
::= { confGECWValve1Entry 11443 }
|
|
|
|
gECWValve1GEOffTempRelative OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 1 GE-off-temp relative"
|
|
::= { confGECWValve1Entry 11444 }
|
|
|
|
confGECWValve2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfGECWValve2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confGECWValve2"
|
|
::= { confGECWValve2 1 }
|
|
|
|
confGECWValve2Entry OBJECT-TYPE
|
|
SYNTAX ConfGECWValve2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confGECWValve2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confGECWValve2Table 1 }
|
|
|
|
ConfGECWValve2Entry ::= SEQUENCE {
|
|
gECWValve2ConfigActive Unsigned32,
|
|
gECWValve2ManualOperationActive Unsigned32,
|
|
gECWValve2CloseIfWTOverSP Unsigned32,
|
|
gECWValve2HeatingPermitted Unsigned32,
|
|
gECWValve2AnalogOutputInverted Unsigned32,
|
|
gECWValve2StartTemperature Integer32,
|
|
gECWValve2AnalogOut Unsigned32,
|
|
gECWValve2GEOffTempAbsolute Integer32,
|
|
gECWValve2OpeningGrade Unsigned32,
|
|
gECWValve2ManOpetionOpeningGrade Unsigned32,
|
|
gECWValve2AnalogIn Unsigned32,
|
|
gECWValve2OpeningGradeReturned Unsigned32,
|
|
gECWValve2PFactor Unsigned32,
|
|
gECWValve2IFactor Unsigned32,
|
|
gECWValve2DFactor Unsigned32,
|
|
gECWValve2ControlStart Integer32,
|
|
gECWValve2GEOffTempRelative Integer32
|
|
}
|
|
|
|
gECWValve2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 config active"
|
|
::= { confGECWValve2Entry 11450 }
|
|
|
|
gECWValve2ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 manual operation active"
|
|
::= { confGECWValve2Entry 11451 }
|
|
|
|
gECWValve2CloseIfWTOverSP OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 close if WT over SP"
|
|
::= { confGECWValve2Entry 11453 }
|
|
|
|
gECWValve2HeatingPermitted OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 heating permitted"
|
|
::= { confGECWValve2Entry 11454 }
|
|
|
|
gECWValve2AnalogOutputInverted OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 analog output inverted"
|
|
::= { confGECWValve2Entry 11455 }
|
|
|
|
gECWValve2StartTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-99..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 start temperature"
|
|
::= { confGECWValve2Entry 11458 }
|
|
|
|
gECWValve2AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 analog out"
|
|
::= { confGECWValve2Entry 11460 }
|
|
|
|
gECWValve2GEOffTempAbsolute OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 GE-off-temp absolute"
|
|
::= { confGECWValve2Entry 11461 }
|
|
|
|
gECWValve2OpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 opening grade"
|
|
::= { confGECWValve2Entry 11464 }
|
|
|
|
gECWValve2ManOpetionOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 man. operation opening grade"
|
|
::= { confGECWValve2Entry 11465 }
|
|
|
|
gECWValve2AnalogIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 analog in"
|
|
::= { confGECWValve2Entry 11475 }
|
|
|
|
gECWValve2OpeningGradeReturned OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 opening grade returned"
|
|
::= { confGECWValve2Entry 11476 }
|
|
|
|
gECWValve2PFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 P factor"
|
|
::= { confGECWValve2Entry 11482 }
|
|
|
|
gECWValve2IFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 I factor"
|
|
::= { confGECWValve2Entry 11483 }
|
|
|
|
gECWValve2DFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 D factor"
|
|
::= { confGECWValve2Entry 11484 }
|
|
|
|
gECWValve2ControlStart OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 control start"
|
|
::= { confGECWValve2Entry 11493 }
|
|
|
|
gECWValve2GEOffTempRelative OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve 2 GE-off-temp relative"
|
|
::= { confGECWValve2Entry 11494 }
|
|
|
|
confGValveTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfGValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confGValve"
|
|
::= { confGValve 1 }
|
|
|
|
confGValveEntry OBJECT-TYPE
|
|
SYNTAX ConfGValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confGValve"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confGValveTable 1 }
|
|
|
|
ConfGValveEntry ::= SEQUENCE {
|
|
gValve1ConfigActive Unsigned32,
|
|
gValve1PressureSetpoint Unsigned32,
|
|
gValve1AnalogOut Unsigned32,
|
|
gValve1PreOpeningTime Unsigned32,
|
|
gValve1PreOpeningGrade Unsigned32,
|
|
gValve1IFactor Unsigned32,
|
|
gValve1DFactor Unsigned32,
|
|
gValve1ControlCycle Unsigned32,
|
|
gValve1MaxAdjust Unsigned32,
|
|
gValve1ControlFactorPFactor Unsigned32,
|
|
gValve1OpeningGradeSetpoint Unsigned32,
|
|
gValve1OpeningGradeMin Unsigned32,
|
|
gValve1MaximumOpeningTime Unsigned32,
|
|
gValve1MaxAdjustCalculated Unsigned32,
|
|
gValve1OpeningGreWatertempStart Integer32,
|
|
gValve1OpeningGradeStart Unsigned32,
|
|
gValve1OpeningGradeWatertempStop Integer32,
|
|
gValve1OpeningGradeStop Unsigned32,
|
|
gValve1PreOpeningGradeCalculated Unsigned32,
|
|
gValve1ControlStart Integer32,
|
|
gValve1StartingTmumOpeninggrade Integer32,
|
|
gValve1GradientFantOpeninggrade Integer32,
|
|
gValve2ConfigActive Unsigned32,
|
|
gValve2AnalogOut Unsigned32,
|
|
gValve2PreOpeningTime Unsigned32,
|
|
gValve2PreOpeningGrade Unsigned32,
|
|
gValve2IFactor Unsigned32,
|
|
gValve2DFactor Unsigned32,
|
|
gValve2MaxAdjust Unsigned32,
|
|
gValve2ControlFactorPFactor Unsigned32,
|
|
gValve2OpeningGradeSetpoint Unsigned32,
|
|
gValve2OpeningGradeMin Unsigned32,
|
|
gValve2ControlStart Integer32,
|
|
gValve2StartingTmumOpeninggrade Integer32,
|
|
gValve2GradientFantOpeninggrade Integer32
|
|
}
|
|
|
|
gValve1ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 config active"
|
|
::= { confGValveEntry 5300 }
|
|
|
|
gValve1PressureSetpoint OBJECT-TYPE
|
|
SYNTAX Unsigned32 (50..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 pressure setpoint"
|
|
::= { confGValveEntry 5308 }
|
|
|
|
gValve1AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 analog out"
|
|
::= { confGValveEntry 5309 }
|
|
|
|
gValve1PreOpeningTime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 pre opening time"
|
|
::= { confGValveEntry 5310 }
|
|
|
|
gValve1PreOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 pre opening grade"
|
|
::= { confGValveEntry 5311 }
|
|
|
|
gValve1IFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 I factor"
|
|
::= { confGValveEntry 5314 }
|
|
|
|
gValve1DFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 D factor"
|
|
::= { confGValveEntry 5315 }
|
|
|
|
gValve1ControlCycle OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 control cycle"
|
|
::= { confGValveEntry 5316 }
|
|
|
|
gValve1MaxAdjust OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 max adjust"
|
|
::= { confGValveEntry 5317 }
|
|
|
|
gValve1ControlFactorPFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 control factor / P factor"
|
|
::= { confGValveEntry 5318 }
|
|
|
|
gValve1OpeningGradeSetpoint OBJECT-TYPE
|
|
SYNTAX Unsigned32 (50..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 opening grade setpoint"
|
|
::= { confGValveEntry 5319 }
|
|
|
|
gValve1OpeningGradeMin OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 opening grade min"
|
|
::= { confGValveEntry 5320 }
|
|
|
|
gValve1MaximumOpeningTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 maximum opening time"
|
|
::= { confGValveEntry 5321 }
|
|
|
|
gValve1MaxAdjustCalculated OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 max adjust, calculated"
|
|
::= { confGValveEntry 5322 }
|
|
|
|
gValve1OpeningGreWatertempStart OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 opening grade, watertemp start"
|
|
::= { confGValveEntry 5323 }
|
|
|
|
gValve1OpeningGradeStart OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 opening grade start"
|
|
::= { confGValveEntry 5324 }
|
|
|
|
gValve1OpeningGradeWatertempStop OBJECT-TYPE
|
|
SYNTAX Integer32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 opening grade, watertemp stop"
|
|
::= { confGValveEntry 5325 }
|
|
|
|
gValve1OpeningGradeStop OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 opening grade stop"
|
|
::= { confGValveEntry 5326 }
|
|
|
|
gValve1PreOpeningGradeCalculated OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 pre opening grade, calculated"
|
|
::= { confGValveEntry 5327 }
|
|
|
|
gValve1ControlStart OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 control start"
|
|
::= { confGValveEntry 5328 }
|
|
|
|
gValve1StartingTmumOpeninggrade OBJECT-TYPE
|
|
SYNTAX Integer32 (0..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 Starting temperature for the temperature dependant minimum openinggrade"
|
|
::= { confGValveEntry 5329 }
|
|
|
|
gValve1GradientFantOpeninggrade OBJECT-TYPE
|
|
SYNTAX Integer32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 Gradient for the temperature dependant openinggrade"
|
|
::= { confGValveEntry 5330 }
|
|
|
|
gValve2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 config active"
|
|
::= { confGValveEntry 5350 }
|
|
|
|
gValve2AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 analog out"
|
|
::= { confGValveEntry 5359 }
|
|
|
|
gValve2PreOpeningTime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 pre opening time"
|
|
::= { confGValveEntry 5360 }
|
|
|
|
gValve2PreOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 pre opening grade"
|
|
::= { confGValveEntry 5361 }
|
|
|
|
gValve2IFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 I factor"
|
|
::= { confGValveEntry 5364 }
|
|
|
|
gValve2DFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 D factor"
|
|
::= { confGValveEntry 5365 }
|
|
|
|
gValve2MaxAdjust OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 max adjust"
|
|
::= { confGValveEntry 5367 }
|
|
|
|
gValve2ControlFactorPFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 control factor / P factor"
|
|
::= { confGValveEntry 5368 }
|
|
|
|
gValve2OpeningGradeSetpoint OBJECT-TYPE
|
|
SYNTAX Unsigned32 (50..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 opening grade setpoint"
|
|
::= { confGValveEntry 5369 }
|
|
|
|
gValve2OpeningGradeMin OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 opening grade min"
|
|
::= { confGValveEntry 5370 }
|
|
|
|
gValve2ControlStart OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 control start"
|
|
::= { confGValveEntry 5378 }
|
|
|
|
gValve2StartingTmumOpeninggrade OBJECT-TYPE
|
|
SYNTAX Integer32 (0..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 Starting temperature for the temperature dependant minimum openinggrade"
|
|
::= { confGValveEntry 5379 }
|
|
|
|
gValve2GradientFantOpeninggrade OBJECT-TYPE
|
|
SYNTAX Integer32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 Gradient for the temperature dependant openinggrade"
|
|
::= { confGValveEntry 5380 }
|
|
|
|
confHGBP1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfHGBP1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confHGBP1"
|
|
::= { confHGBP1 1 }
|
|
|
|
confHGBP1Entry OBJECT-TYPE
|
|
SYNTAX ConfHGBP1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confHGBP1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confHGBP1Table 1 }
|
|
|
|
ConfHGBP1Entry ::= SEQUENCE {
|
|
hgbp1ConfigActive Unsigned32,
|
|
hgbp1PFactor Unsigned32,
|
|
hgbp1IFactor Unsigned32,
|
|
hgbp1DFactor Unsigned32,
|
|
hgbp1ControlCycle Unsigned32,
|
|
hgbp1PreOpeningTime Unsigned32,
|
|
hgbp1PreOpeningGrade Unsigned32,
|
|
hgbp1MinOpeningGrade Unsigned32,
|
|
hgbp1MaxOpeningGrade Unsigned32,
|
|
hgbp1AnalogOut Unsigned32
|
|
}
|
|
|
|
hgbp1ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp1 config. active"
|
|
::= { confHGBP1Entry 9300 }
|
|
|
|
hgbp1PFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp1 p-factor"
|
|
::= { confHGBP1Entry 9308 }
|
|
|
|
hgbp1IFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp1 i-factor"
|
|
::= { confHGBP1Entry 9309 }
|
|
|
|
hgbp1DFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp1 d-factor"
|
|
::= { confHGBP1Entry 9310 }
|
|
|
|
hgbp1ControlCycle OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp1 control cycle"
|
|
::= { confHGBP1Entry 9311 }
|
|
|
|
hgbp1PreOpeningTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..120)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp1 pre opening time"
|
|
::= { confHGBP1Entry 9312 }
|
|
|
|
hgbp1PreOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp1 pre opening grade"
|
|
::= { confHGBP1Entry 9313 }
|
|
|
|
hgbp1MinOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp1 min opening grade"
|
|
::= { confHGBP1Entry 9314 }
|
|
|
|
hgbp1MaxOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp1 max opening grade"
|
|
::= { confHGBP1Entry 9315 }
|
|
|
|
hgbp1AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp1 analog out"
|
|
::= { confHGBP1Entry 9316 }
|
|
|
|
confHGBP2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfHGBP2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confHGBP2"
|
|
::= { confHGBP2 1 }
|
|
|
|
confHGBP2Entry OBJECT-TYPE
|
|
SYNTAX ConfHGBP2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confHGBP2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confHGBP2Table 1 }
|
|
|
|
ConfHGBP2Entry ::= SEQUENCE {
|
|
hgbp2ConfigActive Unsigned32,
|
|
hgbp2PFactor Unsigned32,
|
|
hgbp2IFactor Unsigned32,
|
|
hgbp2DFactor Unsigned32,
|
|
hgbp2ControlCycle Unsigned32,
|
|
hgbp2PreOpeningTime Unsigned32,
|
|
hgbp2PreOpeningGrade Unsigned32,
|
|
hgbp2MinOpeningGrade Unsigned32,
|
|
hgbp2MaxOpeningGrade Unsigned32,
|
|
hgbp2AnalogOut Unsigned32
|
|
}
|
|
|
|
hgbp2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp2 config. active"
|
|
::= { confHGBP2Entry 9400 }
|
|
|
|
hgbp2PFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp2 p-factor"
|
|
::= { confHGBP2Entry 9408 }
|
|
|
|
hgbp2IFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp2 i-factor"
|
|
::= { confHGBP2Entry 9409 }
|
|
|
|
hgbp2DFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp2 d-factor"
|
|
::= { confHGBP2Entry 9410 }
|
|
|
|
hgbp2ControlCycle OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp2 control cycle"
|
|
::= { confHGBP2Entry 9411 }
|
|
|
|
hgbp2PreOpeningTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..120)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp2 pre opening time"
|
|
::= { confHGBP2Entry 9412 }
|
|
|
|
hgbp2PreOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp2 pre opening grade"
|
|
::= { confHGBP2Entry 9413 }
|
|
|
|
hgbp2MinOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp2 min opening grade"
|
|
::= { confHGBP2Entry 9414 }
|
|
|
|
hgbp2MaxOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp2 max opening grade"
|
|
::= { confHGBP2Entry 9415 }
|
|
|
|
hgbp2AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp2 analog out"
|
|
::= { confHGBP2Entry 9416 }
|
|
|
|
confEEV1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfEEV1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confEEV1"
|
|
::= { confEEV1 1 }
|
|
|
|
confEEV1Entry OBJECT-TYPE
|
|
SYNTAX ConfEEV1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confEEV1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confEEV1Table 1 }
|
|
|
|
ConfEEV1Entry ::= SEQUENCE {
|
|
eev1ConfigActive Unsigned32,
|
|
eev1BatterySupplyAlcoVCM Unsigned32,
|
|
eev1MOPControlAlcoVCM Unsigned32,
|
|
eev1SuperheatControlModeAlcoVCM Unsigned32,
|
|
eev1PressureSensommonAlarmConfig Unsigned32,
|
|
eev1TemperatureSmmonAlarmConfig Unsigned32,
|
|
eev1StepperMotorommonAlarmConfig Unsigned32,
|
|
eev1ReliabilityCmonAlarmCarelEVD Unsigned32,
|
|
eev1BatteryHoldingTimeAlcoVCM Unsigned32,
|
|
eev1RefrigerantAlcoVCM Unsigned32,
|
|
eev1MOPTemperatureAlcoVCM Integer32,
|
|
eev1StartUpOpeniDurationAlcoVCM Unsigned32,
|
|
eev1StartUpOpening Unsigned32,
|
|
eev1ValveTypeAlcoVCM Unsigned32,
|
|
eev1SensorTypeEvPressureAlcoVCM Unsigned32,
|
|
eev1PressureSensorErrorAlarmprio Unsigned32,
|
|
eev1TemperatureSrErrorAlarmprio Unsigned32,
|
|
eev1StepperMotorErrorAlarmprio Unsigned32,
|
|
eev1Controller Unsigned32,
|
|
eev1ReliabilityCarelEVD Unsigned32,
|
|
eev1SuperheatSetpointCarelEVD Integer32,
|
|
eev1DehumidificaetpointCarelEVD Integer32,
|
|
eev1MOPTemperatureCarelEVD Integer32,
|
|
eev1RefrigerantCarelEVD Unsigned32,
|
|
eev1ValveTypeCarelEVD Unsigned32,
|
|
eev1SensorTypeEvPressureCarelEVD Unsigned32,
|
|
eev1SuctionTemperatureCarelEVD Integer32,
|
|
eev1EvaporationTperatureCarelEVD Integer32,
|
|
eev1EvaporationPressureCarelEVD Integer32,
|
|
eev1ReliabilityAlarmprioCarelEVD Unsigned32
|
|
}
|
|
|
|
eev1ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 config active"
|
|
::= { confEEV1Entry 8700 }
|
|
|
|
eev1BatterySupplyAlcoVCM OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 battery supply (Alco VCM)"
|
|
::= { confEEV1Entry 8701 }
|
|
|
|
eev1MOPControlAlcoVCM OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 MOP control (Alco VCM)"
|
|
::= { confEEV1Entry 8702 }
|
|
|
|
eev1SuperheatControlModeAlcoVCM OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 superheat control mode (Alco VCM)"
|
|
::= { confEEV1Entry 8703 }
|
|
|
|
eev1PressureSensommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 pressure sensor error common alarm config"
|
|
::= { confEEV1Entry 8708 }
|
|
|
|
eev1TemperatureSmmonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 temperature sensor error common alarm config"
|
|
::= { confEEV1Entry 8709 }
|
|
|
|
eev1StepperMotorommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 stepper motor error common alarm config"
|
|
::= { confEEV1Entry 8710 }
|
|
|
|
eev1ReliabilityCmonAlarmCarelEVD OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 reliability common alarm (Carel EVD)"
|
|
::= { confEEV1Entry 8712 }
|
|
|
|
eev1BatteryHoldingTimeAlcoVCM OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..254)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 battery holding time (Alco VCM)"
|
|
::= { confEEV1Entry 8716 }
|
|
|
|
eev1RefrigerantAlcoVCM OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..7)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 refrigerant (Alco VCM)"
|
|
::= { confEEV1Entry 8717 }
|
|
|
|
eev1MOPTemperatureAlcoVCM OBJECT-TYPE
|
|
SYNTAX Integer32 (-400..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 MOP temperature (Alco VCM)"
|
|
::= { confEEV1Entry 8718 }
|
|
|
|
eev1StartUpOpeniDurationAlcoVCM OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..30)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 start-up opening duration (Alco VCM)"
|
|
::= { confEEV1Entry 8721 }
|
|
|
|
eev1StartUpOpening OBJECT-TYPE
|
|
SYNTAX Unsigned32 (10..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 start-up opening"
|
|
::= { confEEV1Entry 8722 }
|
|
|
|
eev1ValveTypeAlcoVCM OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 valve type (Alco VCM)"
|
|
::= { confEEV1Entry 8723 }
|
|
|
|
eev1SensorTypeEvPressureAlcoVCM OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..3)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 sensor type evaporationg pressure (Alco VCM)"
|
|
::= { confEEV1Entry 8724 }
|
|
|
|
eev1PressureSensorErrorAlarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 pressure sensor error alarmprio"
|
|
::= { confEEV1Entry 8732 }
|
|
|
|
eev1TemperatureSrErrorAlarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 temperature sensor error alarmprio"
|
|
::= { confEEV1Entry 8733 }
|
|
|
|
eev1StepperMotorErrorAlarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 stepper motor error alarmprio"
|
|
::= { confEEV1Entry 8734 }
|
|
|
|
eev1Controller OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 controller"
|
|
::= { confEEV1Entry 8735 }
|
|
|
|
eev1ReliabilityCarelEVD OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 reliability (Carel EVD)"
|
|
::= { confEEV1Entry 8736 }
|
|
|
|
eev1SuperheatSetpointCarelEVD OBJECT-TYPE
|
|
SYNTAX Integer32 (-400..1800)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 superheat setpoint (Carel EVD)"
|
|
::= { confEEV1Entry 8737 }
|
|
|
|
eev1DehumidificaetpointCarelEVD OBJECT-TYPE
|
|
SYNTAX Integer32 (-400..1800)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 dehumidification superheat setpoint (Carel EVD)"
|
|
::= { confEEV1Entry 8738 }
|
|
|
|
eev1MOPTemperatureCarelEVD OBJECT-TYPE
|
|
SYNTAX Integer32 (-400..2000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 MOP temperature (Carel EVD)"
|
|
::= { confEEV1Entry 8739 }
|
|
|
|
eev1RefrigerantCarelEVD OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 refrigerant (Carel EVD)"
|
|
::= { confEEV1Entry 8740 }
|
|
|
|
eev1ValveTypeCarelEVD OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 valve type (Carel EVD)"
|
|
::= { confEEV1Entry 8741 }
|
|
|
|
eev1SensorTypeEvPressureCarelEVD OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 sensor type evaporationg pressure (Carel EVD)"
|
|
::= { confEEV1Entry 8742 }
|
|
|
|
eev1SuctionTemperatureCarelEVD OBJECT-TYPE
|
|
SYNTAX Integer32 (-600..2000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 suction temperature (Carel EVD)"
|
|
::= { confEEV1Entry 8743 }
|
|
|
|
eev1EvaporationTperatureCarelEVD OBJECT-TYPE
|
|
SYNTAX Integer32 (-600..2000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 evaporation temperature (Carel EVD)"
|
|
::= { confEEV1Entry 8744 }
|
|
|
|
eev1EvaporationPressureCarelEVD OBJECT-TYPE
|
|
SYNTAX Integer32 (-200..2000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 evaporation pressure (Carel EVD)"
|
|
::= { confEEV1Entry 8745 }
|
|
|
|
eev1ReliabilityAlarmprioCarelEVD OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 reliability alarmprio (Carel EVD)"
|
|
::= { confEEV1Entry 8746 }
|
|
|
|
confEEV2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfEEV2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confEEV2"
|
|
::= { confEEV2 1 }
|
|
|
|
confEEV2Entry OBJECT-TYPE
|
|
SYNTAX ConfEEV2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confEEV2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confEEV2Table 1 }
|
|
|
|
ConfEEV2Entry ::= SEQUENCE {
|
|
eev2ConfigActive Unsigned32,
|
|
eev2BatterySupply Unsigned32,
|
|
eev2MOPControl Unsigned32,
|
|
eev2SuperheatControlMode Unsigned32,
|
|
eev2PressureSensommonAlarmConfig Unsigned32,
|
|
eev2TemperatureSmmonAlarmConfig Unsigned32,
|
|
eev2StepperMotorommonAlarmConfig Unsigned32,
|
|
eev2AvailabilityErrorCommonAlarm Unsigned32,
|
|
eev2BatteryHoldingTime Unsigned32,
|
|
eev2Refrigerant Unsigned32,
|
|
eev2MOPTemperature Integer32,
|
|
eev2StartUpOpeningDuration Unsigned32,
|
|
eev2StartUpOpening Unsigned32,
|
|
eev2ValveType Unsigned32,
|
|
eev2SensorTypeEvorationgPressure Unsigned32,
|
|
eev2PressureSensorErrorAlarmprio Unsigned32,
|
|
eev2TemperatureSrErrorAlarmprio Unsigned32,
|
|
eev2StepperMotorErrorAlarmprio Unsigned32,
|
|
eev2Controller Unsigned32,
|
|
eev2AvailabilityCarelEVD Unsigned32,
|
|
eev2SuperheatSetpointCarelEVD Integer32,
|
|
eev2DehumidificaetpointCarelEVD Integer32,
|
|
eev2MOPTemperatureCarelEVD Integer32,
|
|
eev2RefrigerantCarelEVD Unsigned32,
|
|
eev2ValveTypeCarelEVD Unsigned32,
|
|
eev2SensorTypeEvPressureCarelEVD Unsigned32,
|
|
eev2SuctionTemperatureCarelEVD Integer32,
|
|
eev2EvaporationTperatureCarelEVD Integer32,
|
|
eev2EvaporationPressureCarelEVD Integer32,
|
|
eev2ReliabilityAlarmprioCarelEVD Unsigned32,
|
|
eev2CurrentCooliCapacityCarelEVD Unsigned32
|
|
}
|
|
|
|
eev2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 config active"
|
|
::= { confEEV2Entry 8800 }
|
|
|
|
eev2BatterySupply OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 battery supply"
|
|
::= { confEEV2Entry 8801 }
|
|
|
|
eev2MOPControl OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 MOP control"
|
|
::= { confEEV2Entry 8802 }
|
|
|
|
eev2SuperheatControlMode OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 superheat control mode"
|
|
::= { confEEV2Entry 8803 }
|
|
|
|
eev2PressureSensommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 pressure sensor error common alarm config"
|
|
::= { confEEV2Entry 8808 }
|
|
|
|
eev2TemperatureSmmonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 temperature sensor error common alarm config"
|
|
::= { confEEV2Entry 8809 }
|
|
|
|
eev2StepperMotorommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 stepper motor error common alarm config"
|
|
::= { confEEV2Entry 8810 }
|
|
|
|
eev2AvailabilityErrorCommonAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 availability error common alarm"
|
|
::= { confEEV2Entry 8812 }
|
|
|
|
eev2BatteryHoldingTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..254)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 battery holding time"
|
|
::= { confEEV2Entry 8816 }
|
|
|
|
eev2Refrigerant OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..7)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 refrigerant"
|
|
::= { confEEV2Entry 8817 }
|
|
|
|
eev2MOPTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-400..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 MOP temperature"
|
|
::= { confEEV2Entry 8818 }
|
|
|
|
eev2StartUpOpeningDuration OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..30)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 start-up opening duration"
|
|
::= { confEEV2Entry 8821 }
|
|
|
|
eev2StartUpOpening OBJECT-TYPE
|
|
SYNTAX Unsigned32 (10..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 start-up opening"
|
|
::= { confEEV2Entry 8822 }
|
|
|
|
eev2ValveType OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 valve type"
|
|
::= { confEEV2Entry 8823 }
|
|
|
|
eev2SensorTypeEvorationgPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..3)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 sensor type evaporationg pressure"
|
|
::= { confEEV2Entry 8824 }
|
|
|
|
eev2PressureSensorErrorAlarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 pressure sensor error alarmprio"
|
|
::= { confEEV2Entry 8832 }
|
|
|
|
eev2TemperatureSrErrorAlarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 temperature sensor error alarmprio"
|
|
::= { confEEV2Entry 8833 }
|
|
|
|
eev2StepperMotorErrorAlarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 stepper motor error alarmprio"
|
|
::= { confEEV2Entry 8834 }
|
|
|
|
eev2Controller OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 controller"
|
|
::= { confEEV2Entry 8835 }
|
|
|
|
eev2AvailabilityCarelEVD OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 availability (Carel EVD)"
|
|
::= { confEEV2Entry 8836 }
|
|
|
|
eev2SuperheatSetpointCarelEVD OBJECT-TYPE
|
|
SYNTAX Integer32 (-400..1800)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 superheat setpoint (Carel EVD)"
|
|
::= { confEEV2Entry 8837 }
|
|
|
|
eev2DehumidificaetpointCarelEVD OBJECT-TYPE
|
|
SYNTAX Integer32 (-400..1800)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 dehumidification superheat setpoint (Carel EVD)"
|
|
::= { confEEV2Entry 8838 }
|
|
|
|
eev2MOPTemperatureCarelEVD OBJECT-TYPE
|
|
SYNTAX Integer32 (-400..2000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 MOP temperature (Carel EVD)"
|
|
::= { confEEV2Entry 8839 }
|
|
|
|
eev2RefrigerantCarelEVD OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 refrigerant (Carel EVD)"
|
|
::= { confEEV2Entry 8840 }
|
|
|
|
eev2ValveTypeCarelEVD OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 valve type (Carel EVD)"
|
|
::= { confEEV2Entry 8841 }
|
|
|
|
eev2SensorTypeEvPressureCarelEVD OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 sensor type evaporationg pressure (Carel EVD)"
|
|
::= { confEEV2Entry 8842 }
|
|
|
|
eev2SuctionTemperatureCarelEVD OBJECT-TYPE
|
|
SYNTAX Integer32 (-600..2000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 suction temperature (Carel EVD)"
|
|
::= { confEEV2Entry 8843 }
|
|
|
|
eev2EvaporationTperatureCarelEVD OBJECT-TYPE
|
|
SYNTAX Integer32 (-600..2000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 evaporation temperature (Carel EVD)"
|
|
::= { confEEV2Entry 8844 }
|
|
|
|
eev2EvaporationPressureCarelEVD OBJECT-TYPE
|
|
SYNTAX Integer32 (-200..2000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 evaporation pressure (Carel EVD)"
|
|
::= { confEEV2Entry 8845 }
|
|
|
|
eev2ReliabilityAlarmprioCarelEVD OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 reliability alarmprio (Carel EVD)"
|
|
::= { confEEV2Entry 8846 }
|
|
|
|
eev2CurrentCooliCapacityCarelEVD OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 current cooling capacity (Carel EVD)"
|
|
::= { confEEV2Entry 8847 }
|
|
|
|
confDrycooler1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfDrycooler1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confDrycooler1"
|
|
::= { confDrycooler1 1 }
|
|
|
|
confDrycooler1Entry OBJECT-TYPE
|
|
SYNTAX ConfDrycooler1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confDrycooler1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confDrycooler1Table 1 }
|
|
|
|
ConfDrycooler1Entry ::= SEQUENCE {
|
|
drycooler1ConfigActive Unsigned32,
|
|
drycooler1CommonAlarmConfig Unsigned32,
|
|
drycooler1DigitalOut Unsigned32,
|
|
drycooler1AlarmDigitalIn Unsigned32,
|
|
drycooler1AlarmPriorities Unsigned32,
|
|
drycooler1AnalogOut Unsigned32,
|
|
drycooler1PreRunningSpeed Unsigned32,
|
|
drycooler1ControlCycle Unsigned32,
|
|
drycooler1MaxAdjust Unsigned32,
|
|
drycooler1ControlFactorPFactor Unsigned32,
|
|
drycooler1WaterStPrimaryInFCMode Integer32,
|
|
drycooler1IFactor Unsigned32,
|
|
drycooler1DFactor Unsigned32,
|
|
drycooler1MaxSpeedInDXMode Unsigned32,
|
|
drycooler1MinimumSpeed Unsigned32
|
|
}
|
|
|
|
drycooler1ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 config active"
|
|
::= { confDrycooler1Entry 5400 }
|
|
|
|
drycooler1CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 common alarm config"
|
|
::= { confDrycooler1Entry 5405 }
|
|
|
|
drycooler1DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 digital out"
|
|
::= { confDrycooler1Entry 5411 }
|
|
|
|
drycooler1AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 alarm digital in"
|
|
::= { confDrycooler1Entry 5412 }
|
|
|
|
drycooler1AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 alarm priorities"
|
|
::= { confDrycooler1Entry 5413 }
|
|
|
|
drycooler1AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 analog out"
|
|
::= { confDrycooler1Entry 5417 }
|
|
|
|
drycooler1PreRunningSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (50..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 pre running speed"
|
|
::= { confDrycooler1Entry 5418 }
|
|
|
|
drycooler1ControlCycle OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 control cycle"
|
|
::= { confDrycooler1Entry 5419 }
|
|
|
|
drycooler1MaxAdjust OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 max adjust"
|
|
::= { confDrycooler1Entry 5420 }
|
|
|
|
drycooler1ControlFactorPFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 control factor / P factor"
|
|
::= { confDrycooler1Entry 5421 }
|
|
|
|
drycooler1WaterStPrimaryInFCMode OBJECT-TYPE
|
|
SYNTAX Integer32 (50..350)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 water setpoint primary in FC-mode"
|
|
::= { confDrycooler1Entry 5423 }
|
|
|
|
drycooler1IFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 I factor"
|
|
::= { confDrycooler1Entry 5424 }
|
|
|
|
drycooler1DFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 D factor"
|
|
::= { confDrycooler1Entry 5425 }
|
|
|
|
drycooler1MaxSpeedInDXMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 max speed in DX-mode"
|
|
::= { confDrycooler1Entry 5426 }
|
|
|
|
drycooler1MinimumSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 minimum speed"
|
|
::= { confDrycooler1Entry 5427 }
|
|
|
|
confDrycooler2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfDrycooler2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confDrycooler2"
|
|
::= { confDrycooler2 1 }
|
|
|
|
confDrycooler2Entry OBJECT-TYPE
|
|
SYNTAX ConfDrycooler2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confDrycooler2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confDrycooler2Table 1 }
|
|
|
|
ConfDrycooler2Entry ::= SEQUENCE {
|
|
drycooler2ConfigActive Unsigned32,
|
|
drycooler2CommonAlarmConfig Unsigned32,
|
|
drycooler2DigitalOut Unsigned32,
|
|
drycooler2AlarmDigitalIn Unsigned32,
|
|
drycooler2AlarmPriorities Unsigned32
|
|
}
|
|
|
|
drycooler2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler2 config active"
|
|
::= { confDrycooler2Entry 5500 }
|
|
|
|
drycooler2CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler2 common alarm config"
|
|
::= { confDrycooler2Entry 5505 }
|
|
|
|
drycooler2DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler2 digital out"
|
|
::= { confDrycooler2Entry 5511 }
|
|
|
|
drycooler2AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler2 alarm digital in"
|
|
::= { confDrycooler2Entry 5512 }
|
|
|
|
drycooler2AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler2 alarm priorities"
|
|
::= { confDrycooler2Entry 5513 }
|
|
|
|
confDrycooler3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfDrycooler3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confDrycooler3"
|
|
::= { confDrycooler3 1 }
|
|
|
|
confDrycooler3Entry OBJECT-TYPE
|
|
SYNTAX ConfDrycooler3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confDrycooler3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confDrycooler3Table 1 }
|
|
|
|
ConfDrycooler3Entry ::= SEQUENCE {
|
|
drycooler3ConfigActive Unsigned32,
|
|
drycooler3CommonAlarmConfig Unsigned32,
|
|
drycooler3DigitalOut Unsigned32,
|
|
drycooler3AlarmDigitalIn Unsigned32,
|
|
drycooler3AlarmPriorities Unsigned32
|
|
}
|
|
|
|
drycooler3ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler3 config active"
|
|
::= { confDrycooler3Entry 5600 }
|
|
|
|
drycooler3CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler3 common alarm config"
|
|
::= { confDrycooler3Entry 5605 }
|
|
|
|
drycooler3DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler3 digital out"
|
|
::= { confDrycooler3Entry 5611 }
|
|
|
|
drycooler3AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler3 alarm digital in"
|
|
::= { confDrycooler3Entry 5612 }
|
|
|
|
drycooler3AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler3 alarm priorities"
|
|
::= { confDrycooler3Entry 5613 }
|
|
|
|
confDrycooler4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfDrycooler4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confDrycooler4"
|
|
::= { confDrycooler4 1 }
|
|
|
|
confDrycooler4Entry OBJECT-TYPE
|
|
SYNTAX ConfDrycooler4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confDrycooler4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confDrycooler4Table 1 }
|
|
|
|
ConfDrycooler4Entry ::= SEQUENCE {
|
|
drycooler4ConfigActive Unsigned32,
|
|
drycooler4CommonAlarmConfig Unsigned32,
|
|
drycooler4DigitalOut Unsigned32,
|
|
drycooler4AlarmDigitalIn Unsigned32,
|
|
drycooler4AlarmPriorities Unsigned32
|
|
}
|
|
|
|
drycooler4ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler4 config active"
|
|
::= { confDrycooler4Entry 5700 }
|
|
|
|
drycooler4CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler4 common alarm config"
|
|
::= { confDrycooler4Entry 5705 }
|
|
|
|
drycooler4DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler4 digital out"
|
|
::= { confDrycooler4Entry 5711 }
|
|
|
|
drycooler4AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler4 alarm digital in"
|
|
::= { confDrycooler4Entry 5712 }
|
|
|
|
drycooler4AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler4 alarm priorities"
|
|
::= { confDrycooler4Entry 5713 }
|
|
|
|
confPump1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfPump1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confPump1"
|
|
::= { confPump1 1 }
|
|
|
|
confPump1Entry OBJECT-TYPE
|
|
SYNTAX ConfPump1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confPump1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confPump1Table 1 }
|
|
|
|
ConfPump1Entry ::= SEQUENCE {
|
|
pump1ConfigActive Unsigned32,
|
|
pump1CommonAlarmConfig Unsigned32,
|
|
pump1Type Unsigned32,
|
|
pump1DigitalOut Unsigned32,
|
|
pump1AnalogOut Unsigned32,
|
|
pump1AlarmDigitalIn Unsigned32,
|
|
pump1AlarmPriorities Unsigned32,
|
|
pump1PreRuntime Unsigned32,
|
|
pump1PreSpeed Unsigned32,
|
|
pump1PartnerPump Unsigned32,
|
|
pump1IFactor Unsigned32,
|
|
pump1DFactor Unsigned32,
|
|
pump1ControlCycle Unsigned32,
|
|
pump1MaxAdjust Unsigned32,
|
|
pump1ControlFactor Unsigned32,
|
|
pump1MinSpeed Unsigned32,
|
|
pump1AfterRuntime Unsigned32
|
|
}
|
|
|
|
pump1ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 config active"
|
|
::= { confPump1Entry 5800 }
|
|
|
|
pump1CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 common alarm config"
|
|
::= { confPump1Entry 5804 }
|
|
|
|
pump1Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..7)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 type"
|
|
::= { confPump1Entry 5808 }
|
|
|
|
pump1DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 digital out"
|
|
::= { confPump1Entry 5813 }
|
|
|
|
pump1AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 analog out"
|
|
::= { confPump1Entry 5814 }
|
|
|
|
pump1AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 alarm digital in"
|
|
::= { confPump1Entry 5815 }
|
|
|
|
pump1AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 alarm priorities"
|
|
::= { confPump1Entry 5816 }
|
|
|
|
pump1PreRuntime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..120)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 pre runtime"
|
|
::= { confPump1Entry 5818 }
|
|
|
|
pump1PreSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 pre speed"
|
|
::= { confPump1Entry 5819 }
|
|
|
|
pump1PartnerPump OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 partner-pump"
|
|
::= { confPump1Entry 5824 }
|
|
|
|
pump1IFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 I factor"
|
|
::= { confPump1Entry 5825 }
|
|
|
|
pump1DFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 D factor"
|
|
::= { confPump1Entry 5826 }
|
|
|
|
pump1ControlCycle OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 control cycle"
|
|
::= { confPump1Entry 5827 }
|
|
|
|
pump1MaxAdjust OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 max adjust"
|
|
::= { confPump1Entry 5828 }
|
|
|
|
pump1ControlFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 control factor"
|
|
::= { confPump1Entry 5829 }
|
|
|
|
pump1MinSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 min speed"
|
|
::= { confPump1Entry 5831 }
|
|
|
|
pump1AfterRuntime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..120)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 after runtime"
|
|
::= { confPump1Entry 5832 }
|
|
|
|
confPump2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfPump2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confPump2"
|
|
::= { confPump2 1 }
|
|
|
|
confPump2Entry OBJECT-TYPE
|
|
SYNTAX ConfPump2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confPump2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confPump2Table 1 }
|
|
|
|
ConfPump2Entry ::= SEQUENCE {
|
|
pump2ConfigActive Unsigned32,
|
|
pump2CommonAlarmConfig Unsigned32,
|
|
pump2Type Unsigned32,
|
|
pump2DigitalOut Unsigned32,
|
|
pump2AnalogOut Unsigned32,
|
|
pump2AlarmDigitalIn Unsigned32,
|
|
pump2AlarmPriorities Unsigned32,
|
|
pump2PreRuntime Unsigned32,
|
|
pump2PreSpeed Unsigned32,
|
|
pump2PartnerPump Unsigned32,
|
|
pump2IFactor Unsigned32,
|
|
pump2DFactor Unsigned32,
|
|
pump2ControlCycle Unsigned32,
|
|
pump2MaxAdjust Unsigned32,
|
|
pump2ControlFactor Unsigned32,
|
|
pump2MinSpeed Unsigned32
|
|
}
|
|
|
|
pump2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 config active"
|
|
::= { confPump2Entry 5900 }
|
|
|
|
pump2CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 common alarm config"
|
|
::= { confPump2Entry 5904 }
|
|
|
|
pump2Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..7)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 type"
|
|
::= { confPump2Entry 5908 }
|
|
|
|
pump2DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 digital out"
|
|
::= { confPump2Entry 5913 }
|
|
|
|
pump2AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 analog out"
|
|
::= { confPump2Entry 5914 }
|
|
|
|
pump2AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 alarm digital in"
|
|
::= { confPump2Entry 5915 }
|
|
|
|
pump2AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 alarm priorities"
|
|
::= { confPump2Entry 5916 }
|
|
|
|
pump2PreRuntime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..120)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 pre runtime"
|
|
::= { confPump2Entry 5918 }
|
|
|
|
pump2PreSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 pre speed"
|
|
::= { confPump2Entry 5919 }
|
|
|
|
pump2PartnerPump OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 partner-pump"
|
|
::= { confPump2Entry 5924 }
|
|
|
|
pump2IFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 I factor"
|
|
::= { confPump2Entry 5925 }
|
|
|
|
pump2DFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 D factor"
|
|
::= { confPump2Entry 5926 }
|
|
|
|
pump2ControlCycle OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 control cycle"
|
|
::= { confPump2Entry 5927 }
|
|
|
|
pump2MaxAdjust OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 max adjust"
|
|
::= { confPump2Entry 5928 }
|
|
|
|
pump2ControlFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 control factor"
|
|
::= { confPump2Entry 5929 }
|
|
|
|
pump2MinSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 min speed"
|
|
::= { confPump2Entry 5931 }
|
|
|
|
confPump3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfPump3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confPump3"
|
|
::= { confPump3 1 }
|
|
|
|
confPump3Entry OBJECT-TYPE
|
|
SYNTAX ConfPump3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confPump3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confPump3Table 1 }
|
|
|
|
ConfPump3Entry ::= SEQUENCE {
|
|
pump3ConfigActive Unsigned32,
|
|
pump3CommonAlarmConfig Unsigned32,
|
|
pump3Type Unsigned32,
|
|
pump3DigitalOut Unsigned32,
|
|
pump3AnalogOut Unsigned32,
|
|
pump3AlarmDigitalIn Unsigned32,
|
|
pump3AlarmPriorities Unsigned32,
|
|
pump3PreRuntime Unsigned32,
|
|
pump3PreSpeed Unsigned32,
|
|
pump3PartnerPump Unsigned32,
|
|
pump3IFactor Unsigned32,
|
|
pump3DFactor Unsigned32,
|
|
pump3ControlCycle Unsigned32,
|
|
pump3MaxAdjust Unsigned32,
|
|
pump3ControlFactorPFactor Unsigned32,
|
|
pump3MinSpeed Unsigned32
|
|
}
|
|
|
|
pump3ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 config active"
|
|
::= { confPump3Entry 6000 }
|
|
|
|
pump3CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 common alarm config"
|
|
::= { confPump3Entry 6004 }
|
|
|
|
pump3Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..7)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 type"
|
|
::= { confPump3Entry 6008 }
|
|
|
|
pump3DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 digital out"
|
|
::= { confPump3Entry 6013 }
|
|
|
|
pump3AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 analog out"
|
|
::= { confPump3Entry 6014 }
|
|
|
|
pump3AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 alarm digital in"
|
|
::= { confPump3Entry 6015 }
|
|
|
|
pump3AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 alarm priorities"
|
|
::= { confPump3Entry 6016 }
|
|
|
|
pump3PreRuntime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..120)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 pre runtime"
|
|
::= { confPump3Entry 6018 }
|
|
|
|
pump3PreSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 pre speed"
|
|
::= { confPump3Entry 6019 }
|
|
|
|
pump3PartnerPump OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 partner-pump"
|
|
::= { confPump3Entry 6024 }
|
|
|
|
pump3IFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 I factor"
|
|
::= { confPump3Entry 6025 }
|
|
|
|
pump3DFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 D factor"
|
|
::= { confPump3Entry 6026 }
|
|
|
|
pump3ControlCycle OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 control cycle"
|
|
::= { confPump3Entry 6027 }
|
|
|
|
pump3MaxAdjust OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 max adjust"
|
|
::= { confPump3Entry 6028 }
|
|
|
|
pump3ControlFactorPFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 control factor (P factor)"
|
|
::= { confPump3Entry 6029 }
|
|
|
|
pump3MinSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 min speed"
|
|
::= { confPump3Entry 6031 }
|
|
|
|
confPump4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfPump4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confPump4"
|
|
::= { confPump4 1 }
|
|
|
|
confPump4Entry OBJECT-TYPE
|
|
SYNTAX ConfPump4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confPump4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confPump4Table 1 }
|
|
|
|
ConfPump4Entry ::= SEQUENCE {
|
|
pump4ConfigActive Unsigned32,
|
|
pump4CommonAlarmConfig Unsigned32,
|
|
pump4Type Unsigned32,
|
|
pump4DigitalOut Unsigned32,
|
|
pump4AnalogOut Unsigned32,
|
|
pump4AlarmDigitalIn Unsigned32,
|
|
pump4AlarmPriorities Unsigned32,
|
|
pump4PreRuntime Unsigned32,
|
|
pump4PreSpeed Unsigned32,
|
|
pump4PartnerPump Unsigned32,
|
|
pump4IFactor Unsigned32,
|
|
pump4DFactor Unsigned32,
|
|
pump4ControlCycle Unsigned32,
|
|
pump4MaxAdjust Unsigned32,
|
|
pump4ControlFactorPFactor Unsigned32,
|
|
pump4MinSpeed Unsigned32
|
|
}
|
|
|
|
pump4ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 config active"
|
|
::= { confPump4Entry 6100 }
|
|
|
|
pump4CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 common alarm config"
|
|
::= { confPump4Entry 6104 }
|
|
|
|
pump4Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..7)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 type"
|
|
::= { confPump4Entry 6108 }
|
|
|
|
pump4DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 digital out"
|
|
::= { confPump4Entry 6113 }
|
|
|
|
pump4AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 analog out"
|
|
::= { confPump4Entry 6114 }
|
|
|
|
pump4AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 alarm digital in"
|
|
::= { confPump4Entry 6115 }
|
|
|
|
pump4AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 alarm priorities"
|
|
::= { confPump4Entry 6116 }
|
|
|
|
pump4PreRuntime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..120)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 pre runtime"
|
|
::= { confPump4Entry 6118 }
|
|
|
|
pump4PreSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 pre speed"
|
|
::= { confPump4Entry 6119 }
|
|
|
|
pump4PartnerPump OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..4)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 partner-pump"
|
|
::= { confPump4Entry 6124 }
|
|
|
|
pump4IFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 I factor"
|
|
::= { confPump4Entry 6125 }
|
|
|
|
pump4DFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 D factor"
|
|
::= { confPump4Entry 6126 }
|
|
|
|
pump4ControlCycle OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 control cycle"
|
|
::= { confPump4Entry 6127 }
|
|
|
|
pump4MaxAdjust OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 max adjust"
|
|
::= { confPump4Entry 6128 }
|
|
|
|
pump4ControlFactorPFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 control factor (P factor)"
|
|
::= { confPump4Entry 6129 }
|
|
|
|
pump4MinSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 min speed"
|
|
::= { confPump4Entry 6131 }
|
|
|
|
confEcoLouverTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfEcoLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confEcoLouver"
|
|
::= { confEcoLouver 1 }
|
|
|
|
confEcoLouverEntry OBJECT-TYPE
|
|
SYNTAX ConfEcoLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confEcoLouver"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confEcoLouverTable 1 }
|
|
|
|
ConfEcoLouverEntry ::= SEQUENCE {
|
|
eCOLouverConfigActive Unsigned32,
|
|
eCOLouverAnalogOut Unsigned32
|
|
}
|
|
|
|
eCOLouverConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO louver config active"
|
|
::= { confEcoLouverEntry 9900 }
|
|
|
|
eCOLouverAnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO louver analog out"
|
|
::= { confEcoLouverEntry 9912 }
|
|
|
|
confFreshairLouverTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfFreshairLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confFreshairLouver"
|
|
::= { confFreshairLouver 1 }
|
|
|
|
confFreshairLouverEntry OBJECT-TYPE
|
|
SYNTAX ConfFreshairLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confFreshairLouver"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confFreshairLouverTable 1 }
|
|
|
|
ConfFreshairLouverEntry ::= SEQUENCE {
|
|
freshAirLouverConfigActive Unsigned32,
|
|
freshAirLouverAnogOutputInverted Unsigned32,
|
|
freshAirLouverAnalogOutput Unsigned32,
|
|
freshAirLouverPronalCoefficient Unsigned32,
|
|
freshAirLouverIngralCoefficient Unsigned32,
|
|
freshAirLouverDetiveCoefficient Unsigned32,
|
|
freshAirLouverMamumOpeningGrade Unsigned32,
|
|
freshAirLouverAcatorBiasVoltage Unsigned32
|
|
}
|
|
|
|
freshAirLouverConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Fresh air louver config active"
|
|
::= { confFreshairLouverEntry 10400 }
|
|
|
|
freshAirLouverAnogOutputInverted OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Fresh air louver analog output inverted"
|
|
::= { confFreshairLouverEntry 10405 }
|
|
|
|
freshAirLouverAnalogOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Fresh air louver analog output"
|
|
::= { confFreshairLouverEntry 10410 }
|
|
|
|
freshAirLouverPronalCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Fresh air louver proportional coefficient"
|
|
::= { confFreshairLouverEntry 10411 }
|
|
|
|
freshAirLouverIngralCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Fresh air louver integral coefficient"
|
|
::= { confFreshairLouverEntry 10412 }
|
|
|
|
freshAirLouverDetiveCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Fresh air louver derivative coefficient"
|
|
::= { confFreshairLouverEntry 10413 }
|
|
|
|
freshAirLouverMamumOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Fresh air louver maximum opening grade"
|
|
::= { confFreshairLouverEntry 10414 }
|
|
|
|
freshAirLouverAcatorBiasVoltage OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Fresh air louver actuator bias voltage"
|
|
::= { confFreshairLouverEntry 10415 }
|
|
|
|
confAntifreezeLouverTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfAntifreezeLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confAntifreezeLouver"
|
|
::= { confAntifreezeLouver 1 }
|
|
|
|
confAntifreezeLouverEntry OBJECT-TYPE
|
|
SYNTAX ConfAntifreezeLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confAntifreezeLouver"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confAntifreezeLouverTable 1 }
|
|
|
|
ConfAntifreezeLouverEntry ::= SEQUENCE {
|
|
antiFreezeLouverigurationActive Unsigned32,
|
|
antiFreezeLouverogOutputInverted Unsigned32,
|
|
antiFreezeLouverAnalogOutput Unsigned32,
|
|
antiFreezeLouveronalCoefficient Unsigned32,
|
|
antiFreezeLouvergralCoefficient Unsigned32,
|
|
antiFreezeLouvertiveCoefficient Unsigned32,
|
|
antiFreezeLouvermumOpeningGrade Unsigned32,
|
|
antiFreezeLouveratorBiasVoltage Unsigned32
|
|
}
|
|
|
|
antiFreezeLouverigurationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Anti-freeze louver configuration active"
|
|
::= { confAntifreezeLouverEntry 10500 }
|
|
|
|
antiFreezeLouverogOutputInverted OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Anti-freeze louver analog output inverted"
|
|
::= { confAntifreezeLouverEntry 10505 }
|
|
|
|
antiFreezeLouverAnalogOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Anti-freeze louver analog output"
|
|
::= { confAntifreezeLouverEntry 10510 }
|
|
|
|
antiFreezeLouveronalCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Anti-freeze louver proportional coefficient"
|
|
::= { confAntifreezeLouverEntry 10511 }
|
|
|
|
antiFreezeLouvergralCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Anti-freeze louver integral coefficient"
|
|
::= { confAntifreezeLouverEntry 10512 }
|
|
|
|
antiFreezeLouvertiveCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Anti-freeze louver derivative coefficient"
|
|
::= { confAntifreezeLouverEntry 10513 }
|
|
|
|
antiFreezeLouvermumOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Anti-freeze louver maximum opening grade"
|
|
::= { confAntifreezeLouverEntry 10514 }
|
|
|
|
antiFreezeLouveratorBiasVoltage OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Anti-freeze louver actuator bias voltage"
|
|
::= { confAntifreezeLouverEntry 10515 }
|
|
|
|
confCirculationLouverTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCirculationLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCirculationLouver"
|
|
::= { confCirculationLouver 1 }
|
|
|
|
confCirculationLouverEntry OBJECT-TYPE
|
|
SYNTAX ConfCirculationLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCirculationLouver"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCirculationLouverTable 1 }
|
|
|
|
ConfCirculationLouverEntry ::= SEQUENCE {
|
|
circulationLouvefigurationActive Unsigned32,
|
|
circulationLouvegOutputInverted Unsigned32,
|
|
circulationLouverAnalogOutput Unsigned32,
|
|
circulationLouveionalCoefficient Unsigned32,
|
|
circulationLouveegralCoefficient Unsigned32,
|
|
circulationLouveativeCoefficient Unsigned32,
|
|
circulationLouveimumOpeningGrade Unsigned32,
|
|
circulationLouveuatorBiasVoltage Unsigned32
|
|
}
|
|
|
|
circulationLouvefigurationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Circulation louver configuration active"
|
|
::= { confCirculationLouverEntry 10600 }
|
|
|
|
circulationLouvegOutputInverted OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Circulation louver analog output inverted"
|
|
::= { confCirculationLouverEntry 10605 }
|
|
|
|
circulationLouverAnalogOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Circulation louver analog output"
|
|
::= { confCirculationLouverEntry 10610 }
|
|
|
|
circulationLouveionalCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Circulation louver proportional coefficient"
|
|
::= { confCirculationLouverEntry 10611 }
|
|
|
|
circulationLouveegralCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Circulation louver integral coefficient"
|
|
::= { confCirculationLouverEntry 10612 }
|
|
|
|
circulationLouveativeCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Circulation louver derivative coefficient"
|
|
::= { confCirculationLouverEntry 10613 }
|
|
|
|
circulationLouveimumOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Circulation louver maximum opening grade"
|
|
::= { confCirculationLouverEntry 10614 }
|
|
|
|
circulationLouveuatorBiasVoltage OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Circulation louver actuator bias voltage"
|
|
::= { confCirculationLouverEntry 10615 }
|
|
|
|
confExitLouverTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfExitLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confExitLouver"
|
|
::= { confExitLouver 1 }
|
|
|
|
confExitLouverEntry OBJECT-TYPE
|
|
SYNTAX ConfExitLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confExitLouver"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confExitLouverTable 1 }
|
|
|
|
ConfExitLouverEntry ::= SEQUENCE {
|
|
exitLouverConfigurationActive Unsigned32,
|
|
exitLouverAnalogOutputInverted Unsigned32,
|
|
exitLouverDigitalOutput Unsigned32,
|
|
exitLouverAnalogOutput Unsigned32,
|
|
exitLouverProporonalCoefficient Unsigned32,
|
|
exitLouverIntegralCoefficient Unsigned32,
|
|
exitLouverDerivativeCoefficient Unsigned32,
|
|
exitLouverMaximumOpeningGrade Unsigned32,
|
|
exitLouverActuatorBiasVoltage Unsigned32
|
|
}
|
|
|
|
exitLouverConfigurationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Exit louver configuration active"
|
|
::= { confExitLouverEntry 10700 }
|
|
|
|
exitLouverAnalogOutputInverted OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Exit louver analog output inverted"
|
|
::= { confExitLouverEntry 10705 }
|
|
|
|
exitLouverDigitalOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Exit louver digital output"
|
|
::= { confExitLouverEntry 10708 }
|
|
|
|
exitLouverAnalogOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Exit louver analog output"
|
|
::= { confExitLouverEntry 10711 }
|
|
|
|
exitLouverProporonalCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Exit louver proportional coefficient"
|
|
::= { confExitLouverEntry 10712 }
|
|
|
|
exitLouverIntegralCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Exit louver integral coefficient"
|
|
::= { confExitLouverEntry 10713 }
|
|
|
|
exitLouverDerivativeCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Exit louver derivative coefficient"
|
|
::= { confExitLouverEntry 10714 }
|
|
|
|
exitLouverMaximumOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Exit louver maximum opening grade"
|
|
::= { confExitLouverEntry 10715 }
|
|
|
|
exitLouverActuatorBiasVoltage OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Exit louver actuator bias voltage"
|
|
::= { confExitLouverEntry 10716 }
|
|
|
|
confCondensorfanTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCondensorfanEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCondensorfan"
|
|
::= { confCondensorfan 1 }
|
|
|
|
confCondensorfanEntry OBJECT-TYPE
|
|
SYNTAX ConfCondensorfanEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCondensorfan"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCondensorfanTable 1 }
|
|
|
|
ConfCondensorfanEntry ::= SEQUENCE {
|
|
condFan1ConfigurationActive Unsigned32,
|
|
condFan1CommonAlarmConfigured Unsigned32,
|
|
condFan1ControlCycle Unsigned32,
|
|
condFan1MaximumSpeedChange Unsigned32,
|
|
condFan1MinimumSpeed Unsigned32,
|
|
condFan1PrerunTime Unsigned32,
|
|
condFan1PrerunSpeed Unsigned32,
|
|
condFan1ProportionalCoefficient Unsigned32,
|
|
condFan1IntegralCoefficient Unsigned32,
|
|
condFan1DerivativeCoefficient Unsigned32,
|
|
condFan1AnalogOutput Unsigned32,
|
|
condFan1DigitalOutput Unsigned32,
|
|
condFan1DigitalAlarmInput Unsigned32,
|
|
condFan1DigitalAlarmOutput Unsigned32,
|
|
condFan2ConfigurationActive Unsigned32,
|
|
condFan2CommonAlarmConfigured Unsigned32,
|
|
condFan2ControlCycle Unsigned32,
|
|
condFan2MaximumSpeedChange Unsigned32,
|
|
condFan2MinimumSpeed Unsigned32,
|
|
condFan2PrerunTime Unsigned32,
|
|
condFan2PrerunSpeed Unsigned32,
|
|
condFan2ProportionalCoefficient Unsigned32,
|
|
condFan2IntegralCoefficient Unsigned32,
|
|
condFan2DerivativeCoefficient Unsigned32,
|
|
condFan2AnalogOutput Unsigned32,
|
|
condFan2DigitalOutput Unsigned32,
|
|
condFan2DigitalAlarmInput Unsigned32,
|
|
condFan2DigitalAlarmOutput Unsigned32
|
|
}
|
|
|
|
condFan1ConfigurationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 configuration active"
|
|
::= { confCondensorfanEntry 10800 }
|
|
|
|
condFan1CommonAlarmConfigured OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 common alarm configured"
|
|
::= { confCondensorfanEntry 10804 }
|
|
|
|
condFan1ControlCycle OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..255)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 control cycle"
|
|
::= { confCondensorfanEntry 10811 }
|
|
|
|
condFan1MaximumSpeedChange OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 maximum speed change"
|
|
::= { confCondensorfanEntry 10812 }
|
|
|
|
condFan1MinimumSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 minimum speed"
|
|
::= { confCondensorfanEntry 10813 }
|
|
|
|
condFan1PrerunTime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 prerun time"
|
|
::= { confCondensorfanEntry 10814 }
|
|
|
|
condFan1PrerunSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 prerun speed"
|
|
::= { confCondensorfanEntry 10815 }
|
|
|
|
condFan1ProportionalCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 proportional coefficient"
|
|
::= { confCondensorfanEntry 10816 }
|
|
|
|
condFan1IntegralCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 integral coefficient"
|
|
::= { confCondensorfanEntry 10817 }
|
|
|
|
condFan1DerivativeCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 derivative coefficient"
|
|
::= { confCondensorfanEntry 10818 }
|
|
|
|
condFan1AnalogOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 analog output"
|
|
::= { confCondensorfanEntry 10819 }
|
|
|
|
condFan1DigitalOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 digital output"
|
|
::= { confCondensorfanEntry 10820 }
|
|
|
|
condFan1DigitalAlarmInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..43)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 digital alarm input"
|
|
::= { confCondensorfanEntry 10821 }
|
|
|
|
condFan1DigitalAlarmOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 digital alarm output"
|
|
::= { confCondensorfanEntry 10822 }
|
|
|
|
condFan2ConfigurationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 configuration active"
|
|
::= { confCondensorfanEntry 10900 }
|
|
|
|
condFan2CommonAlarmConfigured OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 common alarm configured"
|
|
::= { confCondensorfanEntry 10904 }
|
|
|
|
condFan2ControlCycle OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..255)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 control cycle"
|
|
::= { confCondensorfanEntry 10911 }
|
|
|
|
condFan2MaximumSpeedChange OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 maximum speed change"
|
|
::= { confCondensorfanEntry 10912 }
|
|
|
|
condFan2MinimumSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 minimum speed"
|
|
::= { confCondensorfanEntry 10913 }
|
|
|
|
condFan2PrerunTime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 prerun time"
|
|
::= { confCondensorfanEntry 10914 }
|
|
|
|
condFan2PrerunSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 prerun speed"
|
|
::= { confCondensorfanEntry 10915 }
|
|
|
|
condFan2ProportionalCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 proportional coefficient"
|
|
::= { confCondensorfanEntry 10916 }
|
|
|
|
condFan2IntegralCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 integral coefficient"
|
|
::= { confCondensorfanEntry 10917 }
|
|
|
|
condFan2DerivativeCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 derivative coefficient"
|
|
::= { confCondensorfanEntry 10918 }
|
|
|
|
condFan2AnalogOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 analog output"
|
|
::= { confCondensorfanEntry 10919 }
|
|
|
|
condFan2DigitalOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 digital output"
|
|
::= { confCondensorfanEntry 10920 }
|
|
|
|
condFan2DigitalAlarmInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..43)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 digital alarm input"
|
|
::= { confCondensorfanEntry 10921 }
|
|
|
|
condFan2DigitalAlarmOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 digital alarm output"
|
|
::= { confCondensorfanEntry 10922 }
|
|
|
|
confIccTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfIccEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confIcc"
|
|
::= { confIcc 1 }
|
|
|
|
confIccEntry OBJECT-TYPE
|
|
SYNTAX ConfIccEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confIcc"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confIccTable 1 }
|
|
|
|
ConfIccEntry ::= SEQUENCE {
|
|
iCCConfigured Unsigned32,
|
|
manualOperation Unsigned32,
|
|
commonAlarmAvailability Unsigned32,
|
|
commonAlarmUpc Unsigned32,
|
|
commonAlarmLowPressure Unsigned32,
|
|
compressorPowerOnUPCDP42 Unsigned32,
|
|
enableToOperateUPCDP46 Unsigned32,
|
|
iCCUPCModbusAddress Unsigned32,
|
|
compressorModel Unsigned32,
|
|
compressorNMinLimit Unsigned32,
|
|
compressorNMaxLimit Unsigned32,
|
|
iccStartTemp Integer32,
|
|
alarmpriorityAvailability Unsigned32,
|
|
alarmpriorityUpc Unsigned32,
|
|
pIDControllerKp Unsigned32,
|
|
pIDControllerKi Unsigned32,
|
|
pIDControllerKd Unsigned32,
|
|
manualOperationValue Unsigned32
|
|
}
|
|
|
|
iCCConfigured OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC configured"
|
|
::= { confIccEntry 11500 }
|
|
|
|
manualOperation OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"manual operation"
|
|
::= { confIccEntry 11501 }
|
|
|
|
commonAlarmAvailability OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"common alarm availability"
|
|
::= { confIccEntry 11502 }
|
|
|
|
commonAlarmUpc OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"common alarm upc"
|
|
::= { confIccEntry 11503 }
|
|
|
|
commonAlarmLowPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"common alarm low pressure"
|
|
::= { confIccEntry 11504 }
|
|
|
|
compressorPowerOnUPCDP42 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor power on, uPC DP 42"
|
|
::= { confIccEntry 11505 }
|
|
|
|
enableToOperateUPCDP46 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"enable to operate, uPC DP 46"
|
|
::= { confIccEntry 11506 }
|
|
|
|
iCCUPCModbusAddress OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..247)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ICC/uPC modbus address"
|
|
::= { confIccEntry 11508 }
|
|
|
|
compressorModel OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..6| 42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor model"
|
|
::= { confIccEntry 11509 }
|
|
|
|
compressorNMinLimit OBJECT-TYPE
|
|
SYNTAX Unsigned32 (170..400)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor n min limit"
|
|
::= { confIccEntry 11510 }
|
|
|
|
compressorNMaxLimit OBJECT-TYPE
|
|
SYNTAX Unsigned32 (500..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor n max limit"
|
|
::= { confIccEntry 11511 }
|
|
|
|
iccStartTemp OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"icc start temp"
|
|
::= { confIccEntry 11512 }
|
|
|
|
alarmpriorityAvailability OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"alarmpriority availability"
|
|
::= { confIccEntry 11513 }
|
|
|
|
alarmpriorityUpc OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"alarmpriority upc"
|
|
::= { confIccEntry 11514 }
|
|
|
|
pIDControllerKp OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PID Controller kp"
|
|
::= { confIccEntry 11515 }
|
|
|
|
pIDControllerKi OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PID Controller ki"
|
|
::= { confIccEntry 11516 }
|
|
|
|
pIDControllerKd OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PID Controller kd"
|
|
::= { confIccEntry 11517 }
|
|
|
|
manualOperationValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"manual operation value"
|
|
::= { confIccEntry 11518 }
|
|
|
|
confMovableCoilTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfMovableCoilEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confMovableCoil"
|
|
::= { confMovableCoil 1 }
|
|
|
|
confMovableCoilEntry OBJECT-TYPE
|
|
SYNTAX ConfMovableCoilEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confMovableCoil"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confMovableCoilTable 1 }
|
|
|
|
ConfMovableCoilEntry ::= SEQUENCE {
|
|
moveableCoilManuOperationActive Unsigned32,
|
|
moveableCoilManuerationDirection Unsigned32,
|
|
moveableCoilCommAlarmConfigured Unsigned32,
|
|
moveableCoilMaxDifference Unsigned32,
|
|
moveableCoilSetupTime Unsigned32,
|
|
moveableCoilEnableDigitalOutput Unsigned32,
|
|
moveableCoilDireionDigitalOutput Unsigned32,
|
|
moveableCoilMotor1AnalogInput Unsigned32,
|
|
moveableCoilMotor2AnalogInput Unsigned32,
|
|
moveableCoilAlarmDigitalOutput Unsigned32,
|
|
moveableCoilAlarmDelay Unsigned32
|
|
}
|
|
|
|
moveableCoilManuOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil manual operation active"
|
|
::= { confMovableCoilEntry 10003 }
|
|
|
|
moveableCoilManuerationDirection OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil manual operation direction"
|
|
::= { confMovableCoilEntry 10004 }
|
|
|
|
moveableCoilCommAlarmConfigured OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil common alarm configured"
|
|
::= { confMovableCoilEntry 10006 }
|
|
|
|
moveableCoilMaxDifference OBJECT-TYPE
|
|
SYNTAX Unsigned32 (2..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil max. difference"
|
|
::= { confMovableCoilEntry 10010 }
|
|
|
|
moveableCoilSetupTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil setup time"
|
|
::= { confMovableCoilEntry 10011 }
|
|
|
|
moveableCoilEnableDigitalOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil enable digital output"
|
|
::= { confMovableCoilEntry 10012 }
|
|
|
|
moveableCoilDireionDigitalOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil direction digital output"
|
|
::= { confMovableCoilEntry 10013 }
|
|
|
|
moveableCoilMotor1AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil motor 1 analog input"
|
|
::= { confMovableCoilEntry 10014 }
|
|
|
|
moveableCoilMotor2AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil motor 2 analog input"
|
|
::= { confMovableCoilEntry 10015 }
|
|
|
|
moveableCoilAlarmDigitalOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil alarm digital output"
|
|
::= { confMovableCoilEntry 10016 }
|
|
|
|
moveableCoilAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil alarm delay"
|
|
::= { confMovableCoilEntry 10017 }
|
|
|
|
confEHeat1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfEHeat1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confEHeat1"
|
|
::= { confEHeat1 1 }
|
|
|
|
confEHeat1Entry OBJECT-TYPE
|
|
SYNTAX ConfEHeat1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confEHeat1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confEHeat1Table 1 }
|
|
|
|
ConfEHeat1Entry ::= SEQUENCE {
|
|
elecHeating1ConfigActive Unsigned32,
|
|
elecHeating1CommonAlarmConfig Unsigned32,
|
|
elecHeating1Type Unsigned32,
|
|
elecHeating1DigitalOut Unsigned32,
|
|
elecHeating1AlarmDigitalIn Unsigned32,
|
|
elecHeating1AlarmPriorities Unsigned32
|
|
}
|
|
|
|
elecHeating1ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 config active"
|
|
::= { confEHeat1Entry 4800 }
|
|
|
|
elecHeating1CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 common alarm config"
|
|
::= { confEHeat1Entry 4805 }
|
|
|
|
elecHeating1Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 type"
|
|
::= { confEHeat1Entry 4808 }
|
|
|
|
elecHeating1DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 digital out"
|
|
::= { confEHeat1Entry 4812 }
|
|
|
|
elecHeating1AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 alarm digital in"
|
|
::= { confEHeat1Entry 4813 }
|
|
|
|
elecHeating1AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 alarm priorities"
|
|
::= { confEHeat1Entry 4814 }
|
|
|
|
confEHeat2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfEHeat2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confEHeat2"
|
|
::= { confEHeat2 1 }
|
|
|
|
confEHeat2Entry OBJECT-TYPE
|
|
SYNTAX ConfEHeat2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confEHeat2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confEHeat2Table 1 }
|
|
|
|
ConfEHeat2Entry ::= SEQUENCE {
|
|
elecHeating2ConfigActive Unsigned32,
|
|
elecHeating2CommonAlarmConfig Unsigned32,
|
|
elecHeating2Type Unsigned32,
|
|
elecHeating2DigitalOut Unsigned32,
|
|
elecHeating2AlarmDigitalIn Unsigned32,
|
|
elecHeating2AlarmPriorities Unsigned32
|
|
}
|
|
|
|
elecHeating2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 config active"
|
|
::= { confEHeat2Entry 4900 }
|
|
|
|
elecHeating2CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 common alarm config"
|
|
::= { confEHeat2Entry 4905 }
|
|
|
|
elecHeating2Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 type"
|
|
::= { confEHeat2Entry 4908 }
|
|
|
|
elecHeating2DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 digital out"
|
|
::= { confEHeat2Entry 4912 }
|
|
|
|
elecHeating2AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 alarm digital in"
|
|
::= { confEHeat2Entry 4913 }
|
|
|
|
elecHeating2AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 alarm priorities"
|
|
::= { confEHeat2Entry 4914 }
|
|
|
|
confEHeat3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfEHeat3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confEHeat3"
|
|
::= { confEHeat3 1 }
|
|
|
|
confEHeat3Entry OBJECT-TYPE
|
|
SYNTAX ConfEHeat3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confEHeat3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confEHeat3Table 1 }
|
|
|
|
ConfEHeat3Entry ::= SEQUENCE {
|
|
elecHeating3ConfigActive Unsigned32,
|
|
elecHeating3CommonAlarmConfig Unsigned32,
|
|
elecHeating3Type Unsigned32,
|
|
elecHeating3DigitalOut Unsigned32,
|
|
elecHeating3AlarmDigitalIn Unsigned32,
|
|
elecHeating3AlarmPriorities Unsigned32
|
|
}
|
|
|
|
elecHeating3ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 config active"
|
|
::= { confEHeat3Entry 5000 }
|
|
|
|
elecHeating3CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 common alarm config"
|
|
::= { confEHeat3Entry 5005 }
|
|
|
|
elecHeating3Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 type"
|
|
::= { confEHeat3Entry 5008 }
|
|
|
|
elecHeating3DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 digital out"
|
|
::= { confEHeat3Entry 5012 }
|
|
|
|
elecHeating3AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 alarm digital in"
|
|
::= { confEHeat3Entry 5013 }
|
|
|
|
elecHeating3AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 alarm priorities"
|
|
::= { confEHeat3Entry 5014 }
|
|
|
|
confEHeat4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfEHeat4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confEHeat4"
|
|
::= { confEHeat4 1 }
|
|
|
|
confEHeat4Entry OBJECT-TYPE
|
|
SYNTAX ConfEHeat4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confEHeat4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confEHeat4Table 1 }
|
|
|
|
ConfEHeat4Entry ::= SEQUENCE {
|
|
elecHeating4ConfigActive Unsigned32,
|
|
elecHeating4CommonAlarmConfig Unsigned32,
|
|
elecHeating4Type Unsigned32,
|
|
elecHeating4DigitalOut Unsigned32,
|
|
elecHeating4AlarmDigitalIn Unsigned32,
|
|
elecHeating4AlarmPriorities Unsigned32
|
|
}
|
|
|
|
elecHeating4ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 config active"
|
|
::= { confEHeat4Entry 5100 }
|
|
|
|
elecHeating4CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 common alarm config"
|
|
::= { confEHeat4Entry 5105 }
|
|
|
|
elecHeating4Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 type"
|
|
::= { confEHeat4Entry 5108 }
|
|
|
|
elecHeating4DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 digital out"
|
|
::= { confEHeat4Entry 5112 }
|
|
|
|
elecHeating4AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 alarm digital in"
|
|
::= { confEHeat4Entry 5113 }
|
|
|
|
elecHeating4AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 alarm priorities"
|
|
::= { confEHeat4Entry 5114 }
|
|
|
|
confHotgasHeatTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfHotgasHeatEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confHotgasHeat"
|
|
::= { confHotgasHeat 1 }
|
|
|
|
confHotgasHeatEntry OBJECT-TYPE
|
|
SYNTAX ConfHotgasHeatEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confHotgasHeat"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confHotgasHeatTable 1 }
|
|
|
|
ConfHotgasHeatEntry ::= SEQUENCE {
|
|
hotgasHeatingConfigActive Unsigned32,
|
|
hotgasHeatingCommonAlarmConfig Unsigned32,
|
|
hotgasHeatingDigitalOut Unsigned32,
|
|
hotgasHeatingAlarmDigitalIn Unsigned32,
|
|
hotgasHeatingAlarmPriorities Unsigned32
|
|
}
|
|
|
|
hotgasHeatingConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hotgas-heating config active"
|
|
::= { confHotgasHeatEntry 6200 }
|
|
|
|
hotgasHeatingCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hotgas-heating common alarm config"
|
|
::= { confHotgasHeatEntry 6205 }
|
|
|
|
hotgasHeatingDigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hotgas-heating digital out"
|
|
::= { confHotgasHeatEntry 6210 }
|
|
|
|
hotgasHeatingAlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hotgas-heating alarm digital in"
|
|
::= { confHotgasHeatEntry 6211 }
|
|
|
|
hotgasHeatingAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hotgas-heating alarm priorities"
|
|
::= { confHotgasHeatEntry 6212 }
|
|
|
|
confHwrValveTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfHwrValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confHwrValve"
|
|
::= { confHwrValve 1 }
|
|
|
|
confHwrValveEntry OBJECT-TYPE
|
|
SYNTAX ConfHwrValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confHwrValve"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confHwrValveTable 1 }
|
|
|
|
ConfHwrValveEntry ::= SEQUENCE {
|
|
pWWHeatingConfigActive Unsigned32,
|
|
pWWHeatingType Unsigned32,
|
|
pWWHeatingDigitalOut Unsigned32,
|
|
pWWHeatingAnalogOut Unsigned32
|
|
}
|
|
|
|
pWWHeatingConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PWW-heating config active"
|
|
::= { confHwrValveEntry 6300 }
|
|
|
|
pWWHeatingType OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PWW-heating type"
|
|
::= { confHwrValveEntry 6308 }
|
|
|
|
pWWHeatingDigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PWW-heating digital out"
|
|
::= { confHwrValveEntry 6313 }
|
|
|
|
pWWHeatingAnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PWW-heating analog out"
|
|
::= { confHwrValveEntry 6314 }
|
|
|
|
confHumidifierTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfHumidifierEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confHumidifier"
|
|
::= { confHumidifier 1 }
|
|
|
|
confHumidifierEntry OBJECT-TYPE
|
|
SYNTAX ConfHumidifierEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confHumidifier"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confHumidifierTable 1 }
|
|
|
|
ConfHumidifierEntry ::= SEQUENCE {
|
|
humidifier1ConfigActive Unsigned32,
|
|
humidifier1CommonAlarmConfig Unsigned32,
|
|
humidifier1ConductivityConfig Unsigned32,
|
|
humidifier15uSCommonAlarmConfig Unsigned32,
|
|
humidifier120uSCommonAlarmConfig Unsigned32,
|
|
humidifier1DrainlOperationActive Unsigned32,
|
|
humidifier1DrainValveOpened Unsigned32,
|
|
humidifier1DrainlOperationStatus Unsigned32,
|
|
humidifier1Type Unsigned32,
|
|
humidifier1DigitalOut Unsigned32,
|
|
humidifier1AnalogOut Unsigned32,
|
|
humidifier1AlarmDigitalIn Unsigned32,
|
|
humidifier1AlarmPriorities Unsigned32,
|
|
humidifier1AlarmDigitalIn5uS Unsigned32,
|
|
humidifier1AlarmDigitalIn20uS Unsigned32,
|
|
humidifier1AlarmPriorities5uS Unsigned32,
|
|
humidifier1AlarmPriorities20uS Unsigned32,
|
|
humidifier1DrainValveDigitalOut Unsigned32,
|
|
humidifier1DraineOpeningDuration Unsigned32,
|
|
humidifier2ConfigActive Unsigned32,
|
|
humidifier2CommonAlarmConfig Unsigned32,
|
|
humidifier2ConductivityConfig Unsigned32,
|
|
humidifier25uSCommonAlarmConfig Unsigned32,
|
|
humidifier220uSCommonAlarmConfig Unsigned32,
|
|
humidifier2DrainlOperationActive Unsigned32,
|
|
humidifier2DrainValveOpened Unsigned32,
|
|
humidifier2DrainlOperationStatus Unsigned32,
|
|
humidifier2Type Unsigned32,
|
|
humidifier2DigitalOut Unsigned32,
|
|
humidifier2AnalogOut Unsigned32,
|
|
humidifier2AlarmDigitalIn Unsigned32,
|
|
humidifier2AlarmPriorities Unsigned32,
|
|
humidifier2AlarmDigitalIn5uS Unsigned32,
|
|
humidifier2AlarmDigitalIn20uS Unsigned32,
|
|
humidifier2AlarmPriorities5uS Unsigned32,
|
|
humidifier2AlarmPriorities20uS Unsigned32,
|
|
humidifier2DrainValveDigitalOut Unsigned32,
|
|
humidifier2DraineOpeningDuration Unsigned32,
|
|
humidifier3ConfigActive Unsigned32,
|
|
humidifier3CommonAlarmConfig Unsigned32,
|
|
humidifier3ConductivityConfig Unsigned32,
|
|
humidifier35uSCommonAlarmConfig Unsigned32,
|
|
humidifier320uSCommonAlarmConfig Unsigned32,
|
|
humidifier3DrainlOperationActive Unsigned32,
|
|
humidifier3DrainValveOpened Unsigned32,
|
|
humidifier3DrainlOperationStatus Unsigned32,
|
|
humidifier3Type Unsigned32,
|
|
humidifier3DigitalOut Unsigned32,
|
|
humidifier3AnalogOut Unsigned32,
|
|
humidifier3AlarmDigitalIn Unsigned32,
|
|
humidifier3AlarmPriorities Unsigned32,
|
|
humidifier3AlarmDigitalIn5uS Unsigned32,
|
|
humidifier3AlarmDigitalIn20uS Unsigned32,
|
|
humidifier3AlarmPriorities5uS Unsigned32,
|
|
humidifier3AlarmPriorities20uS Unsigned32,
|
|
humidifier3DrainValveDigitalOut Unsigned32,
|
|
humidifier3DraineOpeningDuration Unsigned32
|
|
}
|
|
|
|
humidifier1ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 config active"
|
|
::= { confHumidifierEntry 6400 }
|
|
|
|
humidifier1CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 common alarm config"
|
|
::= { confHumidifierEntry 6405 }
|
|
|
|
humidifier1ConductivityConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 conductivity config"
|
|
::= { confHumidifierEntry 6406 }
|
|
|
|
humidifier15uSCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 5uS common alarm config"
|
|
::= { confHumidifierEntry 6407 }
|
|
|
|
humidifier120uSCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 20uS common alarm config"
|
|
::= { confHumidifierEntry 6408 }
|
|
|
|
humidifier1DrainlOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 drain valve manual operation active"
|
|
::= { confHumidifierEntry 6411 }
|
|
|
|
humidifier1DrainValveOpened OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 drain valve opened"
|
|
::= { confHumidifierEntry 6412 }
|
|
|
|
humidifier1DrainlOperationStatus OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 drain valve manual operation status"
|
|
::= { confHumidifierEntry 6413 }
|
|
|
|
humidifier1Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 type"
|
|
::= { confHumidifierEntry 6416 }
|
|
|
|
humidifier1DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 digital out"
|
|
::= { confHumidifierEntry 6421 }
|
|
|
|
humidifier1AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 analog out"
|
|
::= { confHumidifierEntry 6422 }
|
|
|
|
humidifier1AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 alarm digital in"
|
|
::= { confHumidifierEntry 6423 }
|
|
|
|
humidifier1AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 alarm priorities"
|
|
::= { confHumidifierEntry 6424 }
|
|
|
|
humidifier1AlarmDigitalIn5uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 alarm digital in 5uS"
|
|
::= { confHumidifierEntry 6429 }
|
|
|
|
humidifier1AlarmDigitalIn20uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 alarm digital in 20uS"
|
|
::= { confHumidifierEntry 6430 }
|
|
|
|
humidifier1AlarmPriorities5uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 alarm priorities 5uS"
|
|
::= { confHumidifierEntry 6433 }
|
|
|
|
humidifier1AlarmPriorities20uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 alarm priorities 20uS"
|
|
::= { confHumidifierEntry 6434 }
|
|
|
|
humidifier1DrainValveDigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 drain valve digital out"
|
|
::= { confHumidifierEntry 6435 }
|
|
|
|
humidifier1DraineOpeningDuration OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..600)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 drain valve opening duration"
|
|
::= { confHumidifierEntry 6436 }
|
|
|
|
humidifier2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 config active"
|
|
::= { confHumidifierEntry 6500 }
|
|
|
|
humidifier2CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 common alarm config"
|
|
::= { confHumidifierEntry 6505 }
|
|
|
|
humidifier2ConductivityConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 conductivity config"
|
|
::= { confHumidifierEntry 6506 }
|
|
|
|
humidifier25uSCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 5uS common alarm config"
|
|
::= { confHumidifierEntry 6507 }
|
|
|
|
humidifier220uSCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 20uS common alarm config"
|
|
::= { confHumidifierEntry 6508 }
|
|
|
|
humidifier2DrainlOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 drain valve manual operation active"
|
|
::= { confHumidifierEntry 6511 }
|
|
|
|
humidifier2DrainValveOpened OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 drain valve opened"
|
|
::= { confHumidifierEntry 6512 }
|
|
|
|
humidifier2DrainlOperationStatus OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 drain valve manual operation status"
|
|
::= { confHumidifierEntry 6513 }
|
|
|
|
humidifier2Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 type"
|
|
::= { confHumidifierEntry 6516 }
|
|
|
|
humidifier2DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 digital out"
|
|
::= { confHumidifierEntry 6521 }
|
|
|
|
humidifier2AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 analog out"
|
|
::= { confHumidifierEntry 6522 }
|
|
|
|
humidifier2AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 alarm digital in"
|
|
::= { confHumidifierEntry 6523 }
|
|
|
|
humidifier2AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 alarm priorities"
|
|
::= { confHumidifierEntry 6524 }
|
|
|
|
humidifier2AlarmDigitalIn5uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 alarm digital in 5uS"
|
|
::= { confHumidifierEntry 6529 }
|
|
|
|
humidifier2AlarmDigitalIn20uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 alarm digital in 20uS"
|
|
::= { confHumidifierEntry 6530 }
|
|
|
|
humidifier2AlarmPriorities5uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 alarm priorities 5uS"
|
|
::= { confHumidifierEntry 6533 }
|
|
|
|
humidifier2AlarmPriorities20uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 alarm priorities 20uS"
|
|
::= { confHumidifierEntry 6534 }
|
|
|
|
humidifier2DrainValveDigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 drain valve digital out"
|
|
::= { confHumidifierEntry 6535 }
|
|
|
|
humidifier2DraineOpeningDuration OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..600)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 drain valve opening duration"
|
|
::= { confHumidifierEntry 6536 }
|
|
|
|
humidifier3ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 config active"
|
|
::= { confHumidifierEntry 6600 }
|
|
|
|
humidifier3CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 common alarm config"
|
|
::= { confHumidifierEntry 6605 }
|
|
|
|
humidifier3ConductivityConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 conductivity config"
|
|
::= { confHumidifierEntry 6606 }
|
|
|
|
humidifier35uSCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 5uS common alarm config"
|
|
::= { confHumidifierEntry 6607 }
|
|
|
|
humidifier320uSCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 20uS common alarm config"
|
|
::= { confHumidifierEntry 6608 }
|
|
|
|
humidifier3DrainlOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 drain valve manual operation active"
|
|
::= { confHumidifierEntry 6611 }
|
|
|
|
humidifier3DrainValveOpened OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 drain valve opened"
|
|
::= { confHumidifierEntry 6612 }
|
|
|
|
humidifier3DrainlOperationStatus OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 drain valve manual operation status"
|
|
::= { confHumidifierEntry 6613 }
|
|
|
|
humidifier3Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 type"
|
|
::= { confHumidifierEntry 6616 }
|
|
|
|
humidifier3DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 digital out"
|
|
::= { confHumidifierEntry 6621 }
|
|
|
|
humidifier3AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 analog out"
|
|
::= { confHumidifierEntry 6622 }
|
|
|
|
humidifier3AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 alarm digital in"
|
|
::= { confHumidifierEntry 6623 }
|
|
|
|
humidifier3AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 alarm priorities"
|
|
::= { confHumidifierEntry 6624 }
|
|
|
|
humidifier3AlarmDigitalIn5uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 alarm digital in 5uS"
|
|
::= { confHumidifierEntry 6629 }
|
|
|
|
humidifier3AlarmDigitalIn20uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 alarm digital in 20uS"
|
|
::= { confHumidifierEntry 6630 }
|
|
|
|
humidifier3AlarmPriorities5uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 alarm priorities 5uS"
|
|
::= { confHumidifierEntry 6633 }
|
|
|
|
humidifier3AlarmPriorities20uS OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 alarm priorities 20uS"
|
|
::= { confHumidifierEntry 6634 }
|
|
|
|
humidifier3DrainValveDigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 drain valve digital out"
|
|
::= { confHumidifierEntry 6635 }
|
|
|
|
humidifier3DraineOpeningDuration OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..600)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 drain valve opening duration"
|
|
::= { confHumidifierEntry 6636 }
|
|
|
|
confDehumidificationTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfDehumidificationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confDehumidification"
|
|
::= { confDehumidification 1 }
|
|
|
|
confDehumidificationEntry OBJECT-TYPE
|
|
SYNTAX ConfDehumidificationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confDehumidification"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confDehumidificationTable 1 }
|
|
|
|
ConfDehumidificationEntry ::= SEQUENCE {
|
|
dehumidificationlveConfigActive Unsigned32,
|
|
dehumidificationpassConfigActive Unsigned32,
|
|
dehumidificationDigitalOut Unsigned32,
|
|
dehumidificationStopOnRoomTemp Integer32,
|
|
minFanSpeedWhenPDehumidification Unsigned32
|
|
}
|
|
|
|
dehumidificationlveConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"dehumidification valve config active"
|
|
::= { confDehumidificationEntry 6800 }
|
|
|
|
dehumidificationpassConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"dehumidification hotgas bypass config active"
|
|
::= { confDehumidificationEntry 6805 }
|
|
|
|
dehumidificationDigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"dehumidification digital out"
|
|
::= { confDehumidificationEntry 6813 }
|
|
|
|
dehumidificationStopOnRoomTemp OBJECT-TYPE
|
|
SYNTAX Integer32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"dehumidification stop on room temp"
|
|
::= { confDehumidificationEntry 6821 }
|
|
|
|
minFanSpeedWhenPDehumidification OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"min fan speed when precision dehumidification"
|
|
::= { confDehumidificationEntry 6822 }
|
|
|
|
confFanGeneralTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfFanGeneralEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confFanGeneral"
|
|
::= { confFanGeneral 1 }
|
|
|
|
confFanGeneralEntry OBJECT-TYPE
|
|
SYNTAX ConfFanGeneralEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confFanGeneral"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confFanGeneralTable 1 }
|
|
|
|
ConfFanGeneralEntry ::= SEQUENCE {
|
|
fan1ConfigActive Unsigned32,
|
|
fan1Type Unsigned32,
|
|
fan1Offset Integer32,
|
|
fan1DigitalOut Unsigned32,
|
|
fan1AnalogOut Unsigned32,
|
|
fan1MinSpeedDXMode Unsigned32,
|
|
fan1ControlCycle Unsigned32,
|
|
fan1MaxAdjust Unsigned32,
|
|
fan1ControlFactor Unsigned32,
|
|
fan2ConfigActive Unsigned32,
|
|
fan2Type Unsigned32,
|
|
fan2Offset Integer32,
|
|
fan2DigitalOut Unsigned32,
|
|
fan2AnalogOut Unsigned32,
|
|
fan2MinSpeedDXMode Unsigned32,
|
|
fan2ControlCycle Unsigned32,
|
|
fan2MaxAdjust Unsigned32,
|
|
fan2ControlFactor Unsigned32,
|
|
fan3Type Unsigned32,
|
|
fan3Offset Integer32,
|
|
fan3DigitalOut Unsigned32,
|
|
fan3AnalogOut Unsigned32,
|
|
fan3MinSpeedDXMode Unsigned32,
|
|
fan3ControlCycle Unsigned32,
|
|
fan3MaxAdjust Unsigned32,
|
|
fan3ControlFactor Unsigned32
|
|
}
|
|
|
|
fan1ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 config active"
|
|
::= { confFanGeneralEntry 6900 }
|
|
|
|
fan1Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 type"
|
|
::= { confFanGeneralEntry 6908 }
|
|
|
|
fan1Offset OBJECT-TYPE
|
|
SYNTAX Integer32 (-10..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 offset"
|
|
::= { confFanGeneralEntry 6919 }
|
|
|
|
fan1DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 digital out"
|
|
::= { confFanGeneralEntry 6923 }
|
|
|
|
fan1AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 analog out"
|
|
::= { confFanGeneralEntry 6924 }
|
|
|
|
fan1MinSpeedDXMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 min speed DX mode"
|
|
::= { confFanGeneralEntry 6934 }
|
|
|
|
fan1ControlCycle OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 control cycle"
|
|
::= { confFanGeneralEntry 6935 }
|
|
|
|
fan1MaxAdjust OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 max adjust"
|
|
::= { confFanGeneralEntry 6936 }
|
|
|
|
fan1ControlFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 control factor"
|
|
::= { confFanGeneralEntry 6937 }
|
|
|
|
fan2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 config active"
|
|
::= { confFanGeneralEntry 7000 }
|
|
|
|
fan2Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 type"
|
|
::= { confFanGeneralEntry 7008 }
|
|
|
|
fan2Offset OBJECT-TYPE
|
|
SYNTAX Integer32 (-10..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 offset"
|
|
::= { confFanGeneralEntry 7019 }
|
|
|
|
fan2DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 digital out"
|
|
::= { confFanGeneralEntry 7023 }
|
|
|
|
fan2AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 analog out"
|
|
::= { confFanGeneralEntry 7024 }
|
|
|
|
fan2MinSpeedDXMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 min speed DX mode"
|
|
::= { confFanGeneralEntry 7034 }
|
|
|
|
fan2ControlCycle OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 control cycle"
|
|
::= { confFanGeneralEntry 7035 }
|
|
|
|
fan2MaxAdjust OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 max adjust"
|
|
::= { confFanGeneralEntry 7036 }
|
|
|
|
fan2ControlFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 control factor"
|
|
::= { confFanGeneralEntry 7037 }
|
|
|
|
fan3Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 type"
|
|
::= { confFanGeneralEntry 7108 }
|
|
|
|
fan3Offset OBJECT-TYPE
|
|
SYNTAX Integer32 (-10..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 offset"
|
|
::= { confFanGeneralEntry 7119 }
|
|
|
|
fan3DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 digital out"
|
|
::= { confFanGeneralEntry 7123 }
|
|
|
|
fan3AnalogOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 analog out"
|
|
::= { confFanGeneralEntry 7124 }
|
|
|
|
fan3MinSpeedDXMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 min speed DX mode"
|
|
::= { confFanGeneralEntry 7134 }
|
|
|
|
fan3ControlCycle OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 control cycle"
|
|
::= { confFanGeneralEntry 7135 }
|
|
|
|
fan3MaxAdjust OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..10)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 max adjust"
|
|
::= { confFanGeneralEntry 7136 }
|
|
|
|
fan3ControlFactor OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 control factor"
|
|
::= { confFanGeneralEntry 7137 }
|
|
|
|
confFanAlarmTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfFanAlarmEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confFanAlarm"
|
|
::= { confFanAlarm 1 }
|
|
|
|
confFanAlarmEntry OBJECT-TYPE
|
|
SYNTAX ConfFanAlarmEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confFanAlarm"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confFanAlarmTable 1 }
|
|
|
|
ConfFanAlarmEntry ::= SEQUENCE {
|
|
fan1CommonAlarmConfig Unsigned32,
|
|
fan1FilterCommonAlarmConfig Unsigned32,
|
|
fan1AlarmDigitalIn Unsigned32,
|
|
fan1AlarmPriorities Unsigned32,
|
|
fan1FilterAlarmDigitalIn Unsigned32,
|
|
fan1FilterAlarmPriorities Unsigned32,
|
|
fan2CommonAlarmConfig Unsigned32,
|
|
fan2FilterCommonAlarmConfig Unsigned32,
|
|
fan2AlarmDigitalIn Unsigned32,
|
|
fan2AlarmPriorities Unsigned32,
|
|
fan2FilterAlarmDigitalIn Unsigned32,
|
|
fan2FilterAlarmPriorities Unsigned32,
|
|
fan3CommonAlarmConfig Unsigned32,
|
|
fan3FilterCommonAlarmConfig Unsigned32,
|
|
fan3AlarmDigitalIn Unsigned32,
|
|
fan3AlarmPriorities Unsigned32,
|
|
fan3FilterAlarmDigitalIn Unsigned32,
|
|
fan3FilterAlarmPriorities Unsigned32
|
|
}
|
|
|
|
fan1CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 common alarm config"
|
|
::= { confFanAlarmEntry 6906 }
|
|
|
|
fan1FilterCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 filter common alarm config"
|
|
::= { confFanAlarmEntry 6907 }
|
|
|
|
fan1AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 alarm digital in"
|
|
::= { confFanAlarmEntry 6925 }
|
|
|
|
fan1AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 alarm priorities"
|
|
::= { confFanAlarmEntry 6926 }
|
|
|
|
fan1FilterAlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 filter alarm digital in"
|
|
::= { confFanAlarmEntry 6928 }
|
|
|
|
fan1FilterAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 filter alarm priorities"
|
|
::= { confFanAlarmEntry 6929 }
|
|
|
|
fan2CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 common alarm config"
|
|
::= { confFanAlarmEntry 7006 }
|
|
|
|
fan2FilterCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 filter common alarm config"
|
|
::= { confFanAlarmEntry 7007 }
|
|
|
|
fan2AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 alarm digital in"
|
|
::= { confFanAlarmEntry 7025 }
|
|
|
|
fan2AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 alarm priorities"
|
|
::= { confFanAlarmEntry 7026 }
|
|
|
|
fan2FilterAlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 filter alarm digital in"
|
|
::= { confFanAlarmEntry 7028 }
|
|
|
|
fan2FilterAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 filter alarm priorities"
|
|
::= { confFanAlarmEntry 7029 }
|
|
|
|
fan3CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 common alarm config"
|
|
::= { confFanAlarmEntry 7106 }
|
|
|
|
fan3FilterCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 filter common alarm config"
|
|
::= { confFanAlarmEntry 7107 }
|
|
|
|
fan3AlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 alarm digital in"
|
|
::= { confFanAlarmEntry 7125 }
|
|
|
|
fan3AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 alarm priorities"
|
|
::= { confFanAlarmEntry 7126 }
|
|
|
|
fan3FilterAlarmDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 filter alarm digital in"
|
|
::= { confFanAlarmEntry 7128 }
|
|
|
|
fan3FilterAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 filter alarm priorities"
|
|
::= { confFanAlarmEntry 7129 }
|
|
|
|
confFanSpecialModesTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfFanSpecialModesEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confFanSpecialModes"
|
|
::= { confFanSpecialModes 1 }
|
|
|
|
confFanSpecialModesEntry OBJECT-TYPE
|
|
SYNTAX ConfFanSpecialModesEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confFanSpecialModes"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confFanSpecialModesTable 1 }
|
|
|
|
ConfFanSpecialModesEntry ::= SEQUENCE {
|
|
fan1PreRuntime Unsigned32,
|
|
fan1RunAfterTime Unsigned32,
|
|
fan1Start100Time Unsigned32,
|
|
fan1ReduceTime Unsigned32,
|
|
fan1ReduceSpeed Unsigned32,
|
|
fan1DehumidificationSpeed Unsigned32,
|
|
fan1UpsSpeed Unsigned32,
|
|
fan1OffsetFilterClogged Unsigned32,
|
|
fan1EmergencyStarttemp Integer32,
|
|
fan1EmergencyEndtemp Integer32,
|
|
fan1Emergencyspeed Unsigned32,
|
|
fan1DehumiTimeDelay Unsigned32,
|
|
fan1MinSpeedCWMode Unsigned32,
|
|
fan1StarttempFretdoorTemperature Integer32,
|
|
fan1PowerConsumption Unsigned32,
|
|
fan1RpmSpeed Unsigned32,
|
|
fan1CurrentConsumption Unsigned32,
|
|
fan1DiffTempContatureDifference Integer32,
|
|
fan1DiffTempContemperatureRange Integer32,
|
|
fan1ProportionalCoefficient Unsigned32,
|
|
fan1IntegralCoefficient Unsigned32,
|
|
fan1DerivativeCoefficient Unsigned32,
|
|
fan1StopIfCoolingNotPossible Unsigned32,
|
|
fan1FilterMaxPressureDrop Unsigned32,
|
|
fan1FilterCurrentPressureDrop Unsigned32,
|
|
fan1DiffTempControlType Unsigned32,
|
|
fan2PreRuntime Unsigned32,
|
|
fan2RunAfterTime Unsigned32,
|
|
fan2Start100Time Unsigned32,
|
|
fan2ReduceTime Unsigned32,
|
|
fan2ReduceSpeed Unsigned32,
|
|
fan2DehumidificationSpeed Unsigned32,
|
|
fan2UpsSpeed Unsigned32,
|
|
fan2OffsetFilterClogged Unsigned32,
|
|
fan2EmergencyStarttemp Integer32,
|
|
fan2EmergencyEndtemp Integer32,
|
|
fan2Emergencyspeed Unsigned32,
|
|
fan2DehumiTimeDelay Unsigned32,
|
|
fan2MinSpeedCWMode Unsigned32,
|
|
fan2StarttempFretdoorTemperature Integer32,
|
|
fan2PowerConsumption Unsigned32,
|
|
fan2RpmSpeed Unsigned32,
|
|
fan2CurrentConsumption Unsigned32,
|
|
fan2DiffTempContatureDifference Integer32,
|
|
fan2DifferentialTemperatureRange Integer32,
|
|
fan2ProportionalCoefficient Unsigned32,
|
|
fan2IntegralCoefficient Unsigned32,
|
|
fan2DerivativeCoefficient Unsigned32,
|
|
fan2StopIfCoolingNotPossible Unsigned32,
|
|
fan2FilterMaxPressureDrop Unsigned32,
|
|
fan2FilterCurrentPressureDrop Unsigned32,
|
|
fan2DiffTempControlType Unsigned32,
|
|
fan3PreRuntime Unsigned32,
|
|
fan3RunAfterTime Unsigned32,
|
|
fan3Start100Time Unsigned32,
|
|
fan3ReduceTime Unsigned32,
|
|
fan3ReduceSpeed Unsigned32,
|
|
fan3DehumidificationSpeed Unsigned32,
|
|
fan3UpsSpeed Unsigned32,
|
|
fan3OffsetFilterClogged Unsigned32,
|
|
fan3EmergencyStarttemp Integer32,
|
|
fan3EmergencyEndtemp Integer32,
|
|
fan3Emergencyspeed Unsigned32,
|
|
fan3DehumiTimeDelay Unsigned32,
|
|
fan3MinSpeedCWMode Unsigned32,
|
|
fan3StarttempFretdoorTemperature Integer32,
|
|
fan3PowerConsumption Unsigned32,
|
|
fan3RpmSpeed Unsigned32,
|
|
fan3CurrentConsumption Unsigned32,
|
|
fan3DiffTempContatureDifference Integer32,
|
|
fan3DifferentialTemperatureRange Integer32,
|
|
fan3ProportionalCoefficient Unsigned32,
|
|
fan3IntegralCoefficient Unsigned32,
|
|
fan3DerivativeCoefficient Unsigned32,
|
|
fan3StopIfCoolingNotPossible Unsigned32,
|
|
fan3FilterMaxPressureDrop Unsigned32,
|
|
fan3FilterCurrentPressureDrop Unsigned32,
|
|
fan3DiffTempControlType Unsigned32
|
|
}
|
|
|
|
fan1PreRuntime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 pre runtime"
|
|
::= { confFanSpecialModesEntry 6911 }
|
|
|
|
fan1RunAfterTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 run after time"
|
|
::= { confFanSpecialModesEntry 6912 }
|
|
|
|
fan1Start100Time OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 start 100% time"
|
|
::= { confFanSpecialModesEntry 6916 }
|
|
|
|
fan1ReduceTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..120)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 reduce time"
|
|
::= { confFanSpecialModesEntry 6917 }
|
|
|
|
fan1ReduceSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 reduce speed"
|
|
::= { confFanSpecialModesEntry 6918 }
|
|
|
|
fan1DehumidificationSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 dehumidification speed"
|
|
::= { confFanSpecialModesEntry 6920 }
|
|
|
|
fan1UpsSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 ups speed"
|
|
::= { confFanSpecialModesEntry 6921 }
|
|
|
|
fan1OffsetFilterClogged OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 offset filter clogged"
|
|
::= { confFanSpecialModesEntry 6922 }
|
|
|
|
fan1EmergencyStarttemp OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 emergency starttemp."
|
|
::= { confFanSpecialModesEntry 6938 }
|
|
|
|
fan1EmergencyEndtemp OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 emergency endtemp."
|
|
::= { confFanSpecialModesEntry 6939 }
|
|
|
|
fan1Emergencyspeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 emergencyspeed"
|
|
::= { confFanSpecialModesEntry 6940 }
|
|
|
|
fan1DehumiTimeDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..30)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 dehumi time (delay)"
|
|
::= { confFanSpecialModesEntry 6941 }
|
|
|
|
fan1MinSpeedCWMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 min speed CW mode"
|
|
::= { confFanSpecialModesEntry 6942 }
|
|
|
|
fan1StarttempFretdoorTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 starttemp (freecooling, outdoor-temperature)"
|
|
::= { confFanSpecialModesEntry 6943 }
|
|
|
|
fan1PowerConsumption OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 power consumption"
|
|
::= { confFanSpecialModesEntry 6944 }
|
|
|
|
fan1RpmSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 rpm speed"
|
|
::= { confFanSpecialModesEntry 6945 }
|
|
|
|
fan1CurrentConsumption OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 current consumption"
|
|
::= { confFanSpecialModesEntry 6946 }
|
|
|
|
fan1DiffTempContatureDifference OBJECT-TYPE
|
|
SYNTAX Integer32 (0..250)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 diff temp control start temperature difference"
|
|
::= { confFanSpecialModesEntry 6948 }
|
|
|
|
fan1DiffTempContemperatureRange OBJECT-TYPE
|
|
SYNTAX Integer32 (0..250)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 diff temp control temperature range"
|
|
::= { confFanSpecialModesEntry 6949 }
|
|
|
|
fan1ProportionalCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 proportional coefficient"
|
|
::= { confFanSpecialModesEntry 6950 }
|
|
|
|
fan1IntegralCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 integral coefficient"
|
|
::= { confFanSpecialModesEntry 6951 }
|
|
|
|
fan1DerivativeCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 derivative coefficient"
|
|
::= { confFanSpecialModesEntry 6952 }
|
|
|
|
fan1StopIfCoolingNotPossible OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 stop if cooling not possible"
|
|
::= { confFanSpecialModesEntry 6953 }
|
|
|
|
fan1FilterMaxPressureDrop OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 filter max pressure drop"
|
|
::= { confFanSpecialModesEntry 6961 }
|
|
|
|
fan1FilterCurrentPressureDrop OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 filter current pressure drop"
|
|
::= { confFanSpecialModesEntry 6962 }
|
|
|
|
fan1DiffTempControlType OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 diff temp control type"
|
|
::= { confFanSpecialModesEntry 6963 }
|
|
|
|
fan2PreRuntime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 pre runtime"
|
|
::= { confFanSpecialModesEntry 7011 }
|
|
|
|
fan2RunAfterTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 run after time"
|
|
::= { confFanSpecialModesEntry 7012 }
|
|
|
|
fan2Start100Time OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 start 100% time"
|
|
::= { confFanSpecialModesEntry 7016 }
|
|
|
|
fan2ReduceTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..120)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 reduce time"
|
|
::= { confFanSpecialModesEntry 7017 }
|
|
|
|
fan2ReduceSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 reduce speed"
|
|
::= { confFanSpecialModesEntry 7018 }
|
|
|
|
fan2DehumidificationSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 dehumidification speed"
|
|
::= { confFanSpecialModesEntry 7020 }
|
|
|
|
fan2UpsSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 ups speed"
|
|
::= { confFanSpecialModesEntry 7021 }
|
|
|
|
fan2OffsetFilterClogged OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 offset filter clogged"
|
|
::= { confFanSpecialModesEntry 7022 }
|
|
|
|
fan2EmergencyStarttemp OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 emergency starttemp."
|
|
::= { confFanSpecialModesEntry 7038 }
|
|
|
|
fan2EmergencyEndtemp OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 emergency endtemp."
|
|
::= { confFanSpecialModesEntry 7039 }
|
|
|
|
fan2Emergencyspeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 emergencyspeed"
|
|
::= { confFanSpecialModesEntry 7040 }
|
|
|
|
fan2DehumiTimeDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..30)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 dehumi time (delay)"
|
|
::= { confFanSpecialModesEntry 7041 }
|
|
|
|
fan2MinSpeedCWMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 min speed CW mode"
|
|
::= { confFanSpecialModesEntry 7042 }
|
|
|
|
fan2StarttempFretdoorTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 starttemp (freecooling, outdoor-temperature)"
|
|
::= { confFanSpecialModesEntry 7043 }
|
|
|
|
fan2PowerConsumption OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 power consumption"
|
|
::= { confFanSpecialModesEntry 7044 }
|
|
|
|
fan2RpmSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 rpm speed"
|
|
::= { confFanSpecialModesEntry 7045 }
|
|
|
|
fan2CurrentConsumption OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 current consumption"
|
|
::= { confFanSpecialModesEntry 7046 }
|
|
|
|
fan2DiffTempContatureDifference OBJECT-TYPE
|
|
SYNTAX Integer32 (0..250)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 diff temp control start temperature difference"
|
|
::= { confFanSpecialModesEntry 7048 }
|
|
|
|
fan2DifferentialTemperatureRange OBJECT-TYPE
|
|
SYNTAX Integer32 (0..250)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 differential temperature control temperature range"
|
|
::= { confFanSpecialModesEntry 7049 }
|
|
|
|
fan2ProportionalCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 proportional coefficient"
|
|
::= { confFanSpecialModesEntry 7050 }
|
|
|
|
fan2IntegralCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 integral coefficient"
|
|
::= { confFanSpecialModesEntry 7051 }
|
|
|
|
fan2DerivativeCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 derivative coefficient"
|
|
::= { confFanSpecialModesEntry 7052 }
|
|
|
|
fan2StopIfCoolingNotPossible OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 stop if cooling not possible"
|
|
::= { confFanSpecialModesEntry 7053 }
|
|
|
|
fan2FilterMaxPressureDrop OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 filter max pressure drop"
|
|
::= { confFanSpecialModesEntry 7061 }
|
|
|
|
fan2FilterCurrentPressureDrop OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 filter current pressure drop"
|
|
::= { confFanSpecialModesEntry 7062 }
|
|
|
|
fan2DiffTempControlType OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 diff temp control type"
|
|
::= { confFanSpecialModesEntry 7063 }
|
|
|
|
fan3PreRuntime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 pre runtime"
|
|
::= { confFanSpecialModesEntry 7111 }
|
|
|
|
fan3RunAfterTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..250)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 run after time"
|
|
::= { confFanSpecialModesEntry 7112 }
|
|
|
|
fan3Start100Time OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 start 100% time"
|
|
::= { confFanSpecialModesEntry 7116 }
|
|
|
|
fan3ReduceTime OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..120)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 reduce time"
|
|
::= { confFanSpecialModesEntry 7117 }
|
|
|
|
fan3ReduceSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 reduce speed"
|
|
::= { confFanSpecialModesEntry 7118 }
|
|
|
|
fan3DehumidificationSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 dehumidification speed"
|
|
::= { confFanSpecialModesEntry 7120 }
|
|
|
|
fan3UpsSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 ups speed"
|
|
::= { confFanSpecialModesEntry 7121 }
|
|
|
|
fan3OffsetFilterClogged OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 offset filter clogged"
|
|
::= { confFanSpecialModesEntry 7122 }
|
|
|
|
fan3EmergencyStarttemp OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 emergency starttemp."
|
|
::= { confFanSpecialModesEntry 7138 }
|
|
|
|
fan3EmergencyEndtemp OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 emergency endtemp."
|
|
::= { confFanSpecialModesEntry 7139 }
|
|
|
|
fan3Emergencyspeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 emergencyspeed"
|
|
::= { confFanSpecialModesEntry 7140 }
|
|
|
|
fan3DehumiTimeDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..30)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 dehumi time (delay)"
|
|
::= { confFanSpecialModesEntry 7141 }
|
|
|
|
fan3MinSpeedCWMode OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 min speed CW mode"
|
|
::= { confFanSpecialModesEntry 7142 }
|
|
|
|
fan3StarttempFretdoorTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-500..500)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 starttemp (freecooling, outdoor-temperature)"
|
|
::= { confFanSpecialModesEntry 7143 }
|
|
|
|
fan3PowerConsumption OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 power consumption"
|
|
::= { confFanSpecialModesEntry 7144 }
|
|
|
|
fan3RpmSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 rpm speed"
|
|
::= { confFanSpecialModesEntry 7145 }
|
|
|
|
fan3CurrentConsumption OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 current consumption"
|
|
::= { confFanSpecialModesEntry 7146 }
|
|
|
|
fan3DiffTempContatureDifference OBJECT-TYPE
|
|
SYNTAX Integer32 (0..250)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 diff temp control start temperature difference"
|
|
::= { confFanSpecialModesEntry 7148 }
|
|
|
|
fan3DifferentialTemperatureRange OBJECT-TYPE
|
|
SYNTAX Integer32 (0..250)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 differential temperature control temperature range"
|
|
::= { confFanSpecialModesEntry 7149 }
|
|
|
|
fan3ProportionalCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 proportional coefficient"
|
|
::= { confFanSpecialModesEntry 7150 }
|
|
|
|
fan3IntegralCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 integral coefficient"
|
|
::= { confFanSpecialModesEntry 7151 }
|
|
|
|
fan3DerivativeCoefficient OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 derivative coefficient"
|
|
::= { confFanSpecialModesEntry 7152 }
|
|
|
|
fan3StopIfCoolingNotPossible OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 stop if cooling not possible"
|
|
::= { confFanSpecialModesEntry 7153 }
|
|
|
|
fan3FilterMaxPressureDrop OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 filter max pressure drop"
|
|
::= { confFanSpecialModesEntry 7161 }
|
|
|
|
fan3FilterCurrentPressureDrop OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 filter current pressure drop"
|
|
::= { confFanSpecialModesEntry 7162 }
|
|
|
|
fan3DiffTempControlType OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 diff temp control type"
|
|
::= { confFanSpecialModesEntry 7163 }
|
|
|
|
confAirLouverTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfAirLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confAirLouver"
|
|
::= { confAirLouver 1 }
|
|
|
|
confAirLouverEntry OBJECT-TYPE
|
|
SYNTAX ConfAirLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confAirLouver"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confAirLouverTable 1 }
|
|
|
|
ConfAirLouverEntry ::= SEQUENCE {
|
|
louver1ConfigActive Unsigned32,
|
|
louver1DigitalOut Unsigned32,
|
|
louver2ConfigActive Unsigned32,
|
|
louver2DigitalOut Unsigned32,
|
|
louver3ConfigActive Unsigned32,
|
|
louver3DigitalOut Unsigned32
|
|
}
|
|
|
|
louver1ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver1 config active"
|
|
::= { confAirLouverEntry 7200 }
|
|
|
|
louver1DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver1 digital out"
|
|
::= { confAirLouverEntry 7209 }
|
|
|
|
louver2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver2 config active"
|
|
::= { confAirLouverEntry 7300 }
|
|
|
|
louver2DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver2 digital out"
|
|
::= { confAirLouverEntry 7309 }
|
|
|
|
louver3ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver3 config active"
|
|
::= { confAirLouverEntry 7400 }
|
|
|
|
louver3DigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver3 digital out"
|
|
::= { confAirLouverEntry 7409 }
|
|
|
|
confAEfilterTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfAEfilterEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confAEfilter"
|
|
::= { confAEfilter 1 }
|
|
|
|
confAEfilterEntry OBJECT-TYPE
|
|
SYNTAX ConfAEfilterEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confAEfilter"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confAEfilterTable 1 }
|
|
|
|
ConfAEfilterEntry ::= SEQUENCE {
|
|
filter1ConfigurationActive Unsigned32,
|
|
filter1CommonAlarmConfigured Unsigned32,
|
|
filter1ActionOnAlarm Unsigned32,
|
|
filter1Purpose Unsigned32,
|
|
filter1DigitalAlarmOutput Unsigned32,
|
|
filter2ConfigurationActive Unsigned32,
|
|
filter2CommonAlarmConfigured Unsigned32,
|
|
filter2ActionOnAlarm Unsigned32,
|
|
filter2Purpose Unsigned32,
|
|
filter2DigitalAlarmOutput Unsigned32,
|
|
filter2AlarmDelay Unsigned32,
|
|
filter3ConfigurationActive Unsigned32,
|
|
filter3CommonAlarmConfigured Unsigned32,
|
|
filter3ActionOnAlarm Unsigned32,
|
|
filter3Purpose Unsigned32,
|
|
filter3DigitalAlarmOutput Unsigned32,
|
|
filter3AlarmDelay Unsigned32,
|
|
externalFilterCoigurationActive Unsigned32,
|
|
externalFilterCoAlarmConfigured Unsigned32,
|
|
externalFilterActionOnAlarm Unsigned32,
|
|
externalFilterDigitalAlarmInput Unsigned32,
|
|
externalFilterDigitalAlarmOutput Unsigned32,
|
|
externalFilterAlarmDelay Unsigned32
|
|
}
|
|
|
|
filter1ConfigurationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 1 configuration active"
|
|
::= { confAEfilterEntry 11000 }
|
|
|
|
filter1CommonAlarmConfigured OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 1 common alarm configured"
|
|
::= { confAEfilterEntry 11002 }
|
|
|
|
filter1ActionOnAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 1 action on alarm"
|
|
::= { confAEfilterEntry 11003 }
|
|
|
|
filter1Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 1 purpose"
|
|
::= { confAEfilterEntry 11008 }
|
|
|
|
filter1DigitalAlarmOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 1 digital alarm output"
|
|
::= { confAEfilterEntry 11011 }
|
|
|
|
filter2ConfigurationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 2 configuration active"
|
|
::= { confAEfilterEntry 11100 }
|
|
|
|
filter2CommonAlarmConfigured OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 2 common alarm configured"
|
|
::= { confAEfilterEntry 11102 }
|
|
|
|
filter2ActionOnAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 2 action on alarm"
|
|
::= { confAEfilterEntry 11103 }
|
|
|
|
filter2Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 2 purpose"
|
|
::= { confAEfilterEntry 11108 }
|
|
|
|
filter2DigitalAlarmOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 2 digital alarm output"
|
|
::= { confAEfilterEntry 11111 }
|
|
|
|
filter2AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 2 alarm delay"
|
|
::= { confAEfilterEntry 11112 }
|
|
|
|
filter3ConfigurationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 3 configuration active"
|
|
::= { confAEfilterEntry 11200 }
|
|
|
|
filter3CommonAlarmConfigured OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 3 common alarm configured"
|
|
::= { confAEfilterEntry 11202 }
|
|
|
|
filter3ActionOnAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 3 action on alarm"
|
|
::= { confAEfilterEntry 11203 }
|
|
|
|
filter3Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 3 purpose"
|
|
::= { confAEfilterEntry 11208 }
|
|
|
|
filter3DigitalAlarmOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 3 digital alarm output"
|
|
::= { confAEfilterEntry 11211 }
|
|
|
|
filter3AlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Filter 3 alarm delay"
|
|
::= { confAEfilterEntry 11212 }
|
|
|
|
externalFilterCoigurationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"External Filter configuration active"
|
|
::= { confAEfilterEntry 11300 }
|
|
|
|
externalFilterCoAlarmConfigured OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"External Filter common alarm configured"
|
|
::= { confAEfilterEntry 11302 }
|
|
|
|
externalFilterActionOnAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"External Filter action on alarm"
|
|
::= { confAEfilterEntry 11303 }
|
|
|
|
externalFilterDigitalAlarmInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..43)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"External Filter digital alarm input"
|
|
::= { confAEfilterEntry 11308 }
|
|
|
|
externalFilterDigitalAlarmOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"External Filter digital alarm output"
|
|
::= { confAEfilterEntry 11309 }
|
|
|
|
externalFilterAlarmDelay OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"External Filter alarm delay"
|
|
::= { confAEfilterEntry 11310 }
|
|
|
|
confSensor1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor1"
|
|
::= { confSensor1 1 }
|
|
|
|
confSensor1Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor1Table 1 }
|
|
|
|
ConfSensor1Entry ::= SEQUENCE {
|
|
sensor1ConfigActive Unsigned32,
|
|
sensor1DefectCommonAlarmConfig Unsigned32,
|
|
sensor1LimitCommonAlarmConfig Unsigned32,
|
|
sensor1PurposeUse Unsigned32,
|
|
sensor1Type Unsigned32,
|
|
sensor1AnalogInput Unsigned32,
|
|
sensor1MinValue Integer32,
|
|
sensor1MaxValue Integer32,
|
|
sensor1MinPhysValue Integer32,
|
|
sensor1MaxPhysValue Integer32,
|
|
sensor1Tolerance Unsigned32,
|
|
sensor1AlarmPriorities Unsigned32,
|
|
sensor1FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor1ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 config. active"
|
|
::= { confSensor1Entry 2300 }
|
|
|
|
sensor1DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 defect common alarm config"
|
|
::= { confSensor1Entry 2303 }
|
|
|
|
sensor1LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 limit common alarm config"
|
|
::= { confSensor1Entry 2304 }
|
|
|
|
sensor1PurposeUse OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 purpose/use"
|
|
::= { confSensor1Entry 2308 }
|
|
|
|
sensor1Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 type"
|
|
::= { confSensor1Entry 2309 }
|
|
|
|
sensor1AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 analog input"
|
|
::= { confSensor1Entry 2310 }
|
|
|
|
sensor1MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 min value"
|
|
::= { confSensor1Entry 2311 }
|
|
|
|
sensor1MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 max value"
|
|
::= { confSensor1Entry 2312 }
|
|
|
|
sensor1MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 min phys. value"
|
|
::= { confSensor1Entry 2313 }
|
|
|
|
sensor1MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 max phys. value"
|
|
::= { confSensor1Entry 2314 }
|
|
|
|
sensor1Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 tolerance"
|
|
::= { confSensor1Entry 2315 }
|
|
|
|
sensor1AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 alarm priorities"
|
|
::= { confSensor1Entry 2316 }
|
|
|
|
sensor1FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 failure alarm priorities"
|
|
::= { confSensor1Entry 2318 }
|
|
|
|
confSensor2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor2"
|
|
::= { confSensor2 1 }
|
|
|
|
confSensor2Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor2Table 1 }
|
|
|
|
ConfSensor2Entry ::= SEQUENCE {
|
|
sensor2ConfigActive Unsigned32,
|
|
sensor2DefectCommonAlarmConfig Unsigned32,
|
|
sensor2LimitCommonAlarmConfig Unsigned32,
|
|
sensor2BmsValueActive Unsigned32,
|
|
sensor2Purpose Unsigned32,
|
|
sensor2Type Unsigned32,
|
|
sensor2AnalogInput Unsigned32,
|
|
sensor2MinValue Integer32,
|
|
sensor2MaxValue Integer32,
|
|
sensor2MinPhysValue Integer32,
|
|
sensor2MaxPhysValue Integer32,
|
|
sensor2Tolerance Unsigned32,
|
|
sensor2AlarmPriorities Unsigned32,
|
|
sensor2FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 config. active"
|
|
::= { confSensor2Entry 2400 }
|
|
|
|
sensor2DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 defect common alarm config"
|
|
::= { confSensor2Entry 2403 }
|
|
|
|
sensor2LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 limit common alarm config"
|
|
::= { confSensor2Entry 2404 }
|
|
|
|
sensor2BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 bms value active"
|
|
::= { confSensor2Entry 2406 }
|
|
|
|
sensor2Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 purpose"
|
|
::= { confSensor2Entry 2408 }
|
|
|
|
sensor2Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 type"
|
|
::= { confSensor2Entry 2409 }
|
|
|
|
sensor2AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 analog input"
|
|
::= { confSensor2Entry 2410 }
|
|
|
|
sensor2MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 min value"
|
|
::= { confSensor2Entry 2411 }
|
|
|
|
sensor2MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 max value"
|
|
::= { confSensor2Entry 2412 }
|
|
|
|
sensor2MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 min phys. value"
|
|
::= { confSensor2Entry 2413 }
|
|
|
|
sensor2MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 max phys. value"
|
|
::= { confSensor2Entry 2414 }
|
|
|
|
sensor2Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 tolerance"
|
|
::= { confSensor2Entry 2415 }
|
|
|
|
sensor2AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 alarm priorities"
|
|
::= { confSensor2Entry 2416 }
|
|
|
|
sensor2FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 failure alarm priorities"
|
|
::= { confSensor2Entry 2418 }
|
|
|
|
confSensor3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor3"
|
|
::= { confSensor3 1 }
|
|
|
|
confSensor3Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor3Table 1 }
|
|
|
|
ConfSensor3Entry ::= SEQUENCE {
|
|
sensor3ConfigActive Unsigned32,
|
|
sensor3DefectCommonAlarmConfig Unsigned32,
|
|
sensor3LimitCommonAlarmConfig Unsigned32,
|
|
sensor3Purpose Unsigned32,
|
|
sensor3Type Unsigned32,
|
|
sensor3AnalogInput Unsigned32,
|
|
sensor3MinValue Integer32,
|
|
sensor3MaxValue Integer32,
|
|
sensor3MinPhysValue Integer32,
|
|
sensor3MaxPhysValue Integer32,
|
|
sensor3Tolerance Unsigned32,
|
|
sensor3AlarmPriorities Unsigned32,
|
|
sensor3FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor3ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 config. active"
|
|
::= { confSensor3Entry 2500 }
|
|
|
|
sensor3DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 defect common alarm config"
|
|
::= { confSensor3Entry 2503 }
|
|
|
|
sensor3LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 limit common alarm config"
|
|
::= { confSensor3Entry 2504 }
|
|
|
|
sensor3Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 purpose"
|
|
::= { confSensor3Entry 2508 }
|
|
|
|
sensor3Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 type"
|
|
::= { confSensor3Entry 2509 }
|
|
|
|
sensor3AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 analog input"
|
|
::= { confSensor3Entry 2510 }
|
|
|
|
sensor3MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 min value"
|
|
::= { confSensor3Entry 2511 }
|
|
|
|
sensor3MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 max value"
|
|
::= { confSensor3Entry 2512 }
|
|
|
|
sensor3MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 min phys. value"
|
|
::= { confSensor3Entry 2513 }
|
|
|
|
sensor3MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 max phys. value"
|
|
::= { confSensor3Entry 2514 }
|
|
|
|
sensor3Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 tolerance"
|
|
::= { confSensor3Entry 2515 }
|
|
|
|
sensor3AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 alarm priorities"
|
|
::= { confSensor3Entry 2516 }
|
|
|
|
sensor3FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 failure alarm priorities"
|
|
::= { confSensor3Entry 2518 }
|
|
|
|
confSensor4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor4"
|
|
::= { confSensor4 1 }
|
|
|
|
confSensor4Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor4Table 1 }
|
|
|
|
ConfSensor4Entry ::= SEQUENCE {
|
|
sensor4ConfigActive Unsigned32,
|
|
sensor4DefectCommonAlarmConfig Unsigned32,
|
|
sensor4LimitCommonAlarmConfig Unsigned32,
|
|
sensor4Purpose Unsigned32,
|
|
sensor4Type Unsigned32,
|
|
sensor4AnalogInput Unsigned32,
|
|
sensor4MinValue Integer32,
|
|
sensor4MaxValue Integer32,
|
|
sensor4MinPhysValue Integer32,
|
|
sensor4MaxPhysValue Integer32,
|
|
sensor4Tolerance Unsigned32,
|
|
sensor4AlarmPriorities Unsigned32,
|
|
sensor4FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor4ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 config. active"
|
|
::= { confSensor4Entry 2600 }
|
|
|
|
sensor4DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 defect common alarm config"
|
|
::= { confSensor4Entry 2603 }
|
|
|
|
sensor4LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 limit common alarm config"
|
|
::= { confSensor4Entry 2604 }
|
|
|
|
sensor4Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 purpose"
|
|
::= { confSensor4Entry 2608 }
|
|
|
|
sensor4Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 type"
|
|
::= { confSensor4Entry 2609 }
|
|
|
|
sensor4AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 analog input"
|
|
::= { confSensor4Entry 2610 }
|
|
|
|
sensor4MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 min value"
|
|
::= { confSensor4Entry 2611 }
|
|
|
|
sensor4MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 max value"
|
|
::= { confSensor4Entry 2612 }
|
|
|
|
sensor4MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 min phys. value"
|
|
::= { confSensor4Entry 2613 }
|
|
|
|
sensor4MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 max phys. value"
|
|
::= { confSensor4Entry 2614 }
|
|
|
|
sensor4Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 tolerance"
|
|
::= { confSensor4Entry 2615 }
|
|
|
|
sensor4AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 alarm priorities"
|
|
::= { confSensor4Entry 2616 }
|
|
|
|
sensor4FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 failure alarm priorities"
|
|
::= { confSensor4Entry 2618 }
|
|
|
|
confSensor5Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor5"
|
|
::= { confSensor5 1 }
|
|
|
|
confSensor5Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor5"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor5Table 1 }
|
|
|
|
ConfSensor5Entry ::= SEQUENCE {
|
|
sensor5ConfigActive Unsigned32,
|
|
sensor5DefectCommonAlarmConfig Unsigned32,
|
|
sensor5LimitCommonAlarmConfig Unsigned32,
|
|
sensor5Purpose Unsigned32,
|
|
sensor5Type Unsigned32,
|
|
sensor5AnalogInput Unsigned32,
|
|
sensor5MinValue Integer32,
|
|
sensor5MaxValue Integer32,
|
|
sensor5MinPhysValue Integer32,
|
|
sensor5MaxPhysValue Integer32,
|
|
sensor5Tolerance Unsigned32,
|
|
sensor5AlarmPriorities Unsigned32,
|
|
sensor5FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor5ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 config. active"
|
|
::= { confSensor5Entry 2700 }
|
|
|
|
sensor5DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 defect common alarm config"
|
|
::= { confSensor5Entry 2703 }
|
|
|
|
sensor5LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 limit common alarm config"
|
|
::= { confSensor5Entry 2704 }
|
|
|
|
sensor5Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 purpose"
|
|
::= { confSensor5Entry 2708 }
|
|
|
|
sensor5Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 type"
|
|
::= { confSensor5Entry 2709 }
|
|
|
|
sensor5AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 analog input"
|
|
::= { confSensor5Entry 2710 }
|
|
|
|
sensor5MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 min value"
|
|
::= { confSensor5Entry 2711 }
|
|
|
|
sensor5MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 max value"
|
|
::= { confSensor5Entry 2712 }
|
|
|
|
sensor5MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 min phys. value"
|
|
::= { confSensor5Entry 2713 }
|
|
|
|
sensor5MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 max phys. value"
|
|
::= { confSensor5Entry 2714 }
|
|
|
|
sensor5Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 tolerance"
|
|
::= { confSensor5Entry 2715 }
|
|
|
|
sensor5AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 alarm priorities"
|
|
::= { confSensor5Entry 2716 }
|
|
|
|
sensor5FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 failure alarm priorities"
|
|
::= { confSensor5Entry 2718 }
|
|
|
|
confSensor6Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor6"
|
|
::= { confSensor6 1 }
|
|
|
|
confSensor6Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor6"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor6Table 1 }
|
|
|
|
ConfSensor6Entry ::= SEQUENCE {
|
|
sensor6ConfigActive Unsigned32,
|
|
sensor6DefectCommonAlarmConfig Unsigned32,
|
|
sensor6LimitCommonAlarmConfig Unsigned32,
|
|
sensor6Purpose Unsigned32,
|
|
sensor6Type Unsigned32,
|
|
sensor6AnalogInput Unsigned32,
|
|
sensor6MinValue Integer32,
|
|
sensor6MaxValue Integer32,
|
|
sensor6MinPhysValue Integer32,
|
|
sensor6MaxPhysValue Integer32,
|
|
sensor6Tolerance Unsigned32,
|
|
sensor6AlarmPriorities Unsigned32,
|
|
sensor6FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor6ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 config. active"
|
|
::= { confSensor6Entry 2800 }
|
|
|
|
sensor6DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 defect common alarm config"
|
|
::= { confSensor6Entry 2803 }
|
|
|
|
sensor6LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 limit common alarm config"
|
|
::= { confSensor6Entry 2804 }
|
|
|
|
sensor6Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 purpose"
|
|
::= { confSensor6Entry 2808 }
|
|
|
|
sensor6Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 type"
|
|
::= { confSensor6Entry 2809 }
|
|
|
|
sensor6AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 analog input"
|
|
::= { confSensor6Entry 2810 }
|
|
|
|
sensor6MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 min value"
|
|
::= { confSensor6Entry 2811 }
|
|
|
|
sensor6MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 max value"
|
|
::= { confSensor6Entry 2812 }
|
|
|
|
sensor6MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 min phys. value"
|
|
::= { confSensor6Entry 2813 }
|
|
|
|
sensor6MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 max phys. value"
|
|
::= { confSensor6Entry 2814 }
|
|
|
|
sensor6Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 tolerance"
|
|
::= { confSensor6Entry 2815 }
|
|
|
|
sensor6AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 alarm priorities"
|
|
::= { confSensor6Entry 2816 }
|
|
|
|
sensor6FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 failure alarm priorities"
|
|
::= { confSensor6Entry 2818 }
|
|
|
|
confSensor7Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor7Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor7"
|
|
::= { confSensor7 1 }
|
|
|
|
confSensor7Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor7Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor7"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor7Table 1 }
|
|
|
|
ConfSensor7Entry ::= SEQUENCE {
|
|
sensor7ConfigActive Unsigned32,
|
|
sensor7DefectCommonAlarmConfig Unsigned32,
|
|
sensor7LimitCommonAlarmConfig Unsigned32,
|
|
sensor7Purpose Unsigned32,
|
|
sensor7Type Unsigned32,
|
|
sensor7AnalogInput Unsigned32,
|
|
sensor7MinValue Integer32,
|
|
sensor7MaxValue Integer32,
|
|
sensor7MinPhysValue Integer32,
|
|
sensor7MaxPhysValue Integer32,
|
|
sensor7Tolerance Unsigned32,
|
|
sensor7AlarmPriorities Unsigned32,
|
|
sensor7FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor7ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 config. active"
|
|
::= { confSensor7Entry 2900 }
|
|
|
|
sensor7DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 defect common alarm config"
|
|
::= { confSensor7Entry 2903 }
|
|
|
|
sensor7LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 limit common alarm config"
|
|
::= { confSensor7Entry 2904 }
|
|
|
|
sensor7Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 purpose"
|
|
::= { confSensor7Entry 2908 }
|
|
|
|
sensor7Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 type"
|
|
::= { confSensor7Entry 2909 }
|
|
|
|
sensor7AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 analog input"
|
|
::= { confSensor7Entry 2910 }
|
|
|
|
sensor7MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 min value"
|
|
::= { confSensor7Entry 2911 }
|
|
|
|
sensor7MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 max value"
|
|
::= { confSensor7Entry 2912 }
|
|
|
|
sensor7MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 min phys. value"
|
|
::= { confSensor7Entry 2913 }
|
|
|
|
sensor7MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 max phys. value"
|
|
::= { confSensor7Entry 2914 }
|
|
|
|
sensor7Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 tolerance"
|
|
::= { confSensor7Entry 2915 }
|
|
|
|
sensor7AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 alarm priorities"
|
|
::= { confSensor7Entry 2916 }
|
|
|
|
sensor7FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 failure alarm priorities"
|
|
::= { confSensor7Entry 2918 }
|
|
|
|
confSensor8Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor8Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor8"
|
|
::= { confSensor8 1 }
|
|
|
|
confSensor8Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor8Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor8"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor8Table 1 }
|
|
|
|
ConfSensor8Entry ::= SEQUENCE {
|
|
sensor8ConfigActive Unsigned32,
|
|
sensor8DefectCommonAlarmConfig Unsigned32,
|
|
sensor8LimitCommonAlarmConfig Unsigned32,
|
|
sensor8Purpose Unsigned32,
|
|
sensor8Type Unsigned32,
|
|
sensor8AnalogInput Unsigned32,
|
|
sensor8MinValue Integer32,
|
|
sensor8MaxValue Integer32,
|
|
sensor8MinPhysValue Integer32,
|
|
sensor8MaxPhysValue Integer32,
|
|
sensor8Tolerance Unsigned32,
|
|
sensor8AlarmPriorities Unsigned32,
|
|
sensor8FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor8ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 config. active"
|
|
::= { confSensor8Entry 3000 }
|
|
|
|
sensor8DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 defect common alarm config"
|
|
::= { confSensor8Entry 3003 }
|
|
|
|
sensor8LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 limit common alarm config"
|
|
::= { confSensor8Entry 3004 }
|
|
|
|
sensor8Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 purpose"
|
|
::= { confSensor8Entry 3008 }
|
|
|
|
sensor8Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 type"
|
|
::= { confSensor8Entry 3009 }
|
|
|
|
sensor8AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 analog input"
|
|
::= { confSensor8Entry 3010 }
|
|
|
|
sensor8MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 min value"
|
|
::= { confSensor8Entry 3011 }
|
|
|
|
sensor8MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 max value"
|
|
::= { confSensor8Entry 3012 }
|
|
|
|
sensor8MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 min phys. value"
|
|
::= { confSensor8Entry 3013 }
|
|
|
|
sensor8MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 max phys. value"
|
|
::= { confSensor8Entry 3014 }
|
|
|
|
sensor8Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 tolerance"
|
|
::= { confSensor8Entry 3015 }
|
|
|
|
sensor8AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 alarm priorities"
|
|
::= { confSensor8Entry 3016 }
|
|
|
|
sensor8FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 failure alarm priorities"
|
|
::= { confSensor8Entry 3018 }
|
|
|
|
confSensor9Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor9Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor9"
|
|
::= { confSensor9 1 }
|
|
|
|
confSensor9Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor9Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor9"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor9Table 1 }
|
|
|
|
ConfSensor9Entry ::= SEQUENCE {
|
|
sensor9ConfigActive Unsigned32,
|
|
sensor9DefectCommonAlarmConfig Unsigned32,
|
|
sensor9LimitCommonAlarmConfig Unsigned32,
|
|
sensor9Purpose Unsigned32,
|
|
sensor9Type Unsigned32,
|
|
sensor9AnalogInput Unsigned32,
|
|
sensor9MinValue Integer32,
|
|
sensor9MaxValue Integer32,
|
|
sensor9MinPhysValue Integer32,
|
|
sensor9MaxPhysValue Integer32,
|
|
sensor9Tolerance Unsigned32,
|
|
sensor9AlarmPriorities Unsigned32,
|
|
sensor9FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor9ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 config. active"
|
|
::= { confSensor9Entry 3100 }
|
|
|
|
sensor9DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 defect common alarm config"
|
|
::= { confSensor9Entry 3103 }
|
|
|
|
sensor9LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 limit common alarm config"
|
|
::= { confSensor9Entry 3104 }
|
|
|
|
sensor9Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 purpose"
|
|
::= { confSensor9Entry 3108 }
|
|
|
|
sensor9Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 type"
|
|
::= { confSensor9Entry 3109 }
|
|
|
|
sensor9AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 analog input"
|
|
::= { confSensor9Entry 3110 }
|
|
|
|
sensor9MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 min value"
|
|
::= { confSensor9Entry 3111 }
|
|
|
|
sensor9MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 max value"
|
|
::= { confSensor9Entry 3112 }
|
|
|
|
sensor9MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 min phys. value"
|
|
::= { confSensor9Entry 3113 }
|
|
|
|
sensor9MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 max phys. value"
|
|
::= { confSensor9Entry 3114 }
|
|
|
|
sensor9Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 tolerance"
|
|
::= { confSensor9Entry 3115 }
|
|
|
|
sensor9AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 alarm priorities"
|
|
::= { confSensor9Entry 3116 }
|
|
|
|
sensor9FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 failure alarm priorities"
|
|
::= { confSensor9Entry 3118 }
|
|
|
|
confSensor10Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor10Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor10"
|
|
::= { confSensor10 1 }
|
|
|
|
confSensor10Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor10Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor10"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor10Table 1 }
|
|
|
|
ConfSensor10Entry ::= SEQUENCE {
|
|
sensor10ConfigActive Unsigned32,
|
|
sensor10DefectCommonAlarmConfig Unsigned32,
|
|
sensor10LimitCommonAlarmConfig Unsigned32,
|
|
sensor10Purpose Unsigned32,
|
|
sensor10Type Unsigned32,
|
|
sensor10AnalogInput Unsigned32,
|
|
sensor10MinValue Integer32,
|
|
sensor10MaxValue Integer32,
|
|
sensor10MinPhysValue Integer32,
|
|
sensor10MaxPhysValue Integer32,
|
|
sensor10Tolerance Unsigned32,
|
|
sensor10AlarmPriorities Unsigned32,
|
|
sensor10FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor10ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 config. active"
|
|
::= { confSensor10Entry 3200 }
|
|
|
|
sensor10DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 defect common alarm config"
|
|
::= { confSensor10Entry 3203 }
|
|
|
|
sensor10LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 limit common alarm config"
|
|
::= { confSensor10Entry 3204 }
|
|
|
|
sensor10Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 purpose"
|
|
::= { confSensor10Entry 3208 }
|
|
|
|
sensor10Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 type"
|
|
::= { confSensor10Entry 3209 }
|
|
|
|
sensor10AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 analog input"
|
|
::= { confSensor10Entry 3210 }
|
|
|
|
sensor10MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 min value"
|
|
::= { confSensor10Entry 3211 }
|
|
|
|
sensor10MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 max value"
|
|
::= { confSensor10Entry 3212 }
|
|
|
|
sensor10MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 min phys. value"
|
|
::= { confSensor10Entry 3213 }
|
|
|
|
sensor10MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 max phys. value"
|
|
::= { confSensor10Entry 3214 }
|
|
|
|
sensor10Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 tolerance"
|
|
::= { confSensor10Entry 3215 }
|
|
|
|
sensor10AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 alarm priorities"
|
|
::= { confSensor10Entry 3216 }
|
|
|
|
sensor10FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 failure alarm priorities"
|
|
::= { confSensor10Entry 3218 }
|
|
|
|
confSensor11Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor11Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor11"
|
|
::= { confSensor11 1 }
|
|
|
|
confSensor11Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor11Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor11"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor11Table 1 }
|
|
|
|
ConfSensor11Entry ::= SEQUENCE {
|
|
sensor11ConfigActive Unsigned32,
|
|
sensor11DefectCommonAlarmConfig Unsigned32,
|
|
sensor11LimitCommonAlarmConfig Unsigned32,
|
|
sensor11Purpose Unsigned32,
|
|
sensor11Type Unsigned32,
|
|
sensor11AnalogInput Unsigned32,
|
|
sensor11MinValue Integer32,
|
|
sensor11MaxValue Integer32,
|
|
sensor11MinPhysValue Integer32,
|
|
sensor11MaxPhysValue Integer32,
|
|
sensor11Tolerance Unsigned32,
|
|
sensor11AlarmPriorities Unsigned32,
|
|
sensor11FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor11ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 config. active"
|
|
::= { confSensor11Entry 3300 }
|
|
|
|
sensor11DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 defect common alarm config"
|
|
::= { confSensor11Entry 3303 }
|
|
|
|
sensor11LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 limit common alarm config"
|
|
::= { confSensor11Entry 3304 }
|
|
|
|
sensor11Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 purpose"
|
|
::= { confSensor11Entry 3308 }
|
|
|
|
sensor11Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 type"
|
|
::= { confSensor11Entry 3309 }
|
|
|
|
sensor11AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 analog input"
|
|
::= { confSensor11Entry 3310 }
|
|
|
|
sensor11MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 min value"
|
|
::= { confSensor11Entry 3311 }
|
|
|
|
sensor11MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 max value"
|
|
::= { confSensor11Entry 3312 }
|
|
|
|
sensor11MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 min phys. value"
|
|
::= { confSensor11Entry 3313 }
|
|
|
|
sensor11MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 max phys. value"
|
|
::= { confSensor11Entry 3314 }
|
|
|
|
sensor11Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 tolerance"
|
|
::= { confSensor11Entry 3315 }
|
|
|
|
sensor11AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 alarm priorities"
|
|
::= { confSensor11Entry 3316 }
|
|
|
|
sensor11FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 failure alarm priorities"
|
|
::= { confSensor11Entry 3318 }
|
|
|
|
confSensor12Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor12Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor12"
|
|
::= { confSensor12 1 }
|
|
|
|
confSensor12Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor12Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor12"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor12Table 1 }
|
|
|
|
ConfSensor12Entry ::= SEQUENCE {
|
|
sensor12ConfigActive Unsigned32,
|
|
sensor12DefectCommonAlarmConfig Unsigned32,
|
|
sensor12LimitCommonAlarmConfig Unsigned32,
|
|
sensor12Purpose Unsigned32,
|
|
sensor12Type Unsigned32,
|
|
sensor12AnalogInput Unsigned32,
|
|
sensor12MinValue Integer32,
|
|
sensor12MaxValue Integer32,
|
|
sensor12MinPhysValue Integer32,
|
|
sensor12MaxPhysValue Integer32,
|
|
sensor12Tolerance Unsigned32,
|
|
sensor12AlarmPriorities Unsigned32,
|
|
sensor12FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor12ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 config. active"
|
|
::= { confSensor12Entry 3400 }
|
|
|
|
sensor12DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 defect common alarm config"
|
|
::= { confSensor12Entry 3403 }
|
|
|
|
sensor12LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 limit common alarm config"
|
|
::= { confSensor12Entry 3404 }
|
|
|
|
sensor12Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 purpose"
|
|
::= { confSensor12Entry 3408 }
|
|
|
|
sensor12Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 type"
|
|
::= { confSensor12Entry 3409 }
|
|
|
|
sensor12AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 analog input"
|
|
::= { confSensor12Entry 3410 }
|
|
|
|
sensor12MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 min value"
|
|
::= { confSensor12Entry 3411 }
|
|
|
|
sensor12MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 max value"
|
|
::= { confSensor12Entry 3412 }
|
|
|
|
sensor12MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 min phys. value"
|
|
::= { confSensor12Entry 3413 }
|
|
|
|
sensor12MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 max phys. value"
|
|
::= { confSensor12Entry 3414 }
|
|
|
|
sensor12Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 tolerance"
|
|
::= { confSensor12Entry 3415 }
|
|
|
|
sensor12AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 alarm priorities"
|
|
::= { confSensor12Entry 3416 }
|
|
|
|
sensor12FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 failure alarm priorities"
|
|
::= { confSensor12Entry 3418 }
|
|
|
|
confSensor13Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor13Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor13"
|
|
::= { confSensor13 1 }
|
|
|
|
confSensor13Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor13Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor13"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor13Table 1 }
|
|
|
|
ConfSensor13Entry ::= SEQUENCE {
|
|
sensor13ConfigActive Unsigned32,
|
|
sensor13DefectCommonAlarmConfig Unsigned32,
|
|
sensor13LimitCommonAlarmConfig Unsigned32,
|
|
sensor13Purpose Unsigned32,
|
|
sensor13Type Unsigned32,
|
|
sensor13AnalogInput Unsigned32,
|
|
sensor13MinValue Integer32,
|
|
sensor13MaxValue Integer32,
|
|
sensor13MinPhysValue Integer32,
|
|
sensor13MaxPhysValue Integer32,
|
|
sensor13Tolerance Unsigned32,
|
|
sensor13AlarmPriorities Unsigned32,
|
|
sensor13FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor13ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 config. active"
|
|
::= { confSensor13Entry 3500 }
|
|
|
|
sensor13DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 defect common alarm config"
|
|
::= { confSensor13Entry 3503 }
|
|
|
|
sensor13LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 limit common alarm config"
|
|
::= { confSensor13Entry 3504 }
|
|
|
|
sensor13Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 purpose"
|
|
::= { confSensor13Entry 3508 }
|
|
|
|
sensor13Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 type"
|
|
::= { confSensor13Entry 3509 }
|
|
|
|
sensor13AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 analog input"
|
|
::= { confSensor13Entry 3510 }
|
|
|
|
sensor13MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 min value"
|
|
::= { confSensor13Entry 3511 }
|
|
|
|
sensor13MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 max value"
|
|
::= { confSensor13Entry 3512 }
|
|
|
|
sensor13MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 min phys. value"
|
|
::= { confSensor13Entry 3513 }
|
|
|
|
sensor13MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 max phys. value"
|
|
::= { confSensor13Entry 3514 }
|
|
|
|
sensor13Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 tolerance"
|
|
::= { confSensor13Entry 3515 }
|
|
|
|
sensor13AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 alarm priorities"
|
|
::= { confSensor13Entry 3516 }
|
|
|
|
sensor13FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 failure alarm priorities"
|
|
::= { confSensor13Entry 3518 }
|
|
|
|
confSensor14Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor14Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor14"
|
|
::= { confSensor14 1 }
|
|
|
|
confSensor14Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor14Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor14"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor14Table 1 }
|
|
|
|
ConfSensor14Entry ::= SEQUENCE {
|
|
sensor14ConfigActive Unsigned32,
|
|
sensor14DefectCommonAlarmConfig Unsigned32,
|
|
sensor14LimitCommonAlarmConfig Unsigned32,
|
|
sensor14Purpose Unsigned32,
|
|
sensor14Type Unsigned32,
|
|
sensor14AnalogInput Unsigned32,
|
|
sensor14MinValue Integer32,
|
|
sensor14MaxValue Integer32,
|
|
sensor14MinPhysValue Integer32,
|
|
sensor14MaxPhysValue Integer32,
|
|
sensor14Tolerance Unsigned32,
|
|
sensor14AlarmPriorities Unsigned32,
|
|
sensor14FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor14ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 config. active"
|
|
::= { confSensor14Entry 3600 }
|
|
|
|
sensor14DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 defect common alarm config"
|
|
::= { confSensor14Entry 3603 }
|
|
|
|
sensor14LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 limit common alarm config"
|
|
::= { confSensor14Entry 3604 }
|
|
|
|
sensor14Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 purpose"
|
|
::= { confSensor14Entry 3608 }
|
|
|
|
sensor14Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 type"
|
|
::= { confSensor14Entry 3609 }
|
|
|
|
sensor14AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 analog input"
|
|
::= { confSensor14Entry 3610 }
|
|
|
|
sensor14MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 min value"
|
|
::= { confSensor14Entry 3611 }
|
|
|
|
sensor14MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 max value"
|
|
::= { confSensor14Entry 3612 }
|
|
|
|
sensor14MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 min phys. value"
|
|
::= { confSensor14Entry 3613 }
|
|
|
|
sensor14MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 max phys. value"
|
|
::= { confSensor14Entry 3614 }
|
|
|
|
sensor14Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 tolerance"
|
|
::= { confSensor14Entry 3615 }
|
|
|
|
sensor14AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 alarm priorities"
|
|
::= { confSensor14Entry 3616 }
|
|
|
|
sensor14FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 failure alarm priorities"
|
|
::= { confSensor14Entry 3618 }
|
|
|
|
confSensor15Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor15Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor15"
|
|
::= { confSensor15 1 }
|
|
|
|
confSensor15Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor15Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor15"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor15Table 1 }
|
|
|
|
ConfSensor15Entry ::= SEQUENCE {
|
|
sensor15ConfigActive Unsigned32,
|
|
sensor15DefectCommonAlarmConfig Unsigned32,
|
|
sensor15LimitCommonAlarmConfig Unsigned32,
|
|
sensor15Purpose Unsigned32,
|
|
sensor15Type Unsigned32,
|
|
sensor15AnalogInput Unsigned32,
|
|
sensor15MinValue Integer32,
|
|
sensor15MaxValue Integer32,
|
|
sensor15MinPhysValue Integer32,
|
|
sensor15MaxPhysValue Integer32,
|
|
sensor15Tolerance Unsigned32,
|
|
sensor15AlarmPriorities Unsigned32,
|
|
sensor15FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor15ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 config. active"
|
|
::= { confSensor15Entry 3700 }
|
|
|
|
sensor15DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 defect common alarm config"
|
|
::= { confSensor15Entry 3703 }
|
|
|
|
sensor15LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 limit common alarm config"
|
|
::= { confSensor15Entry 3704 }
|
|
|
|
sensor15Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 purpose"
|
|
::= { confSensor15Entry 3708 }
|
|
|
|
sensor15Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 type"
|
|
::= { confSensor15Entry 3709 }
|
|
|
|
sensor15AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 analog input"
|
|
::= { confSensor15Entry 3710 }
|
|
|
|
sensor15MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 min value"
|
|
::= { confSensor15Entry 3711 }
|
|
|
|
sensor15MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 max value"
|
|
::= { confSensor15Entry 3712 }
|
|
|
|
sensor15MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 min phys. value"
|
|
::= { confSensor15Entry 3713 }
|
|
|
|
sensor15MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 max phys. value"
|
|
::= { confSensor15Entry 3714 }
|
|
|
|
sensor15Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 tolerance"
|
|
::= { confSensor15Entry 3715 }
|
|
|
|
sensor15AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 alarm priorities"
|
|
::= { confSensor15Entry 3716 }
|
|
|
|
sensor15FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 failure alarm priorities"
|
|
::= { confSensor15Entry 3718 }
|
|
|
|
confSensor16Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor16Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor16"
|
|
::= { confSensor16 1 }
|
|
|
|
confSensor16Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor16Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor16"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor16Table 1 }
|
|
|
|
ConfSensor16Entry ::= SEQUENCE {
|
|
sensor16ConfigActive Unsigned32,
|
|
sensor16DefectCommonAlarmConfig Unsigned32,
|
|
sensor16LimitCommonAlarmConfig Unsigned32,
|
|
sensor16Purpose Unsigned32,
|
|
sensor16Type Unsigned32,
|
|
sensor16AnalogInput Unsigned32,
|
|
sensor16MinValue Integer32,
|
|
sensor16MaxValue Integer32,
|
|
sensor16MinPhysValue Integer32,
|
|
sensor16MaxPhysValue Integer32,
|
|
sensor16Tolerance Unsigned32,
|
|
sensor16AlarmPriorities Unsigned32,
|
|
sensor16FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor16ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 config. active"
|
|
::= { confSensor16Entry 3800 }
|
|
|
|
sensor16DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 defect common alarm config"
|
|
::= { confSensor16Entry 3803 }
|
|
|
|
sensor16LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 limit common alarm config"
|
|
::= { confSensor16Entry 3804 }
|
|
|
|
sensor16Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 purpose"
|
|
::= { confSensor16Entry 3808 }
|
|
|
|
sensor16Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 type"
|
|
::= { confSensor16Entry 3809 }
|
|
|
|
sensor16AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 analog input"
|
|
::= { confSensor16Entry 3810 }
|
|
|
|
sensor16MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 min value"
|
|
::= { confSensor16Entry 3811 }
|
|
|
|
sensor16MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 max value"
|
|
::= { confSensor16Entry 3812 }
|
|
|
|
sensor16MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 min phys. value"
|
|
::= { confSensor16Entry 3813 }
|
|
|
|
sensor16MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 max phys. value"
|
|
::= { confSensor16Entry 3814 }
|
|
|
|
sensor16Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 tolerance"
|
|
::= { confSensor16Entry 3815 }
|
|
|
|
sensor16AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 alarm priorities"
|
|
::= { confSensor16Entry 3816 }
|
|
|
|
sensor16FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 failure alarm priorities"
|
|
::= { confSensor16Entry 3818 }
|
|
|
|
confSensor17Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor17Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor17"
|
|
::= { confSensor17 1 }
|
|
|
|
confSensor17Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor17Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor17"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor17Table 1 }
|
|
|
|
ConfSensor17Entry ::= SEQUENCE {
|
|
sensor17ConfigActive Unsigned32,
|
|
sensor17DefectCommonAlarmConfig Unsigned32,
|
|
sensor17LimitCommonAlarmConfig Unsigned32,
|
|
sensor17Purpose Unsigned32,
|
|
sensor17Type Unsigned32,
|
|
sensor17AnalogInput Unsigned32,
|
|
sensor17MinValue Integer32,
|
|
sensor17MaxValue Integer32,
|
|
sensor17MinPhysValue Integer32,
|
|
sensor17MaxPhysValue Integer32,
|
|
sensor17Tolerance Unsigned32,
|
|
sensor17AlarmPriorities Unsigned32,
|
|
sensor17FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor17ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 config. active"
|
|
::= { confSensor17Entry 3900 }
|
|
|
|
sensor17DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 defect common alarm config"
|
|
::= { confSensor17Entry 3903 }
|
|
|
|
sensor17LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 limit common alarm config"
|
|
::= { confSensor17Entry 3904 }
|
|
|
|
sensor17Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 purpose"
|
|
::= { confSensor17Entry 3908 }
|
|
|
|
sensor17Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 type"
|
|
::= { confSensor17Entry 3909 }
|
|
|
|
sensor17AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 analog input"
|
|
::= { confSensor17Entry 3910 }
|
|
|
|
sensor17MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 min value"
|
|
::= { confSensor17Entry 3911 }
|
|
|
|
sensor17MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 max value"
|
|
::= { confSensor17Entry 3912 }
|
|
|
|
sensor17MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 min phys. value"
|
|
::= { confSensor17Entry 3913 }
|
|
|
|
sensor17MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 max phys. value"
|
|
::= { confSensor17Entry 3914 }
|
|
|
|
sensor17Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 tolerance"
|
|
::= { confSensor17Entry 3915 }
|
|
|
|
sensor17AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 alarm priorities"
|
|
::= { confSensor17Entry 3916 }
|
|
|
|
sensor17FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 failure alarm priorities"
|
|
::= { confSensor17Entry 3918 }
|
|
|
|
confSensor18Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor18Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor18"
|
|
::= { confSensor18 1 }
|
|
|
|
confSensor18Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor18Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor18"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor18Table 1 }
|
|
|
|
ConfSensor18Entry ::= SEQUENCE {
|
|
sensor18ConfigActive Unsigned32,
|
|
sensor18DefectCommonAlarmConfig Unsigned32,
|
|
sensor18LimitCommonAlarmConfig Unsigned32,
|
|
sensor18Purpose Unsigned32,
|
|
sensor18Type Unsigned32,
|
|
sensor18AnalogInput Unsigned32,
|
|
sensor18MinValue Integer32,
|
|
sensor18MaxValue Integer32,
|
|
sensor18MinPhysValue Integer32,
|
|
sensor18MaxPhysValue Integer32,
|
|
sensor18Tolerance Unsigned32,
|
|
sensor18AlarmPriorities Unsigned32,
|
|
sensor18FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor18ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 config. active"
|
|
::= { confSensor18Entry 4000 }
|
|
|
|
sensor18DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 defect common alarm config"
|
|
::= { confSensor18Entry 4003 }
|
|
|
|
sensor18LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 limit common alarm config"
|
|
::= { confSensor18Entry 4004 }
|
|
|
|
sensor18Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 purpose"
|
|
::= { confSensor18Entry 4008 }
|
|
|
|
sensor18Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 type"
|
|
::= { confSensor18Entry 4009 }
|
|
|
|
sensor18AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 analog input"
|
|
::= { confSensor18Entry 4010 }
|
|
|
|
sensor18MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 min value"
|
|
::= { confSensor18Entry 4011 }
|
|
|
|
sensor18MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 max value"
|
|
::= { confSensor18Entry 4012 }
|
|
|
|
sensor18MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 min phys. value"
|
|
::= { confSensor18Entry 4013 }
|
|
|
|
sensor18MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 max phys. value"
|
|
::= { confSensor18Entry 4014 }
|
|
|
|
sensor18Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 tolerance"
|
|
::= { confSensor18Entry 4015 }
|
|
|
|
sensor18AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 alarm priorities"
|
|
::= { confSensor18Entry 4016 }
|
|
|
|
sensor18FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 failure alarm priorities"
|
|
::= { confSensor18Entry 4018 }
|
|
|
|
confSensor19Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor19Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor19"
|
|
::= { confSensor19 1 }
|
|
|
|
confSensor19Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor19Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor19"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor19Table 1 }
|
|
|
|
ConfSensor19Entry ::= SEQUENCE {
|
|
sensor19ConfigActive Unsigned32,
|
|
sensor19DefectCommonAlarmConfig Unsigned32,
|
|
sensor19LimitCommonAlarmConfig Unsigned32,
|
|
sensor19Purpose Unsigned32,
|
|
sensor19Type Unsigned32,
|
|
sensor19AnalogInput Unsigned32,
|
|
sensor19MinValue Integer32,
|
|
sensor19MaxValue Integer32,
|
|
sensor19MinPhysValue Integer32,
|
|
sensor19MaxPhysValue Integer32,
|
|
sensor19Tolerance Unsigned32,
|
|
sensor19AlarmPriorities Unsigned32,
|
|
sensor19FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor19ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 config. active"
|
|
::= { confSensor19Entry 4100 }
|
|
|
|
sensor19DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 defect common alarm config"
|
|
::= { confSensor19Entry 4103 }
|
|
|
|
sensor19LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 limit common alarm config"
|
|
::= { confSensor19Entry 4104 }
|
|
|
|
sensor19Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 purpose"
|
|
::= { confSensor19Entry 4108 }
|
|
|
|
sensor19Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 type"
|
|
::= { confSensor19Entry 4109 }
|
|
|
|
sensor19AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 analog input"
|
|
::= { confSensor19Entry 4110 }
|
|
|
|
sensor19MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 min value"
|
|
::= { confSensor19Entry 4111 }
|
|
|
|
sensor19MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 max value"
|
|
::= { confSensor19Entry 4112 }
|
|
|
|
sensor19MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 min phys. value"
|
|
::= { confSensor19Entry 4113 }
|
|
|
|
sensor19MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 max phys. value"
|
|
::= { confSensor19Entry 4114 }
|
|
|
|
sensor19Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 tolerance"
|
|
::= { confSensor19Entry 4115 }
|
|
|
|
sensor19AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 alarm priorities"
|
|
::= { confSensor19Entry 4116 }
|
|
|
|
sensor19FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 failure alarm priorities"
|
|
::= { confSensor19Entry 4118 }
|
|
|
|
confSensor20Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor20Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor20"
|
|
::= { confSensor20 1 }
|
|
|
|
confSensor20Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor20Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor20"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor20Table 1 }
|
|
|
|
ConfSensor20Entry ::= SEQUENCE {
|
|
sensor20ConfigActive Unsigned32,
|
|
sensor20DefectCommonAlarmConfig Unsigned32,
|
|
sensor20LimitCommonAlarmConfig Unsigned32,
|
|
sensor20Purpose Unsigned32,
|
|
sensor20Type Unsigned32,
|
|
sensor20AnalogInput Unsigned32,
|
|
sensor20MinValue Integer32,
|
|
sensor20MaxValue Integer32,
|
|
sensor20MinPhysValue Integer32,
|
|
sensor20MaxPhysValue Integer32,
|
|
sensor20Tolerance Unsigned32,
|
|
sensor20AlarmPriorities Unsigned32,
|
|
sensor20FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor20ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 config. active"
|
|
::= { confSensor20Entry 4200 }
|
|
|
|
sensor20DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 defect common alarm config"
|
|
::= { confSensor20Entry 4203 }
|
|
|
|
sensor20LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 limit common alarm config"
|
|
::= { confSensor20Entry 4204 }
|
|
|
|
sensor20Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 purpose"
|
|
::= { confSensor20Entry 4208 }
|
|
|
|
sensor20Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 type"
|
|
::= { confSensor20Entry 4209 }
|
|
|
|
sensor20AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 analog input"
|
|
::= { confSensor20Entry 4210 }
|
|
|
|
sensor20MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 min value"
|
|
::= { confSensor20Entry 4211 }
|
|
|
|
sensor20MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 max value"
|
|
::= { confSensor20Entry 4212 }
|
|
|
|
sensor20MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 min phys. value"
|
|
::= { confSensor20Entry 4213 }
|
|
|
|
sensor20MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 max phys. value"
|
|
::= { confSensor20Entry 4214 }
|
|
|
|
sensor20Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 tolerance"
|
|
::= { confSensor20Entry 4215 }
|
|
|
|
sensor20AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 alarm priorities"
|
|
::= { confSensor20Entry 4216 }
|
|
|
|
sensor20FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 failure alarm priorities"
|
|
::= { confSensor20Entry 4218 }
|
|
|
|
confSensor21Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfSensor21Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confSensor21"
|
|
::= { confSensor21 1 }
|
|
|
|
confSensor21Entry OBJECT-TYPE
|
|
SYNTAX ConfSensor21Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confSensor21"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confSensor21Table 1 }
|
|
|
|
ConfSensor21Entry ::= SEQUENCE {
|
|
sensor21ConfigActive Unsigned32,
|
|
sensor21DefectCommonAlarmConfig Unsigned32,
|
|
sensor21LimitCommonAlarmConfig Unsigned32,
|
|
sensor21Purpose Unsigned32,
|
|
sensor21Type Unsigned32,
|
|
sensor21AnalogInput Unsigned32,
|
|
sensor21MinValue Integer32,
|
|
sensor21MaxValue Integer32,
|
|
sensor21MinPhysValue Integer32,
|
|
sensor21MaxPhysValue Integer32,
|
|
sensor21Tolerance Unsigned32,
|
|
sensor21AlarmPriorities Unsigned32,
|
|
sensor21FailureAlarmPriorities Unsigned32
|
|
}
|
|
|
|
sensor21ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 config. active"
|
|
::= { confSensor21Entry 4300 }
|
|
|
|
sensor21DefectCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 defect common alarm config"
|
|
::= { confSensor21Entry 4303 }
|
|
|
|
sensor21LimitCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 limit common alarm config"
|
|
::= { confSensor21Entry 4304 }
|
|
|
|
sensor21Purpose OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 purpose"
|
|
::= { confSensor21Entry 4308 }
|
|
|
|
sensor21Type OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..5)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 type"
|
|
::= { confSensor21Entry 4309 }
|
|
|
|
sensor21AnalogInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..21)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 analog input"
|
|
::= { confSensor21Entry 4310 }
|
|
|
|
sensor21MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 min value"
|
|
::= { confSensor21Entry 4311 }
|
|
|
|
sensor21MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 max value"
|
|
::= { confSensor21Entry 4312 }
|
|
|
|
sensor21MinPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 min phys. value"
|
|
::= { confSensor21Entry 4313 }
|
|
|
|
sensor21MaxPhysValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 max phys. value"
|
|
::= { confSensor21Entry 4314 }
|
|
|
|
sensor21Tolerance OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 tolerance"
|
|
::= { confSensor21Entry 4315 }
|
|
|
|
sensor21AlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 alarm priorities"
|
|
::= { confSensor21Entry 4316 }
|
|
|
|
sensor21FailureAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 failure alarm priorities"
|
|
::= { confSensor21Entry 4318 }
|
|
|
|
confExtAlarms1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfExtAlarms1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confExtAlarms1"
|
|
::= { confExtAlarms1 1 }
|
|
|
|
confExtAlarms1Entry OBJECT-TYPE
|
|
SYNTAX ConfExtAlarms1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confExtAlarms1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confExtAlarms1Table 1 }
|
|
|
|
ConfExtAlarms1Entry ::= SEQUENCE {
|
|
extAlarmConfigActive1 Unsigned32,
|
|
extAlarm1CommonAlarmConfig Unsigned32,
|
|
extAlarm1DigitalIn Unsigned32,
|
|
extAlarm1Priorities Unsigned32
|
|
}
|
|
|
|
extAlarmConfigActive1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm config active 1"
|
|
::= { confExtAlarms1Entry 7500 }
|
|
|
|
extAlarm1CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. Alarm 1 common alarm config"
|
|
::= { confExtAlarms1Entry 7504 }
|
|
|
|
extAlarm1DigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm1 digital in"
|
|
::= { confExtAlarms1Entry 7508 }
|
|
|
|
extAlarm1Priorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm1 priorities"
|
|
::= { confExtAlarms1Entry 7509 }
|
|
|
|
confExtAlarms2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfExtAlarms2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confExtAlarms2"
|
|
::= { confExtAlarms2 1 }
|
|
|
|
confExtAlarms2Entry OBJECT-TYPE
|
|
SYNTAX ConfExtAlarms2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confExtAlarms2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confExtAlarms2Table 1 }
|
|
|
|
ConfExtAlarms2Entry ::= SEQUENCE {
|
|
extAlarmConfigActive2 Unsigned32,
|
|
extAlarm2CommonAlarmConfig Unsigned32,
|
|
extAlarm2DigitalIn Unsigned32,
|
|
extAlarm2Priorities Unsigned32
|
|
}
|
|
|
|
extAlarmConfigActive2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm config active 2"
|
|
::= { confExtAlarms2Entry 7600 }
|
|
|
|
extAlarm2CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm 2 common alarm config"
|
|
::= { confExtAlarms2Entry 7604 }
|
|
|
|
extAlarm2DigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm2 digital in"
|
|
::= { confExtAlarms2Entry 7608 }
|
|
|
|
extAlarm2Priorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm2 priorities"
|
|
::= { confExtAlarms2Entry 7609 }
|
|
|
|
confExtAlarms3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfExtAlarms3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confExtAlarms3"
|
|
::= { confExtAlarms3 1 }
|
|
|
|
confExtAlarms3Entry OBJECT-TYPE
|
|
SYNTAX ConfExtAlarms3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confExtAlarms3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confExtAlarms3Table 1 }
|
|
|
|
ConfExtAlarms3Entry ::= SEQUENCE {
|
|
extAlarmConfigActive3 Unsigned32,
|
|
extAlarm3CommonAlarmConfig Unsigned32,
|
|
extAlarm3DigitalIn Unsigned32,
|
|
extAlarm3Priorities Unsigned32
|
|
}
|
|
|
|
extAlarmConfigActive3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm config active 3"
|
|
::= { confExtAlarms3Entry 7700 }
|
|
|
|
extAlarm3CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm 3 common alarm config"
|
|
::= { confExtAlarms3Entry 7704 }
|
|
|
|
extAlarm3DigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm3 digital in"
|
|
::= { confExtAlarms3Entry 7708 }
|
|
|
|
extAlarm3Priorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm3 priorities"
|
|
::= { confExtAlarms3Entry 7709 }
|
|
|
|
confExtAlarms4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfExtAlarms4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confExtAlarms4"
|
|
::= { confExtAlarms4 1 }
|
|
|
|
confExtAlarms4Entry OBJECT-TYPE
|
|
SYNTAX ConfExtAlarms4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confExtAlarms4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confExtAlarms4Table 1 }
|
|
|
|
ConfExtAlarms4Entry ::= SEQUENCE {
|
|
extAlarmConfigActive4 Unsigned32,
|
|
extAlarm4CommonAlarmConfig Unsigned32,
|
|
extAlarm4DigitalIn Unsigned32,
|
|
extAlarm4Priorities Unsigned32
|
|
}
|
|
|
|
extAlarmConfigActive4 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm config active 4"
|
|
::= { confExtAlarms4Entry 7800 }
|
|
|
|
extAlarm4CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm 4 common alarm config"
|
|
::= { confExtAlarms4Entry 7804 }
|
|
|
|
extAlarm4DigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm4 digital in"
|
|
::= { confExtAlarms4Entry 7808 }
|
|
|
|
extAlarm4Priorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm4 priorities"
|
|
::= { confExtAlarms4Entry 7809 }
|
|
|
|
confExtAlarms5Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfExtAlarms5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confExtAlarms5"
|
|
::= { confExtAlarms5 1 }
|
|
|
|
confExtAlarms5Entry OBJECT-TYPE
|
|
SYNTAX ConfExtAlarms5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confExtAlarms5"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confExtAlarms5Table 1 }
|
|
|
|
ConfExtAlarms5Entry ::= SEQUENCE {
|
|
extAlarmConfigActive5 Unsigned32,
|
|
extAlarm5CommonAlarmConfig Unsigned32,
|
|
extAlarm5DigitalIn Unsigned32,
|
|
extAlarm5Priorities Unsigned32
|
|
}
|
|
|
|
extAlarmConfigActive5 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm config active 5"
|
|
::= { confExtAlarms5Entry 7900 }
|
|
|
|
extAlarm5CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm 5 common alarm config"
|
|
::= { confExtAlarms5Entry 7904 }
|
|
|
|
extAlarm5DigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm5 digital in"
|
|
::= { confExtAlarms5Entry 7908 }
|
|
|
|
extAlarm5Priorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm5 priorities"
|
|
::= { confExtAlarms5Entry 7909 }
|
|
|
|
confExtAlarms6Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfExtAlarms6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confExtAlarms6"
|
|
::= { confExtAlarms6 1 }
|
|
|
|
confExtAlarms6Entry OBJECT-TYPE
|
|
SYNTAX ConfExtAlarms6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confExtAlarms6"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confExtAlarms6Table 1 }
|
|
|
|
ConfExtAlarms6Entry ::= SEQUENCE {
|
|
extAlarmConfigActive6 Unsigned32,
|
|
extAlarm6CommonAlarmConfig Unsigned32,
|
|
extAlarm6DigitalIn Unsigned32,
|
|
extAlarm6Priorities Unsigned32
|
|
}
|
|
|
|
extAlarmConfigActive6 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm config active 6"
|
|
::= { confExtAlarms6Entry 8000 }
|
|
|
|
extAlarm6CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm 6 common alarm config"
|
|
::= { confExtAlarms6Entry 8004 }
|
|
|
|
extAlarm6DigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm6 digital in"
|
|
::= { confExtAlarms6Entry 8008 }
|
|
|
|
extAlarm6Priorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm6 priorities"
|
|
::= { confExtAlarms6Entry 8009 }
|
|
|
|
confExtAlarms7Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfExtAlarms7Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confExtAlarms7"
|
|
::= { confExtAlarms7 1 }
|
|
|
|
confExtAlarms7Entry OBJECT-TYPE
|
|
SYNTAX ConfExtAlarms7Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confExtAlarms7"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confExtAlarms7Table 1 }
|
|
|
|
ConfExtAlarms7Entry ::= SEQUENCE {
|
|
extAlarmConfigActive7 Unsigned32,
|
|
extAlarm7CommonAlarmConfig Unsigned32,
|
|
extAlarm7DigitalIn Unsigned32,
|
|
extAlarm7Priorities Unsigned32
|
|
}
|
|
|
|
extAlarmConfigActive7 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm config active 7"
|
|
::= { confExtAlarms7Entry 8100 }
|
|
|
|
extAlarm7CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm 7 common alarm config"
|
|
::= { confExtAlarms7Entry 8104 }
|
|
|
|
extAlarm7DigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm7 digital in"
|
|
::= { confExtAlarms7Entry 8108 }
|
|
|
|
extAlarm7Priorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm7 priorities"
|
|
::= { confExtAlarms7Entry 8109 }
|
|
|
|
confExtAlarms8Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfExtAlarms8Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confExtAlarms8"
|
|
::= { confExtAlarms8 1 }
|
|
|
|
confExtAlarms8Entry OBJECT-TYPE
|
|
SYNTAX ConfExtAlarms8Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confExtAlarms8"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confExtAlarms8Table 1 }
|
|
|
|
ConfExtAlarms8Entry ::= SEQUENCE {
|
|
extAlarmConfigActive8 Unsigned32,
|
|
extAlarm8CommonAlarmConfig Unsigned32,
|
|
extAlarm8DigitalIn Unsigned32,
|
|
extAlarm8Priorities Unsigned32
|
|
}
|
|
|
|
extAlarmConfigActive8 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm config active 8"
|
|
::= { confExtAlarms8Entry 8200 }
|
|
|
|
extAlarm8CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm 8 common alarm config"
|
|
::= { confExtAlarms8Entry 8204 }
|
|
|
|
extAlarm8DigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm8 digital in"
|
|
::= { confExtAlarms8Entry 8208 }
|
|
|
|
extAlarm8Priorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm8 priorities"
|
|
::= { confExtAlarms8Entry 8209 }
|
|
|
|
confExtAlarms9Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfExtAlarms9Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confExtAlarms9"
|
|
::= { confExtAlarms9 1 }
|
|
|
|
confExtAlarms9Entry OBJECT-TYPE
|
|
SYNTAX ConfExtAlarms9Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confExtAlarms9"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confExtAlarms9Table 1 }
|
|
|
|
ConfExtAlarms9Entry ::= SEQUENCE {
|
|
extAlarmConfigActive9 Unsigned32,
|
|
extAlarm9CommonAlarmConfig Unsigned32,
|
|
extAlarm9DigitalIn Unsigned32,
|
|
extAlarm9Priorities Unsigned32
|
|
}
|
|
|
|
extAlarmConfigActive9 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm config active 9"
|
|
::= { confExtAlarms9Entry 8300 }
|
|
|
|
extAlarm9CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm 9 common alarm config"
|
|
::= { confExtAlarms9Entry 8304 }
|
|
|
|
extAlarm9DigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm9 digital in"
|
|
::= { confExtAlarms9Entry 8308 }
|
|
|
|
extAlarm9Priorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm9 priorities"
|
|
::= { confExtAlarms9Entry 8309 }
|
|
|
|
confExtAlarms10Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfExtAlarms10Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confExtAlarms10"
|
|
::= { confExtAlarms10 1 }
|
|
|
|
confExtAlarms10Entry OBJECT-TYPE
|
|
SYNTAX ConfExtAlarms10Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confExtAlarms10"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confExtAlarms10Table 1 }
|
|
|
|
ConfExtAlarms10Entry ::= SEQUENCE {
|
|
extAlarmConfigActive10 Unsigned32,
|
|
extAlarm10CommonAlarmConfig Unsigned32,
|
|
extAlarm10DigitalIn Unsigned32,
|
|
extAlarm10Priorities Unsigned32
|
|
}
|
|
|
|
extAlarmConfigActive10 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm config active 10"
|
|
::= { confExtAlarms10Entry 8400 }
|
|
|
|
extAlarm10CommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm 10 common alarm config"
|
|
::= { confExtAlarms10Entry 8404 }
|
|
|
|
extAlarm10DigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm10 digital in"
|
|
::= { confExtAlarms10Entry 8408 }
|
|
|
|
extAlarm10Priorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm10 priorities"
|
|
::= { confExtAlarms10Entry 8409 }
|
|
|
|
confUnitalarmsTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfUnitalarmsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confUnitalarms"
|
|
::= { confUnitalarms 1 }
|
|
|
|
confUnitalarmsEntry OBJECT-TYPE
|
|
SYNTAX ConfUnitalarmsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confUnitalarms"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confUnitalarmsTable 1 }
|
|
|
|
ConfUnitalarmsEntry ::= SEQUENCE {
|
|
busalarmcommon Unsigned32,
|
|
busadrconflictcommon Unsigned32,
|
|
busalarmprio Unsigned32,
|
|
busadrconflictprio Unsigned32,
|
|
fireAlarmDIN Unsigned32,
|
|
waterAlarmDIN Unsigned32,
|
|
waterflowAlarmDIN Unsigned32,
|
|
phaseAlarmDIN Unsigned32,
|
|
temperatureAOUT Unsigned32,
|
|
humidityAOUT Unsigned32,
|
|
fireAlarmPriorities Unsigned32,
|
|
waterAlarmPriorities Unsigned32,
|
|
phaseAlarmPriorities Unsigned32,
|
|
waterflowAlarmPriority Unsigned32,
|
|
fireAlarmCommonAlarmConfig Unsigned32,
|
|
waterAlarmCommonAlarmConfig Unsigned32,
|
|
phaseAlarmCommonAlarmConfig Unsigned32,
|
|
waterflowAlarmCommonAlarmConfig Unsigned32,
|
|
commonAlarmConfioomHighPressure Unsigned32,
|
|
forceSummerModeEernallyDigitalIn Unsigned32,
|
|
roomHighPressurearmDigitalInput Unsigned32,
|
|
roomHighPressurearmDigitalOutput Unsigned32
|
|
}
|
|
|
|
busalarmcommon OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"busalarmcommon"
|
|
::= { confUnitalarmsEntry 11 }
|
|
|
|
busadrconflictcommon OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"busadrconflictcommon"
|
|
::= { confUnitalarmsEntry 13 }
|
|
|
|
busalarmprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"busalarmprio"
|
|
::= { confUnitalarmsEntry 16 }
|
|
|
|
busadrconflictprio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"busadrconflictprio"
|
|
::= { confUnitalarmsEntry 18 }
|
|
|
|
fireAlarmDIN OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fire alarm DIN"
|
|
::= { confUnitalarmsEntry 1704 }
|
|
|
|
waterAlarmDIN OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water alarm DIN"
|
|
::= { confUnitalarmsEntry 1705 }
|
|
|
|
waterflowAlarmDIN OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"waterflow alarm DIN"
|
|
::= { confUnitalarmsEntry 1706 }
|
|
|
|
phaseAlarmDIN OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"phase alarm DIN"
|
|
::= { confUnitalarmsEntry 1707 }
|
|
|
|
temperatureAOUT OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"temperature AOUT"
|
|
::= { confUnitalarmsEntry 1709 }
|
|
|
|
humidityAOUT OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidity AOUT"
|
|
::= { confUnitalarmsEntry 1710 }
|
|
|
|
fireAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fire alarm priorities"
|
|
::= { confUnitalarmsEntry 1711 }
|
|
|
|
waterAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water alarm priorities"
|
|
::= { confUnitalarmsEntry 1713 }
|
|
|
|
phaseAlarmPriorities OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"phase alarm priorities"
|
|
::= { confUnitalarmsEntry 1715 }
|
|
|
|
waterflowAlarmPriority OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"waterflow alarm priority"
|
|
::= { confUnitalarmsEntry 1719 }
|
|
|
|
fireAlarmCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fire alarm common alarm config"
|
|
::= { confUnitalarmsEntry 1742 }
|
|
|
|
waterAlarmCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water alarm common alarm config"
|
|
::= { confUnitalarmsEntry 1743 }
|
|
|
|
phaseAlarmCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"phase alarm common alarm config"
|
|
::= { confUnitalarmsEntry 1744 }
|
|
|
|
waterflowAlarmCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"waterflow alarm common alarm config"
|
|
::= { confUnitalarmsEntry 1747 }
|
|
|
|
commonAlarmConfioomHighPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"common alarm configured with room high pressure"
|
|
::= { confUnitalarmsEntry 10302 }
|
|
|
|
forceSummerModeEernallyDigitalIn OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..43)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"force summer mode externally digital in"
|
|
::= { confUnitalarmsEntry 10310 }
|
|
|
|
roomHighPressurearmDigitalInput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..43)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"room high pressure alarm digital input"
|
|
::= { confUnitalarmsEntry 10311 }
|
|
|
|
roomHighPressurearmDigitalOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"room high pressure alarm digital output"
|
|
::= { confUnitalarmsEntry 10312 }
|
|
|
|
confDigitalPortsTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfDigitalPortsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confDigitalPorts"
|
|
::= { confDigitalPorts 1 }
|
|
|
|
confDigitalPortsEntry OBJECT-TYPE
|
|
SYNTAX ConfDigitalPortsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confDigitalPorts"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confDigitalPortsTable 1 }
|
|
|
|
ConfDigitalPortsEntry ::= SEQUENCE {
|
|
commonAlarmDOUT Unsigned32,
|
|
winterModeFCPossibleDOUT Unsigned32,
|
|
remoteOnOffDIN Unsigned32,
|
|
upsDIN Unsigned32,
|
|
cWDisableDXEnableDIN Unsigned32,
|
|
unitOnOffDOUT Unsigned32,
|
|
unitFreecoolingDolerReleaseDout Unsigned32,
|
|
fanRunningDOUT Unsigned32,
|
|
pCStopDigitalOut Unsigned32
|
|
}
|
|
|
|
commonAlarmDOUT OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"common alarm DOUT"
|
|
::= { confDigitalPortsEntry 1700 }
|
|
|
|
winterModeFCPossibleDOUT OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"winter mode (FC possible) DOUT"
|
|
::= { confDigitalPortsEntry 1701 }
|
|
|
|
remoteOnOffDIN OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"remote on/off DIN"
|
|
::= { confDigitalPortsEntry 1702 }
|
|
|
|
upsDIN OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ups DIN"
|
|
::= { confDigitalPortsEntry 1703 }
|
|
|
|
cWDisableDXEnableDIN OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..42)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"CW-disable/DX-enable DIN"
|
|
::= { confDigitalPortsEntry 1708 }
|
|
|
|
unitOnOffDOUT OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit on/off DOUT"
|
|
::= { confDigitalPortsEntry 1725 }
|
|
|
|
unitFreecoolingDolerReleaseDout OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit freecooling drycooler release dout"
|
|
::= { confDigitalPortsEntry 1726 }
|
|
|
|
fanRunningDOUT OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan running DOUT"
|
|
::= { confDigitalPortsEntry 1727 }
|
|
|
|
pCStopDigitalOut OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PC-Stop digital out"
|
|
::= { confDigitalPortsEntry 1728 }
|
|
|
|
confValueOutput1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfValueOutput1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confValueOutput1"
|
|
::= { confValueOutput1 1 }
|
|
|
|
confValueOutput1Entry OBJECT-TYPE
|
|
SYNTAX ConfValueOutput1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confValueOutput1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confValueOutput1Table 1 }
|
|
|
|
ConfValueOutput1Entry ::= SEQUENCE {
|
|
valout1ConfigActive Unsigned32,
|
|
valout1PurposeUse Unsigned32,
|
|
valout1AnalogOutput Unsigned32,
|
|
valout1MinValue Integer32,
|
|
valout1MaxValue Integer32
|
|
}
|
|
|
|
valout1ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout1 config. Active"
|
|
::= { confValueOutput1Entry 8900 }
|
|
|
|
valout1PurposeUse OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout1 purpose/use"
|
|
::= { confValueOutput1Entry 8908 }
|
|
|
|
valout1AnalogOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout1 analog output"
|
|
::= { confValueOutput1Entry 8910 }
|
|
|
|
valout1MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout1 min value"
|
|
::= { confValueOutput1Entry 8911 }
|
|
|
|
valout1MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout1 max value"
|
|
::= { confValueOutput1Entry 8912 }
|
|
|
|
confValueOutput2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfValueOutput2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confValueOutput2"
|
|
::= { confValueOutput2 1 }
|
|
|
|
confValueOutput2Entry OBJECT-TYPE
|
|
SYNTAX ConfValueOutput2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confValueOutput2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confValueOutput2Table 1 }
|
|
|
|
ConfValueOutput2Entry ::= SEQUENCE {
|
|
valout2ConfigActive Unsigned32,
|
|
valout2PurposeUse Unsigned32,
|
|
valout2AnalogOutput Unsigned32,
|
|
valout2MinValue Integer32,
|
|
valout2MaxValue Integer32
|
|
}
|
|
|
|
valout2ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout2 config. Active"
|
|
::= { confValueOutput2Entry 9000 }
|
|
|
|
valout2PurposeUse OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout2 purpose/use"
|
|
::= { confValueOutput2Entry 9008 }
|
|
|
|
valout2AnalogOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout2 analog output"
|
|
::= { confValueOutput2Entry 9010 }
|
|
|
|
valout2MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout2 min value"
|
|
::= { confValueOutput2Entry 9011 }
|
|
|
|
valout2MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout2 max value"
|
|
::= { confValueOutput2Entry 9012 }
|
|
|
|
confValueOutput3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfValueOutput3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confValueOutput3"
|
|
::= { confValueOutput3 1 }
|
|
|
|
confValueOutput3Entry OBJECT-TYPE
|
|
SYNTAX ConfValueOutput3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confValueOutput3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confValueOutput3Table 1 }
|
|
|
|
ConfValueOutput3Entry ::= SEQUENCE {
|
|
valout3ConfigActive Unsigned32,
|
|
valout3PurposeUse Unsigned32,
|
|
valout3AnalogOutput Unsigned32,
|
|
valout3MinValue Integer32,
|
|
valout3MaxValue Integer32
|
|
}
|
|
|
|
valout3ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout3 config. Active"
|
|
::= { confValueOutput3Entry 9100 }
|
|
|
|
valout3PurposeUse OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout3 purpose/use"
|
|
::= { confValueOutput3Entry 9108 }
|
|
|
|
valout3AnalogOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout3 analog output"
|
|
::= { confValueOutput3Entry 9110 }
|
|
|
|
valout3MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout3 min value"
|
|
::= { confValueOutput3Entry 9111 }
|
|
|
|
valout3MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout3 max value"
|
|
::= { confValueOutput3Entry 9112 }
|
|
|
|
confValueOutput4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfValueOutput4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confValueOutput4"
|
|
::= { confValueOutput4 1 }
|
|
|
|
confValueOutput4Entry OBJECT-TYPE
|
|
SYNTAX ConfValueOutput4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confValueOutput4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confValueOutput4Table 1 }
|
|
|
|
ConfValueOutput4Entry ::= SEQUENCE {
|
|
valout4ConfigActive Unsigned32,
|
|
valout4PurposeUse Unsigned32,
|
|
valout4AnalogOutput Unsigned32,
|
|
valout4MinValue Integer32,
|
|
valout4MaxValue Integer32
|
|
}
|
|
|
|
valout4ConfigActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout4 config. Active"
|
|
::= { confValueOutput4Entry 9200 }
|
|
|
|
valout4PurposeUse OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..59)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout4 purpose/use"
|
|
::= { confValueOutput4Entry 9208 }
|
|
|
|
valout4AnalogOutput OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..20)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout4 analog output"
|
|
::= { confValueOutput4Entry 9210 }
|
|
|
|
valout4MinValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout4 min value"
|
|
::= { confValueOutput4Entry 9211 }
|
|
|
|
valout4MaxValue OBJECT-TYPE
|
|
SYNTAX Integer32 (0..200)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"valout4 max value"
|
|
::= { confValueOutput4Entry 9212 }
|
|
|
|
confUPSOperationTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfUPSOperationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confUPSOperation"
|
|
::= { confUPSOperation 1 }
|
|
|
|
confUPSOperationEntry OBJECT-TYPE
|
|
SYNTAX ConfUPSOperationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confUPSOperation"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confUPSOperationTable 1 }
|
|
|
|
ConfUPSOperationEntry ::= SEQUENCE {
|
|
upsActionFan Unsigned32,
|
|
upsActionCooling Unsigned32,
|
|
upsActionHeating Unsigned32,
|
|
upsActionHumidification Unsigned32,
|
|
upsActionDehumidification Unsigned32
|
|
}
|
|
|
|
upsActionFan OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ups action fan"
|
|
::= { confUPSOperationEntry 1749 }
|
|
|
|
upsActionCooling OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ups action cooling"
|
|
::= { confUPSOperationEntry 1750 }
|
|
|
|
upsActionHeating OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ups action heating"
|
|
::= { confUPSOperationEntry 1751 }
|
|
|
|
upsActionHumidification OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ups action humidification"
|
|
::= { confUPSOperationEntry 1752 }
|
|
|
|
upsActionDehumidification OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ups action dehumidification"
|
|
::= { confUPSOperationEntry 1753 }
|
|
|
|
confManCompressorsTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManCompressorsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManCompressors"
|
|
::= { confManCompressors 1 }
|
|
|
|
confManCompressorsEntry OBJECT-TYPE
|
|
SYNTAX ConfManCompressorsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManCompressors"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManCompressorsTable 1 }
|
|
|
|
ConfManCompressorsEntry ::= SEQUENCE {
|
|
compr1ManualOperationActive Unsigned32,
|
|
compr1ManualOperationState Unsigned32,
|
|
compr1EconomizerActive Unsigned32,
|
|
compr2ManualOperationActive Unsigned32,
|
|
compr2ManualOperationState Unsigned32,
|
|
compr2EconomizerActive Unsigned32,
|
|
compr3ManualOperationActive Unsigned32,
|
|
compr3ManualOperationState Unsigned32,
|
|
compr3EconomizerActive Unsigned32,
|
|
compr4ManualOperationActive Unsigned32,
|
|
compr4ManualOperationState Unsigned32,
|
|
compr4EconomizerActive Unsigned32,
|
|
compr5ManualOperationActive Unsigned32,
|
|
compr5ManualOperationState Unsigned32,
|
|
compr5EconomizerActive Unsigned32,
|
|
compr6ManualOperationActive Unsigned32,
|
|
compr6ManualOperationState Unsigned32,
|
|
compr6EconomizerActive Unsigned32
|
|
}
|
|
|
|
compr1ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 manual operation active"
|
|
::= { confManCompressorsEntry 4401 }
|
|
|
|
compr1ManualOperationState OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr.1 manual operation state"
|
|
::= { confManCompressorsEntry 4402 }
|
|
|
|
compr1EconomizerActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 1 economizer active"
|
|
::= { confManCompressorsEntry 4406 }
|
|
|
|
compr2ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 manual operation active"
|
|
::= { confManCompressorsEntry 4501 }
|
|
|
|
compr2ManualOperationState OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 manual operation state"
|
|
::= { confManCompressorsEntry 4502 }
|
|
|
|
compr2EconomizerActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 economizer active"
|
|
::= { confManCompressorsEntry 4506 }
|
|
|
|
compr3ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 3 manual operation active"
|
|
::= { confManCompressorsEntry 9501 }
|
|
|
|
compr3ManualOperationState OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 3 manual operation state"
|
|
::= { confManCompressorsEntry 9502 }
|
|
|
|
compr3EconomizerActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 3 economizer active"
|
|
::= { confManCompressorsEntry 9506 }
|
|
|
|
compr4ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 4 manual operation active"
|
|
::= { confManCompressorsEntry 9601 }
|
|
|
|
compr4ManualOperationState OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 4 manual operation state"
|
|
::= { confManCompressorsEntry 9602 }
|
|
|
|
compr4EconomizerActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 4 economizer active"
|
|
::= { confManCompressorsEntry 9606 }
|
|
|
|
compr5ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 5 manual operation active"
|
|
::= { confManCompressorsEntry 9701 }
|
|
|
|
compr5ManualOperationState OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 5 manual operation state"
|
|
::= { confManCompressorsEntry 9702 }
|
|
|
|
compr5EconomizerActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 5 economizer active"
|
|
::= { confManCompressorsEntry 9706 }
|
|
|
|
compr6ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 6 manual operation active"
|
|
::= { confManCompressorsEntry 9801 }
|
|
|
|
compr6ManualOperationState OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 6 manual operation state"
|
|
::= { confManCompressorsEntry 9802 }
|
|
|
|
compr6EconomizerActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 6 economizer active"
|
|
::= { confManCompressorsEntry 9806 }
|
|
|
|
confManSuctionValveTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSuctionValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSuctionValve"
|
|
::= { confManSuctionValve 1 }
|
|
|
|
confManSuctionValveEntry OBJECT-TYPE
|
|
SYNTAX ConfManSuctionValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSuctionValve"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSuctionValveTable 1 }
|
|
|
|
ConfManSuctionValveEntry ::= SEQUENCE {
|
|
suctionvalve1ManlOperationActive Unsigned32,
|
|
suctionvalve1ManlOperationValue Unsigned32,
|
|
suctionvalve1MinOpeningGrade Unsigned32
|
|
}
|
|
|
|
suctionvalve1ManlOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve1 manual operation active"
|
|
::= { confManSuctionValveEntry 4601 }
|
|
|
|
suctionvalve1ManlOperationValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve1 manual operation value"
|
|
::= { confManSuctionValveEntry 4612 }
|
|
|
|
suctionvalve1MinOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve1 min opening grade"
|
|
::= { confManSuctionValveEntry 4613 }
|
|
|
|
confManSuctionValve2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSuctionValve2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSuctionValve2"
|
|
::= { confManSuctionValve2 1 }
|
|
|
|
confManSuctionValve2Entry OBJECT-TYPE
|
|
SYNTAX ConfManSuctionValve2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSuctionValve2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSuctionValve2Table 1 }
|
|
|
|
ConfManSuctionValve2Entry ::= SEQUENCE {
|
|
suctionvalve2ManlOperationActive Unsigned32,
|
|
suctionvalve2ManlOperationValue Unsigned32,
|
|
suctionvalve2MinOpeningGrade Unsigned32
|
|
}
|
|
|
|
suctionvalve2ManlOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve2 manual operation active"
|
|
::= { confManSuctionValve2Entry 4701 }
|
|
|
|
suctionvalve2ManlOperationValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve2 manual operation value"
|
|
::= { confManSuctionValve2Entry 4712 }
|
|
|
|
suctionvalve2MinOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"suctionvalve2 min opening grade"
|
|
::= { confManSuctionValve2Entry 4713 }
|
|
|
|
confManGECWValveTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManGECWValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManGECWValve"
|
|
::= { confManGECWValve 1 }
|
|
|
|
confManGECWValveEntry OBJECT-TYPE
|
|
SYNTAX ConfManGECWValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManGECWValve"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManGECWValveTable 1 }
|
|
|
|
ConfManGECWValveEntry ::= SEQUENCE {
|
|
gECWValveManualOperationActive Unsigned32,
|
|
gECWValveManOperionOpeningGrade Unsigned32
|
|
}
|
|
|
|
gECWValveManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve manual operation active"
|
|
::= { confManGECWValveEntry 5201 }
|
|
|
|
gECWValveManOperionOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE/CW-valve man. operation opening grade"
|
|
::= { confManGECWValveEntry 5215 }
|
|
|
|
confManGValveTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManGValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManGValve"
|
|
::= { confManGValve 1 }
|
|
|
|
confManGValveEntry OBJECT-TYPE
|
|
SYNTAX ConfManGValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManGValve"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManGValveTable 1 }
|
|
|
|
ConfManGValveEntry ::= SEQUENCE {
|
|
gValve1ManualOperationActive Unsigned32,
|
|
gValve1ManualOpetionOpeningGrade Unsigned32,
|
|
gValve2ManualOperationActive Unsigned32,
|
|
gValve2ManualOpetionOpeningGrade Unsigned32
|
|
}
|
|
|
|
gValve1ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 manual operation active"
|
|
::= { confManGValveEntry 5301 }
|
|
|
|
gValve1ManualOpetionOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 1 manual operation opening grade"
|
|
::= { confManGValveEntry 5313 }
|
|
|
|
gValve2ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 manual operation active"
|
|
::= { confManGValveEntry 5351 }
|
|
|
|
gValve2ManualOpetionOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"G-valve 2 manual operation opening grade"
|
|
::= { confManGValveEntry 5363 }
|
|
|
|
confManHGBP1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManHGBP1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManHGBP1"
|
|
::= { confManHGBP1 1 }
|
|
|
|
confManHGBP1Entry OBJECT-TYPE
|
|
SYNTAX ConfManHGBP1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManHGBP1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManHGBP1Table 1 }
|
|
|
|
ConfManHGBP1Entry ::= SEQUENCE {
|
|
hgbp1ManualOperationActive Unsigned32,
|
|
hgbp1ManOperationOpeningGrade Unsigned32
|
|
}
|
|
|
|
hgbp1ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp1 manual operation active"
|
|
::= { confManHGBP1Entry 9301 }
|
|
|
|
hgbp1ManOperationOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp1 man. operation opening grade"
|
|
::= { confManHGBP1Entry 9317 }
|
|
|
|
confManHGBP2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManHGBP2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManHGBP2"
|
|
::= { confManHGBP2 1 }
|
|
|
|
confManHGBP2Entry OBJECT-TYPE
|
|
SYNTAX ConfManHGBP2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManHGBP2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManHGBP2Table 1 }
|
|
|
|
ConfManHGBP2Entry ::= SEQUENCE {
|
|
hgbp2ManualOperationActive Unsigned32,
|
|
hgbp2ManOperationOpeningGrade Unsigned32
|
|
}
|
|
|
|
hgbp2ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp2 manual operation active"
|
|
::= { confManHGBP2Entry 9401 }
|
|
|
|
hgbp2ManOperationOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hgbp2 man. operation opening grade"
|
|
::= { confManHGBP2Entry 9417 }
|
|
|
|
confManEEV1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManEEV1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManEEV1"
|
|
::= { confManEEV1 1 }
|
|
|
|
confManEEV1Entry OBJECT-TYPE
|
|
SYNTAX ConfManEEV1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManEEV1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManEEV1Table 1 }
|
|
|
|
ConfManEEV1Entry ::= SEQUENCE {
|
|
eev1ManualOperation Unsigned32,
|
|
eev1ManualOperationValue Unsigned32
|
|
}
|
|
|
|
eev1ManualOperation OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 manual operation"
|
|
::= { confManEEV1Entry 8704 }
|
|
|
|
eev1ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 manual operation value"
|
|
::= { confManEEV1Entry 8725 }
|
|
|
|
confManEEV2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManEEV2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManEEV2"
|
|
::= { confManEEV2 1 }
|
|
|
|
confManEEV2Entry OBJECT-TYPE
|
|
SYNTAX ConfManEEV2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManEEV2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManEEV2Table 1 }
|
|
|
|
ConfManEEV2Entry ::= SEQUENCE {
|
|
eev2ManualOperation Unsigned32,
|
|
eev2ManualOperationValue Unsigned32
|
|
}
|
|
|
|
eev2ManualOperation OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 manual operation"
|
|
::= { confManEEV2Entry 8804 }
|
|
|
|
eev2ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..10000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 manual operation value"
|
|
::= { confManEEV2Entry 8825 }
|
|
|
|
confManDrycooler1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManDrycooler1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManDrycooler1"
|
|
::= { confManDrycooler1 1 }
|
|
|
|
confManDrycooler1Entry OBJECT-TYPE
|
|
SYNTAX ConfManDrycooler1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManDrycooler1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManDrycooler1Table 1 }
|
|
|
|
ConfManDrycooler1Entry ::= SEQUENCE {
|
|
drycooler1ManualOperationActive Unsigned32,
|
|
drycooler1ManualOperationRunning Unsigned32,
|
|
drycooler1ManualOperationSpeed Unsigned32
|
|
}
|
|
|
|
drycooler1ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 manual operation active"
|
|
::= { confManDrycooler1Entry 5401 }
|
|
|
|
drycooler1ManualOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 manual operation running"
|
|
::= { confManDrycooler1Entry 5404 }
|
|
|
|
drycooler1ManualOperationSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (1..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 manual operation speed"
|
|
::= { confManDrycooler1Entry 5422 }
|
|
|
|
confManDrycooler2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManDrycooler2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManDrycooler2"
|
|
::= { confManDrycooler2 1 }
|
|
|
|
confManDrycooler2Entry OBJECT-TYPE
|
|
SYNTAX ConfManDrycooler2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManDrycooler2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManDrycooler2Table 1 }
|
|
|
|
ConfManDrycooler2Entry ::= SEQUENCE {
|
|
drycooler2ManualOperationActive Unsigned32,
|
|
drycooler2ManualOperationRunning Unsigned32
|
|
}
|
|
|
|
drycooler2ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler2 manual operation active"
|
|
::= { confManDrycooler2Entry 5501 }
|
|
|
|
drycooler2ManualOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler2 manual operation running"
|
|
::= { confManDrycooler2Entry 5504 }
|
|
|
|
confManDrycooler3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManDrycooler3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManDrycooler3"
|
|
::= { confManDrycooler3 1 }
|
|
|
|
confManDrycooler3Entry OBJECT-TYPE
|
|
SYNTAX ConfManDrycooler3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManDrycooler3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManDrycooler3Table 1 }
|
|
|
|
ConfManDrycooler3Entry ::= SEQUENCE {
|
|
drycooler3ManualOperationActive Unsigned32,
|
|
drycooler3ManualOperationRunning Unsigned32
|
|
}
|
|
|
|
drycooler3ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler3 manual operation active"
|
|
::= { confManDrycooler3Entry 5601 }
|
|
|
|
drycooler3ManualOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler3 manual operation running"
|
|
::= { confManDrycooler3Entry 5604 }
|
|
|
|
confManDrycooler4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManDrycooler4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManDrycooler4"
|
|
::= { confManDrycooler4 1 }
|
|
|
|
confManDrycooler4Entry OBJECT-TYPE
|
|
SYNTAX ConfManDrycooler4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManDrycooler4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManDrycooler4Table 1 }
|
|
|
|
ConfManDrycooler4Entry ::= SEQUENCE {
|
|
drycooler4ManualOperationActive Unsigned32,
|
|
drycooler4ManualOperationRunning Unsigned32
|
|
}
|
|
|
|
drycooler4ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler4 manual operation active"
|
|
::= { confManDrycooler4Entry 5701 }
|
|
|
|
drycooler4ManualOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler4 manual operation running"
|
|
::= { confManDrycooler4Entry 5704 }
|
|
|
|
confManPump1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManPump1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManPump1"
|
|
::= { confManPump1 1 }
|
|
|
|
confManPump1Entry OBJECT-TYPE
|
|
SYNTAX ConfManPump1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManPump1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManPump1Table 1 }
|
|
|
|
ConfManPump1Entry ::= SEQUENCE {
|
|
pump1ManualOperationActive Unsigned32,
|
|
pump1ManualOperationRunning Unsigned32,
|
|
pump1ManualOperationSpeed Unsigned32
|
|
}
|
|
|
|
pump1ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 manual operation active"
|
|
::= { confManPump1Entry 5801 }
|
|
|
|
pump1ManualOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 manual operation running"
|
|
::= { confManPump1Entry 5805 }
|
|
|
|
pump1ManualOperationSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 manual operation speed"
|
|
::= { confManPump1Entry 5822 }
|
|
|
|
confManPump2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManPump2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManPump2"
|
|
::= { confManPump2 1 }
|
|
|
|
confManPump2Entry OBJECT-TYPE
|
|
SYNTAX ConfManPump2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManPump2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManPump2Table 1 }
|
|
|
|
ConfManPump2Entry ::= SEQUENCE {
|
|
pump2ManualOperationActive Unsigned32,
|
|
pump2ManualOperationRunning Unsigned32,
|
|
pump2ManualOperationSpeed Unsigned32
|
|
}
|
|
|
|
pump2ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 manual operation active"
|
|
::= { confManPump2Entry 5901 }
|
|
|
|
pump2ManualOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 manual operation running"
|
|
::= { confManPump2Entry 5905 }
|
|
|
|
pump2ManualOperationSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 manual operation speed"
|
|
::= { confManPump2Entry 5922 }
|
|
|
|
confManPump3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManPump3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManPump3"
|
|
::= { confManPump3 1 }
|
|
|
|
confManPump3Entry OBJECT-TYPE
|
|
SYNTAX ConfManPump3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManPump3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManPump3Table 1 }
|
|
|
|
ConfManPump3Entry ::= SEQUENCE {
|
|
pump3ManualOperationActive Unsigned32,
|
|
pump3ManualOperationRunning Unsigned32,
|
|
pump3ManualOperationSpeed Unsigned32
|
|
}
|
|
|
|
pump3ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 manual operation active"
|
|
::= { confManPump3Entry 6001 }
|
|
|
|
pump3ManualOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 manual operation running"
|
|
::= { confManPump3Entry 6005 }
|
|
|
|
pump3ManualOperationSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 manual operation speed"
|
|
::= { confManPump3Entry 6022 }
|
|
|
|
confManPump4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManPump4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManPump4"
|
|
::= { confManPump4 1 }
|
|
|
|
confManPump4Entry OBJECT-TYPE
|
|
SYNTAX ConfManPump4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManPump4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManPump4Table 1 }
|
|
|
|
ConfManPump4Entry ::= SEQUENCE {
|
|
pump4ManualOperationActive Unsigned32,
|
|
pump4ManualOperationRunning Unsigned32,
|
|
pump4ManualOperationSpeed Unsigned32
|
|
}
|
|
|
|
pump4ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 manual operation active"
|
|
::= { confManPump4Entry 6101 }
|
|
|
|
pump4ManualOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 manual operation running"
|
|
::= { confManPump4Entry 6105 }
|
|
|
|
pump4ManualOperationSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 manual operation speed"
|
|
::= { confManPump4Entry 6122 }
|
|
|
|
confManLouverEcoTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManLouverEcoEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManLouverEco"
|
|
::= { confManLouverEco 1 }
|
|
|
|
confManLouverEcoEntry OBJECT-TYPE
|
|
SYNTAX ConfManLouverEcoEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManLouverEco"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManLouverEcoTable 1 }
|
|
|
|
ConfManLouverEcoEntry ::= SEQUENCE {
|
|
eCOLouverManualOperationActive Unsigned32,
|
|
eCOLouverManOpOpeningGrade Unsigned32
|
|
}
|
|
|
|
eCOLouverManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO louver manual operation active"
|
|
::= { confManLouverEcoEntry 9901 }
|
|
|
|
eCOLouverManOpOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ECO louver man. op. opening grade"
|
|
::= { confManLouverEcoEntry 9914 }
|
|
|
|
confManLouverFreshAirTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManLouverFreshAirEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManLouverFreshAir"
|
|
::= { confManLouverFreshAir 1 }
|
|
|
|
confManLouverFreshAirEntry OBJECT-TYPE
|
|
SYNTAX ConfManLouverFreshAirEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManLouverFreshAir"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManLouverFreshAirTable 1 }
|
|
|
|
ConfManLouverFreshAirEntry ::= SEQUENCE {
|
|
freshAirLouverMaOperationActive Unsigned32,
|
|
freshAirLouverMaionOpeningGrade Unsigned32
|
|
}
|
|
|
|
freshAirLouverMaOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Fresh air louver manual operation active"
|
|
::= { confManLouverFreshAirEntry 10401 }
|
|
|
|
freshAirLouverMaionOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Fresh air louver manual operation opening grade"
|
|
::= { confManLouverFreshAirEntry 10409 }
|
|
|
|
confManLouverAntiFreezeTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManLouverAntiFreezeEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManLouverAntiFreeze"
|
|
::= { confManLouverAntiFreeze 1 }
|
|
|
|
confManLouverAntiFreezeEntry OBJECT-TYPE
|
|
SYNTAX ConfManLouverAntiFreezeEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManLouverAntiFreeze"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManLouverAntiFreezeTable 1 }
|
|
|
|
ConfManLouverAntiFreezeEntry ::= SEQUENCE {
|
|
antiFreezeLouverOperationActive Unsigned32,
|
|
antiFreezeLouverionOpeningGrade Unsigned32
|
|
}
|
|
|
|
antiFreezeLouverOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Anti-freeze louver manual operation active"
|
|
::= { confManLouverAntiFreezeEntry 10501 }
|
|
|
|
antiFreezeLouverionOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Anti-freeze louver manual operation opening grade"
|
|
::= { confManLouverAntiFreezeEntry 10509 }
|
|
|
|
confManLouvercirculationTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManLouvercirculationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManLouvercirculation"
|
|
::= { confManLouvercirculation 1 }
|
|
|
|
confManLouvercirculationEntry OBJECT-TYPE
|
|
SYNTAX ConfManLouvercirculationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManLouvercirculation"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManLouvercirculationTable 1 }
|
|
|
|
ConfManLouvercirculationEntry ::= SEQUENCE {
|
|
circulationLouvelOperationActive Unsigned32,
|
|
circulationLouvetionOpeningGrade Unsigned32
|
|
}
|
|
|
|
circulationLouvelOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Circulation louver manual operation active"
|
|
::= { confManLouvercirculationEntry 10601 }
|
|
|
|
circulationLouvetionOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Circulation louver manual operation opening grade"
|
|
::= { confManLouvercirculationEntry 10609 }
|
|
|
|
confManLouverExitTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManLouverExitEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManLouverExit"
|
|
::= { confManLouverExit 1 }
|
|
|
|
confManLouverExitEntry OBJECT-TYPE
|
|
SYNTAX ConfManLouverExitEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManLouverExit"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManLouverExitTable 1 }
|
|
|
|
ConfManLouverExitEntry ::= SEQUENCE {
|
|
exitLouverManualOperationActive Unsigned32,
|
|
exitLouverManualionOpeningState Unsigned32,
|
|
exitLouverManualionOpeningGrade Unsigned32
|
|
}
|
|
|
|
exitLouverManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Exit louver manual operation active"
|
|
::= { confManLouverExitEntry 10701 }
|
|
|
|
exitLouverManualionOpeningState OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Exit louver manual operation opening state"
|
|
::= { confManLouverExitEntry 10703 }
|
|
|
|
exitLouverManualionOpeningGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Exit louver manual operation opening grade"
|
|
::= { confManLouverExitEntry 10710 }
|
|
|
|
confManConFanTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManConFanEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManConFan"
|
|
::= { confManConFan 1 }
|
|
|
|
confManConFanEntry OBJECT-TYPE
|
|
SYNTAX ConfManConFanEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManConFan"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManConFanTable 1 }
|
|
|
|
ConfManConFanEntry ::= SEQUENCE {
|
|
condFan1ManualOperationActive Unsigned32,
|
|
condFan1ManualOperationSpeed Unsigned32,
|
|
condFan2ManualOperationActive Unsigned32,
|
|
condFan2ManualOperationSpeed Unsigned32
|
|
}
|
|
|
|
condFan1ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 manual operation active"
|
|
::= { confManConFanEntry 10801 }
|
|
|
|
condFan1ManualOperationSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 manual operation speed"
|
|
::= { confManConFanEntry 10809 }
|
|
|
|
condFan2ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 manual operation active"
|
|
::= { confManConFanEntry 10901 }
|
|
|
|
condFan2ManualOperationSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 manual operation speed"
|
|
::= { confManConFanEntry 10909 }
|
|
|
|
confManEHeat1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManEHeat1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManEHeat1"
|
|
::= { confManEHeat1 1 }
|
|
|
|
confManEHeat1Entry OBJECT-TYPE
|
|
SYNTAX ConfManEHeat1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManEHeat1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManEHeat1Table 1 }
|
|
|
|
ConfManEHeat1Entry ::= SEQUENCE {
|
|
elecHeating1ManuOperationActive Unsigned32,
|
|
elecHeating1ManuOperationRunning Unsigned32,
|
|
elecHeating1ManuerationPWMGrade Unsigned32
|
|
}
|
|
|
|
elecHeating1ManuOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 manual operation active"
|
|
::= { confManEHeat1Entry 4801 }
|
|
|
|
elecHeating1ManuOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 manual operation running"
|
|
::= { confManEHeat1Entry 4804 }
|
|
|
|
elecHeating1ManuerationPWMGrade OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 manual operation PWM-grade"
|
|
::= { confManEHeat1Entry 4818 }
|
|
|
|
confManEHeat2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManEHeat2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManEHeat2"
|
|
::= { confManEHeat2 1 }
|
|
|
|
confManEHeat2Entry OBJECT-TYPE
|
|
SYNTAX ConfManEHeat2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManEHeat2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManEHeat2Table 1 }
|
|
|
|
ConfManEHeat2Entry ::= SEQUENCE {
|
|
elecHeating2ManuOperationActive Unsigned32,
|
|
elecHeating2ManuOperationRunning Unsigned32
|
|
}
|
|
|
|
elecHeating2ManuOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 manual operation active"
|
|
::= { confManEHeat2Entry 4901 }
|
|
|
|
elecHeating2ManuOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 manual operation running"
|
|
::= { confManEHeat2Entry 4904 }
|
|
|
|
confManEHeat3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManEHeat3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManEHeat3"
|
|
::= { confManEHeat3 1 }
|
|
|
|
confManEHeat3Entry OBJECT-TYPE
|
|
SYNTAX ConfManEHeat3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManEHeat3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManEHeat3Table 1 }
|
|
|
|
ConfManEHeat3Entry ::= SEQUENCE {
|
|
elecHeating3ManuOperationActive Unsigned32,
|
|
elecHeating3ManuOperationRunning Unsigned32
|
|
}
|
|
|
|
elecHeating3ManuOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 manual operation active"
|
|
::= { confManEHeat3Entry 5001 }
|
|
|
|
elecHeating3ManuOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 manual operation running"
|
|
::= { confManEHeat3Entry 5004 }
|
|
|
|
confManEHeat4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManEHeat4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManEHeat4"
|
|
::= { confManEHeat4 1 }
|
|
|
|
confManEHeat4Entry OBJECT-TYPE
|
|
SYNTAX ConfManEHeat4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManEHeat4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManEHeat4Table 1 }
|
|
|
|
ConfManEHeat4Entry ::= SEQUENCE {
|
|
elecHeating4ManuOperationActive Unsigned32,
|
|
elecHeating4ManuOperationRunning Unsigned32
|
|
}
|
|
|
|
elecHeating4ManuOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 manual operation active"
|
|
::= { confManEHeat4Entry 5101 }
|
|
|
|
elecHeating4ManuOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 manual operation running"
|
|
::= { confManEHeat4Entry 5104 }
|
|
|
|
confManHotgasHeatTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManHotgasHeatEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManHotgasHeat"
|
|
::= { confManHotgasHeat 1 }
|
|
|
|
confManHotgasHeatEntry OBJECT-TYPE
|
|
SYNTAX ConfManHotgasHeatEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManHotgasHeat"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManHotgasHeatTable 1 }
|
|
|
|
ConfManHotgasHeatEntry ::= SEQUENCE {
|
|
hotgasHeatingManlOperationActive Unsigned32,
|
|
hotgasHeatingManperationRunning Unsigned32
|
|
}
|
|
|
|
hotgasHeatingManlOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hotgas-heating manual operation active"
|
|
::= { confManHotgasHeatEntry 6201 }
|
|
|
|
hotgasHeatingManperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hotgas-heating manual operation running"
|
|
::= { confManHotgasHeatEntry 6203 }
|
|
|
|
confManHwrValveTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManHwrValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManHwrValve"
|
|
::= { confManHwrValve 1 }
|
|
|
|
confManHwrValveEntry OBJECT-TYPE
|
|
SYNTAX ConfManHwrValveEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManHwrValve"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManHwrValveTable 1 }
|
|
|
|
ConfManHwrValveEntry ::= SEQUENCE {
|
|
pWWHeatingManualOperationActive Unsigned32,
|
|
pWWHeatingManualOperationRunning Unsigned32,
|
|
pWWHeatingManualOperationValue Unsigned32
|
|
}
|
|
|
|
pWWHeatingManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PWW-heating manual operation active"
|
|
::= { confManHwrValveEntry 6301 }
|
|
|
|
pWWHeatingManualOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PWW-heating manual operation running"
|
|
::= { confManHwrValveEntry 6303 }
|
|
|
|
pWWHeatingManualOperationValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PWW-heating manual operation value"
|
|
::= { confManHwrValveEntry 6316 }
|
|
|
|
confManHumidifierTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManHumidifierEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManHumidifier"
|
|
::= { confManHumidifier 1 }
|
|
|
|
confManHumidifierEntry OBJECT-TYPE
|
|
SYNTAX ConfManHumidifierEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManHumidifier"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManHumidifierTable 1 }
|
|
|
|
ConfManHumidifierEntry ::= SEQUENCE {
|
|
humidifier1ManualOperationActive Unsigned32,
|
|
humidifier1ManuaperationRunning Unsigned32,
|
|
humidifier1ManualOperationValue Unsigned32,
|
|
humidifier2ManualOperationActive Unsigned32,
|
|
humidifier2ManuaperationRunning Unsigned32,
|
|
humidifier2ManualOperationValue Unsigned32,
|
|
humidifier3ManualOperationActive Unsigned32,
|
|
humidifier3ManuaperationRunning Unsigned32,
|
|
humidifier3ManualOperationValue Unsigned32
|
|
}
|
|
|
|
humidifier1ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 manual operation active"
|
|
::= { confManHumidifierEntry 6401 }
|
|
|
|
humidifier1ManuaperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 manual operation running"
|
|
::= { confManHumidifierEntry 6404 }
|
|
|
|
humidifier1ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 manual operation value"
|
|
::= { confManHumidifierEntry 6428 }
|
|
|
|
humidifier2ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 manual operation active"
|
|
::= { confManHumidifierEntry 6501 }
|
|
|
|
humidifier2ManuaperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 manual operation running"
|
|
::= { confManHumidifierEntry 6504 }
|
|
|
|
humidifier2ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 manual operation value"
|
|
::= { confManHumidifierEntry 6528 }
|
|
|
|
humidifier3ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 manual operation active"
|
|
::= { confManHumidifierEntry 6601 }
|
|
|
|
humidifier3ManuaperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 manual operation running"
|
|
::= { confManHumidifierEntry 6604 }
|
|
|
|
humidifier3ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 manual operation value"
|
|
::= { confManHumidifierEntry 6628 }
|
|
|
|
confManDehumidificationTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManDehumidificationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManDehumidification"
|
|
::= { confManDehumidification 1 }
|
|
|
|
confManDehumidificationEntry OBJECT-TYPE
|
|
SYNTAX ConfManDehumidificationEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManDehumidification"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManDehumidificationTable 1 }
|
|
|
|
ConfManDehumidificationEntry ::= SEQUENCE {
|
|
dehumidificationOperationActive Unsigned32,
|
|
dehumidificationOperationRunning Unsigned32
|
|
}
|
|
|
|
dehumidificationOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"dehumidification manual operation active"
|
|
::= { confManDehumidificationEntry 6801 }
|
|
|
|
dehumidificationOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"dehumidification manual operation running"
|
|
::= { confManDehumidificationEntry 6804 }
|
|
|
|
confManFanTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManFanEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManFan"
|
|
::= { confManFan 1 }
|
|
|
|
confManFanEntry OBJECT-TYPE
|
|
SYNTAX ConfManFanEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManFan"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManFanTable 1 }
|
|
|
|
ConfManFanEntry ::= SEQUENCE {
|
|
fan1ManualOperationActive Unsigned32,
|
|
fan1ManualOperationRunning Unsigned32,
|
|
fan1ManualOperationSpeed Unsigned32,
|
|
fan2ManualOperationRunning Unsigned32,
|
|
fan2ManualOperationSpeed Unsigned32,
|
|
fan3ManualOperationRunning Unsigned32,
|
|
fan3ManualOperationSpeed Unsigned32
|
|
}
|
|
|
|
fan1ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 manual operation active"
|
|
::= { confManFanEntry 6901 }
|
|
|
|
fan1ManualOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 manual operation running"
|
|
::= { confManFanEntry 6905 }
|
|
|
|
fan1ManualOperationSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 manual operation speed"
|
|
::= { confManFanEntry 6933 }
|
|
|
|
fan2ManualOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 manual operation running"
|
|
::= { confManFanEntry 7005 }
|
|
|
|
fan2ManualOperationSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 manual operation speed"
|
|
::= { confManFanEntry 7033 }
|
|
|
|
fan3ManualOperationRunning OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 manual operation running"
|
|
::= { confManFanEntry 7105 }
|
|
|
|
fan3ManualOperationSpeed OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 manual operation speed"
|
|
::= { confManFanEntry 7133 }
|
|
|
|
confManAirLouverTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManAirLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManAirLouver"
|
|
::= { confManAirLouver 1 }
|
|
|
|
confManAirLouverEntry OBJECT-TYPE
|
|
SYNTAX ConfManAirLouverEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManAirLouver"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManAirLouverTable 1 }
|
|
|
|
ConfManAirLouverEntry ::= SEQUENCE {
|
|
louver1ManualOperationActive Unsigned32,
|
|
louver1ManualOperationOpen Unsigned32,
|
|
louver2ManualOperationActive Unsigned32,
|
|
louver2ManualOperationOpen Unsigned32,
|
|
louver3ManualOperationActive Unsigned32,
|
|
louver3ManualOperationOpen Unsigned32
|
|
}
|
|
|
|
louver1ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver1 manual operation active"
|
|
::= { confManAirLouverEntry 7201 }
|
|
|
|
louver1ManualOperationOpen OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver1 manual operation open"
|
|
::= { confManAirLouverEntry 7203 }
|
|
|
|
louver2ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver2 manual operation active"
|
|
::= { confManAirLouverEntry 7301 }
|
|
|
|
louver2ManualOperationOpen OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver2 manual operation open"
|
|
::= { confManAirLouverEntry 7303 }
|
|
|
|
louver3ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver3 manual operation active"
|
|
::= { confManAirLouverEntry 7401 }
|
|
|
|
louver3ManualOperationOpen OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver3 manual operation open"
|
|
::= { confManAirLouverEntry 7403 }
|
|
|
|
confManSensor1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor1"
|
|
::= { confManSensor1 1 }
|
|
|
|
confManSensor1Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor1Table 1 }
|
|
|
|
ConfManSensor1Entry ::= SEQUENCE {
|
|
sensor1ManualOperationActive Unsigned32,
|
|
sensor1BmsValueActive Unsigned32,
|
|
sensor1ManualOperationValue Integer32
|
|
}
|
|
|
|
sensor1ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 manual operation active"
|
|
::= { confManSensor1Entry 2305 }
|
|
|
|
sensor1BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 bms value active"
|
|
::= { confManSensor1Entry 2306 }
|
|
|
|
sensor1ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor1 manual operation value"
|
|
::= { confManSensor1Entry 2323 }
|
|
|
|
confManSensor2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor2"
|
|
::= { confManSensor2 1 }
|
|
|
|
confManSensor2Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor2Table 1 }
|
|
|
|
ConfManSensor2Entry ::= SEQUENCE {
|
|
sensor2ManualOperationActive Unsigned32,
|
|
sensor2ManualOperationValue Integer32,
|
|
sensor2BmsValue Integer32
|
|
}
|
|
|
|
sensor2ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 manual operation active"
|
|
::= { confManSensor2Entry 2405 }
|
|
|
|
sensor2ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 manual operation value"
|
|
::= { confManSensor2Entry 2423 }
|
|
|
|
sensor2BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor2 bms value"
|
|
::= { confManSensor2Entry 2424 }
|
|
|
|
confManSensor3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor3"
|
|
::= { confManSensor3 1 }
|
|
|
|
confManSensor3Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor3Table 1 }
|
|
|
|
ConfManSensor3Entry ::= SEQUENCE {
|
|
sensor3ManualOperationActive Unsigned32,
|
|
sensor3BmsValueActive Unsigned32,
|
|
sensor3ManualOperationValue Integer32,
|
|
sensor3BmsValue Integer32
|
|
}
|
|
|
|
sensor3ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 manual operation active"
|
|
::= { confManSensor3Entry 2505 }
|
|
|
|
sensor3BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 bms value active"
|
|
::= { confManSensor3Entry 2506 }
|
|
|
|
sensor3ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 manual operation value"
|
|
::= { confManSensor3Entry 2523 }
|
|
|
|
sensor3BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor3 bms value"
|
|
::= { confManSensor3Entry 2524 }
|
|
|
|
confManSensor4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor4"
|
|
::= { confManSensor4 1 }
|
|
|
|
confManSensor4Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor4Table 1 }
|
|
|
|
ConfManSensor4Entry ::= SEQUENCE {
|
|
sensor4ManualOperationActive Unsigned32,
|
|
sensor4BmsValueActive Unsigned32,
|
|
sensor4ManualOperationValue Integer32,
|
|
sensor4BmsValue Integer32
|
|
}
|
|
|
|
sensor4ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 manual operation active"
|
|
::= { confManSensor4Entry 2605 }
|
|
|
|
sensor4BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 bms value active"
|
|
::= { confManSensor4Entry 2606 }
|
|
|
|
sensor4ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 manual operation value"
|
|
::= { confManSensor4Entry 2623 }
|
|
|
|
sensor4BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor4 bms value"
|
|
::= { confManSensor4Entry 2624 }
|
|
|
|
confManSensor5Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor5"
|
|
::= { confManSensor5 1 }
|
|
|
|
confManSensor5Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor5"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor5Table 1 }
|
|
|
|
ConfManSensor5Entry ::= SEQUENCE {
|
|
sensor5ManualOperationActive Unsigned32,
|
|
sensor5BmsValueActive Unsigned32,
|
|
sensor5ManualOperationValue Integer32,
|
|
sensor5BmsValue Integer32
|
|
}
|
|
|
|
sensor5ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 manual operation active"
|
|
::= { confManSensor5Entry 2705 }
|
|
|
|
sensor5BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 bms value active"
|
|
::= { confManSensor5Entry 2706 }
|
|
|
|
sensor5ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 manual operation value"
|
|
::= { confManSensor5Entry 2723 }
|
|
|
|
sensor5BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor5 bms value"
|
|
::= { confManSensor5Entry 2724 }
|
|
|
|
confManSensor6Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor6"
|
|
::= { confManSensor6 1 }
|
|
|
|
confManSensor6Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor6"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor6Table 1 }
|
|
|
|
ConfManSensor6Entry ::= SEQUENCE {
|
|
sensor6ManualOperationActive Unsigned32,
|
|
sensor6BmsValueActive Unsigned32,
|
|
sensor6ManualOperationValue Integer32,
|
|
sensor6BmsValue Integer32
|
|
}
|
|
|
|
sensor6ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 manual operation active"
|
|
::= { confManSensor6Entry 2805 }
|
|
|
|
sensor6BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 bms value active"
|
|
::= { confManSensor6Entry 2806 }
|
|
|
|
sensor6ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 manual operation value"
|
|
::= { confManSensor6Entry 2823 }
|
|
|
|
sensor6BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor6 bms value"
|
|
::= { confManSensor6Entry 2824 }
|
|
|
|
confManSensor7Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor7Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor7"
|
|
::= { confManSensor7 1 }
|
|
|
|
confManSensor7Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor7Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor7"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor7Table 1 }
|
|
|
|
ConfManSensor7Entry ::= SEQUENCE {
|
|
sensor7ManualOperationActive Unsigned32,
|
|
sensor7BmsValueActive Unsigned32,
|
|
sensor7ManualOperationValue Integer32,
|
|
sensor7BmsValue Integer32
|
|
}
|
|
|
|
sensor7ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 manual operation active"
|
|
::= { confManSensor7Entry 2905 }
|
|
|
|
sensor7BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 bms value active"
|
|
::= { confManSensor7Entry 2906 }
|
|
|
|
sensor7ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 manual operation value"
|
|
::= { confManSensor7Entry 2923 }
|
|
|
|
sensor7BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor7 bms value"
|
|
::= { confManSensor7Entry 2924 }
|
|
|
|
confManSensor8Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor8Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor8"
|
|
::= { confManSensor8 1 }
|
|
|
|
confManSensor8Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor8Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor8"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor8Table 1 }
|
|
|
|
ConfManSensor8Entry ::= SEQUENCE {
|
|
sensor8ManualOperationActive Unsigned32,
|
|
sensor8BmsValueActive Unsigned32,
|
|
sensor8ManualOperationValue Integer32,
|
|
sensor8BmsValue Integer32
|
|
}
|
|
|
|
sensor8ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 manual operation active"
|
|
::= { confManSensor8Entry 3005 }
|
|
|
|
sensor8BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 bms value active"
|
|
::= { confManSensor8Entry 3006 }
|
|
|
|
sensor8ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 manual operation value"
|
|
::= { confManSensor8Entry 3023 }
|
|
|
|
sensor8BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor8 bms value"
|
|
::= { confManSensor8Entry 3024 }
|
|
|
|
confManSensor9Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor9Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor9"
|
|
::= { confManSensor9 1 }
|
|
|
|
confManSensor9Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor9Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor9"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor9Table 1 }
|
|
|
|
ConfManSensor9Entry ::= SEQUENCE {
|
|
sensor9ManualOperationActive Unsigned32,
|
|
sensor9BmsValueActive Unsigned32,
|
|
sensor9ManualOperationValue Integer32,
|
|
sensor9BmsValue Integer32
|
|
}
|
|
|
|
sensor9ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 manual operation active"
|
|
::= { confManSensor9Entry 3105 }
|
|
|
|
sensor9BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 bms value active"
|
|
::= { confManSensor9Entry 3106 }
|
|
|
|
sensor9ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 manual operation value"
|
|
::= { confManSensor9Entry 3123 }
|
|
|
|
sensor9BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor9 bms value"
|
|
::= { confManSensor9Entry 3124 }
|
|
|
|
confManSensor10Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor10Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor10"
|
|
::= { confManSensor10 1 }
|
|
|
|
confManSensor10Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor10Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor10"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor10Table 1 }
|
|
|
|
ConfManSensor10Entry ::= SEQUENCE {
|
|
sensor10ManualOperationActive Unsigned32,
|
|
sensor10BmsValueActive Unsigned32,
|
|
sensor10ManualOperationValue Integer32,
|
|
sensor10BmsValue Integer32
|
|
}
|
|
|
|
sensor10ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 manual operation active"
|
|
::= { confManSensor10Entry 3205 }
|
|
|
|
sensor10BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 bms value active"
|
|
::= { confManSensor10Entry 3206 }
|
|
|
|
sensor10ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 manual operation value"
|
|
::= { confManSensor10Entry 3223 }
|
|
|
|
sensor10BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor10 bms value"
|
|
::= { confManSensor10Entry 3224 }
|
|
|
|
confManSensor11Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor11Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor11"
|
|
::= { confManSensor11 1 }
|
|
|
|
confManSensor11Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor11Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor11"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor11Table 1 }
|
|
|
|
ConfManSensor11Entry ::= SEQUENCE {
|
|
sensor11ManualOperationActive Unsigned32,
|
|
sensor11BmsValueActive Unsigned32,
|
|
sensor11ManualOperationValue Integer32,
|
|
sensor11BmsValue Integer32
|
|
}
|
|
|
|
sensor11ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 manual operation active"
|
|
::= { confManSensor11Entry 3305 }
|
|
|
|
sensor11BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 bms value active"
|
|
::= { confManSensor11Entry 3306 }
|
|
|
|
sensor11ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 manual operation value"
|
|
::= { confManSensor11Entry 3323 }
|
|
|
|
sensor11BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor11 bms value"
|
|
::= { confManSensor11Entry 3324 }
|
|
|
|
confManSensor12Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor12Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor12"
|
|
::= { confManSensor12 1 }
|
|
|
|
confManSensor12Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor12Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor12"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor12Table 1 }
|
|
|
|
ConfManSensor12Entry ::= SEQUENCE {
|
|
sensor12ManualOperationActive Unsigned32,
|
|
sensor12BmsValueActive Unsigned32,
|
|
sensor12ManualOperationValue Integer32,
|
|
sensor12BmsValue Integer32
|
|
}
|
|
|
|
sensor12ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 manual operation active"
|
|
::= { confManSensor12Entry 3405 }
|
|
|
|
sensor12BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 bms value active"
|
|
::= { confManSensor12Entry 3406 }
|
|
|
|
sensor12ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 manual operation value"
|
|
::= { confManSensor12Entry 3423 }
|
|
|
|
sensor12BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor12 bms value"
|
|
::= { confManSensor12Entry 3424 }
|
|
|
|
confManSensor13Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor13Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor13"
|
|
::= { confManSensor13 1 }
|
|
|
|
confManSensor13Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor13Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor13"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor13Table 1 }
|
|
|
|
ConfManSensor13Entry ::= SEQUENCE {
|
|
sensor13ManualOperationActive Unsigned32,
|
|
sensor13BmsValueActive Unsigned32,
|
|
sensor13ManualOperationValue Integer32,
|
|
sensor13BmsValue Integer32
|
|
}
|
|
|
|
sensor13ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 manual operation active"
|
|
::= { confManSensor13Entry 3505 }
|
|
|
|
sensor13BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 bms value active"
|
|
::= { confManSensor13Entry 3506 }
|
|
|
|
sensor13ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 manual operation value"
|
|
::= { confManSensor13Entry 3523 }
|
|
|
|
sensor13BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor13 bms value"
|
|
::= { confManSensor13Entry 3524 }
|
|
|
|
confManSensor14Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor14Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor14"
|
|
::= { confManSensor14 1 }
|
|
|
|
confManSensor14Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor14Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor14"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor14Table 1 }
|
|
|
|
ConfManSensor14Entry ::= SEQUENCE {
|
|
sensor14ManualOperationActive Unsigned32,
|
|
sensor14BmsValueActive Unsigned32,
|
|
sensor14ManualOperationValue Integer32,
|
|
sensor14BmsValue Integer32
|
|
}
|
|
|
|
sensor14ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 manual operation active"
|
|
::= { confManSensor14Entry 3605 }
|
|
|
|
sensor14BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 bms value active"
|
|
::= { confManSensor14Entry 3606 }
|
|
|
|
sensor14ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 manual operation value"
|
|
::= { confManSensor14Entry 3623 }
|
|
|
|
sensor14BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor14 bms value"
|
|
::= { confManSensor14Entry 3624 }
|
|
|
|
confManSensor15Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor15Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor15"
|
|
::= { confManSensor15 1 }
|
|
|
|
confManSensor15Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor15Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor15"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor15Table 1 }
|
|
|
|
ConfManSensor15Entry ::= SEQUENCE {
|
|
sensor15ManualOperationActive Unsigned32,
|
|
sensor15BmsValueActive Unsigned32,
|
|
sensor15ManualOperationValue Integer32,
|
|
sensor15BmsValue Integer32
|
|
}
|
|
|
|
sensor15ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 manual operation active"
|
|
::= { confManSensor15Entry 3705 }
|
|
|
|
sensor15BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 bms value active"
|
|
::= { confManSensor15Entry 3706 }
|
|
|
|
sensor15ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 manual operation value"
|
|
::= { confManSensor15Entry 3723 }
|
|
|
|
sensor15BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor15 bms value"
|
|
::= { confManSensor15Entry 3724 }
|
|
|
|
confManSensor16Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor16Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor16"
|
|
::= { confManSensor16 1 }
|
|
|
|
confManSensor16Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor16Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor16"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor16Table 1 }
|
|
|
|
ConfManSensor16Entry ::= SEQUENCE {
|
|
sensor16ManualOperationActive Unsigned32,
|
|
sensor16BmsValueActive Unsigned32,
|
|
sensor16ManualOperationValue Integer32,
|
|
sensor16BmsValue Integer32
|
|
}
|
|
|
|
sensor16ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 manual operation active"
|
|
::= { confManSensor16Entry 3805 }
|
|
|
|
sensor16BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 bms value active"
|
|
::= { confManSensor16Entry 3806 }
|
|
|
|
sensor16ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 manual operation value"
|
|
::= { confManSensor16Entry 3823 }
|
|
|
|
sensor16BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor16 bms value"
|
|
::= { confManSensor16Entry 3824 }
|
|
|
|
confManSensor17Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor17Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor17"
|
|
::= { confManSensor17 1 }
|
|
|
|
confManSensor17Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor17Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor17"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor17Table 1 }
|
|
|
|
ConfManSensor17Entry ::= SEQUENCE {
|
|
sensor17ManualOperationActive Unsigned32,
|
|
sensor17BmsValueActive Unsigned32,
|
|
sensor17ManualOperationValue Integer32,
|
|
sensor17BmsValue Integer32
|
|
}
|
|
|
|
sensor17ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 manual operation active"
|
|
::= { confManSensor17Entry 3905 }
|
|
|
|
sensor17BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 bms value active"
|
|
::= { confManSensor17Entry 3906 }
|
|
|
|
sensor17ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 manual operation value"
|
|
::= { confManSensor17Entry 3923 }
|
|
|
|
sensor17BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor17 bms value"
|
|
::= { confManSensor17Entry 3924 }
|
|
|
|
confManSensor18Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor18Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor18"
|
|
::= { confManSensor18 1 }
|
|
|
|
confManSensor18Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor18Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor18"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor18Table 1 }
|
|
|
|
ConfManSensor18Entry ::= SEQUENCE {
|
|
sensor18ManualOperationActive Unsigned32,
|
|
sensor18BmsValueActive Unsigned32,
|
|
sensor18ManualOperationValue Integer32,
|
|
sensor18BmsValue Integer32
|
|
}
|
|
|
|
sensor18ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 manual operation active"
|
|
::= { confManSensor18Entry 4005 }
|
|
|
|
sensor18BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 bms value active"
|
|
::= { confManSensor18Entry 4006 }
|
|
|
|
sensor18ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 manual operation value"
|
|
::= { confManSensor18Entry 4023 }
|
|
|
|
sensor18BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor18 bms value"
|
|
::= { confManSensor18Entry 4024 }
|
|
|
|
confManSensor19Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor19Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor19"
|
|
::= { confManSensor19 1 }
|
|
|
|
confManSensor19Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor19Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor19"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor19Table 1 }
|
|
|
|
ConfManSensor19Entry ::= SEQUENCE {
|
|
sensor19ManualOperationActive Unsigned32,
|
|
sensor19BmsValueActive Unsigned32,
|
|
sensor19ManualOperationValue Integer32,
|
|
sensor19BmsValue Integer32
|
|
}
|
|
|
|
sensor19ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 manual operation active"
|
|
::= { confManSensor19Entry 4105 }
|
|
|
|
sensor19BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 bms value active"
|
|
::= { confManSensor19Entry 4106 }
|
|
|
|
sensor19ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 manual operation value"
|
|
::= { confManSensor19Entry 4123 }
|
|
|
|
sensor19BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor19 bms value"
|
|
::= { confManSensor19Entry 4124 }
|
|
|
|
confManSensor20Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor20Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor20"
|
|
::= { confManSensor20 1 }
|
|
|
|
confManSensor20Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor20Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor20"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor20Table 1 }
|
|
|
|
ConfManSensor20Entry ::= SEQUENCE {
|
|
sensor20ManualOperationActive Unsigned32,
|
|
sensor20BmsValueActive Unsigned32,
|
|
sensor20ManualOperationValue Integer32,
|
|
sensor20BmsValue Integer32
|
|
}
|
|
|
|
sensor20ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 manual operation active"
|
|
::= { confManSensor20Entry 4205 }
|
|
|
|
sensor20BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 bms value active"
|
|
::= { confManSensor20Entry 4206 }
|
|
|
|
sensor20ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 manual operation value"
|
|
::= { confManSensor20Entry 4223 }
|
|
|
|
sensor20BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor20 bms value"
|
|
::= { confManSensor20Entry 4224 }
|
|
|
|
confManSensor21Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManSensor21Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManSensor21"
|
|
::= { confManSensor21 1 }
|
|
|
|
confManSensor21Entry OBJECT-TYPE
|
|
SYNTAX ConfManSensor21Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManSensor21"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManSensor21Table 1 }
|
|
|
|
ConfManSensor21Entry ::= SEQUENCE {
|
|
sensor21ManualOperationActive Unsigned32,
|
|
sensor21BmsValueActive Unsigned32,
|
|
sensor21ManualOperationValue Integer32,
|
|
sensor21BmsValue Integer32
|
|
}
|
|
|
|
sensor21ManualOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 manual operation active"
|
|
::= { confManSensor21Entry 4305 }
|
|
|
|
sensor21BmsValueActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 bms value active"
|
|
::= { confManSensor21Entry 4306 }
|
|
|
|
sensor21ManualOperationValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 manual operation value"
|
|
::= { confManSensor21Entry 4323 }
|
|
|
|
sensor21BmsValue OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor21 bms value"
|
|
::= { confManSensor21Entry 4324 }
|
|
|
|
confManExtAlarms1Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManExtAlarms1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManExtAlarms1"
|
|
::= { confManExtAlarms1 1 }
|
|
|
|
confManExtAlarms1Entry OBJECT-TYPE
|
|
SYNTAX ConfManExtAlarms1Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManExtAlarms1"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManExtAlarms1Table 1 }
|
|
|
|
ConfManExtAlarms1Entry ::= SEQUENCE {
|
|
extAlarmManualOperationEnable1 Unsigned32,
|
|
extAlarmManualOperationActive1 Unsigned32
|
|
}
|
|
|
|
extAlarmManualOperationEnable1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation enable 1"
|
|
::= { confManExtAlarms1Entry 7501 }
|
|
|
|
extAlarmManualOperationActive1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation active 1"
|
|
::= { confManExtAlarms1Entry 7503 }
|
|
|
|
confManExtAlarms2Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManExtAlarms2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManExtAlarms2"
|
|
::= { confManExtAlarms2 1 }
|
|
|
|
confManExtAlarms2Entry OBJECT-TYPE
|
|
SYNTAX ConfManExtAlarms2Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManExtAlarms2"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManExtAlarms2Table 1 }
|
|
|
|
ConfManExtAlarms2Entry ::= SEQUENCE {
|
|
extAlarmManualOperationEnable2 Unsigned32,
|
|
extAlarmManualOperationActive2 Unsigned32
|
|
}
|
|
|
|
extAlarmManualOperationEnable2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation enable 2"
|
|
::= { confManExtAlarms2Entry 7601 }
|
|
|
|
extAlarmManualOperationActive2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation active 2"
|
|
::= { confManExtAlarms2Entry 7603 }
|
|
|
|
confManExtAlarms3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManExtAlarms3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManExtAlarms3"
|
|
::= { confManExtAlarms3 1 }
|
|
|
|
confManExtAlarms3Entry OBJECT-TYPE
|
|
SYNTAX ConfManExtAlarms3Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManExtAlarms3"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManExtAlarms3Table 1 }
|
|
|
|
ConfManExtAlarms3Entry ::= SEQUENCE {
|
|
extAlarmManualOperationEnable3 Unsigned32,
|
|
extAlarmManualOperationActive3 Unsigned32
|
|
}
|
|
|
|
extAlarmManualOperationEnable3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation enable 3"
|
|
::= { confManExtAlarms3Entry 7701 }
|
|
|
|
extAlarmManualOperationActive3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation active 3"
|
|
::= { confManExtAlarms3Entry 7703 }
|
|
|
|
confManExtAlarms4Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManExtAlarms4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManExtAlarms4"
|
|
::= { confManExtAlarms4 1 }
|
|
|
|
confManExtAlarms4Entry OBJECT-TYPE
|
|
SYNTAX ConfManExtAlarms4Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManExtAlarms4"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManExtAlarms4Table 1 }
|
|
|
|
ConfManExtAlarms4Entry ::= SEQUENCE {
|
|
extAlarmManualOperationEnable4 Unsigned32,
|
|
extAlarmManualOperationActive4 Unsigned32
|
|
}
|
|
|
|
extAlarmManualOperationEnable4 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation enable 4"
|
|
::= { confManExtAlarms4Entry 7801 }
|
|
|
|
extAlarmManualOperationActive4 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation active 4"
|
|
::= { confManExtAlarms4Entry 7803 }
|
|
|
|
confManExtAlarms5Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManExtAlarms5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManExtAlarms5"
|
|
::= { confManExtAlarms5 1 }
|
|
|
|
confManExtAlarms5Entry OBJECT-TYPE
|
|
SYNTAX ConfManExtAlarms5Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManExtAlarms5"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManExtAlarms5Table 1 }
|
|
|
|
ConfManExtAlarms5Entry ::= SEQUENCE {
|
|
extAlarmManualOperationEnable5 Unsigned32,
|
|
extAlarmManualOperationActive5 Unsigned32
|
|
}
|
|
|
|
extAlarmManualOperationEnable5 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation enable 5"
|
|
::= { confManExtAlarms5Entry 7901 }
|
|
|
|
extAlarmManualOperationActive5 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation active 5"
|
|
::= { confManExtAlarms5Entry 7903 }
|
|
|
|
confManExtAlarms6Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManExtAlarms6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManExtAlarms6"
|
|
::= { confManExtAlarms6 1 }
|
|
|
|
confManExtAlarms6Entry OBJECT-TYPE
|
|
SYNTAX ConfManExtAlarms6Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManExtAlarms6"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManExtAlarms6Table 1 }
|
|
|
|
ConfManExtAlarms6Entry ::= SEQUENCE {
|
|
extAlarmManualOperationEnable6 Unsigned32,
|
|
extAlarmManualOperationActive6 Unsigned32
|
|
}
|
|
|
|
extAlarmManualOperationEnable6 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation enable 6"
|
|
::= { confManExtAlarms6Entry 8001 }
|
|
|
|
extAlarmManualOperationActive6 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation active 6"
|
|
::= { confManExtAlarms6Entry 8003 }
|
|
|
|
confManExtAlarms7Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManExtAlarms7Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManExtAlarms7"
|
|
::= { confManExtAlarms7 1 }
|
|
|
|
confManExtAlarms7Entry OBJECT-TYPE
|
|
SYNTAX ConfManExtAlarms7Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManExtAlarms7"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManExtAlarms7Table 1 }
|
|
|
|
ConfManExtAlarms7Entry ::= SEQUENCE {
|
|
extAlarmManualOperationEnable7 Unsigned32,
|
|
extAlarmManualOperationActive7 Unsigned32
|
|
}
|
|
|
|
extAlarmManualOperationEnable7 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation enable 7"
|
|
::= { confManExtAlarms7Entry 8101 }
|
|
|
|
extAlarmManualOperationActive7 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation active 7"
|
|
::= { confManExtAlarms7Entry 8103 }
|
|
|
|
confManExtAlarms8Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManExtAlarms8Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManExtAlarms8"
|
|
::= { confManExtAlarms8 1 }
|
|
|
|
confManExtAlarms8Entry OBJECT-TYPE
|
|
SYNTAX ConfManExtAlarms8Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManExtAlarms8"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManExtAlarms8Table 1 }
|
|
|
|
ConfManExtAlarms8Entry ::= SEQUENCE {
|
|
extAlarmManualOperationEnable8 Unsigned32,
|
|
extAlarmManualOperationActive8 Unsigned32
|
|
}
|
|
|
|
extAlarmManualOperationEnable8 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation enable 8"
|
|
::= { confManExtAlarms8Entry 8201 }
|
|
|
|
extAlarmManualOperationActive8 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation active 8"
|
|
::= { confManExtAlarms8Entry 8203 }
|
|
|
|
confManExtAlarms9Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManExtAlarms9Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManExtAlarms9"
|
|
::= { confManExtAlarms9 1 }
|
|
|
|
confManExtAlarms9Entry OBJECT-TYPE
|
|
SYNTAX ConfManExtAlarms9Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManExtAlarms9"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManExtAlarms9Table 1 }
|
|
|
|
ConfManExtAlarms9Entry ::= SEQUENCE {
|
|
extAlarmManualOperationEnable9 Unsigned32,
|
|
extAlarmManualOperationActive9 Unsigned32
|
|
}
|
|
|
|
extAlarmManualOperationEnable9 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation enable 9"
|
|
::= { confManExtAlarms9Entry 8301 }
|
|
|
|
extAlarmManualOperationActive9 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation active 9"
|
|
::= { confManExtAlarms9Entry 8303 }
|
|
|
|
confManExtAlarms10Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfManExtAlarms10Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confManExtAlarms10"
|
|
::= { confManExtAlarms10 1 }
|
|
|
|
confManExtAlarms10Entry OBJECT-TYPE
|
|
SYNTAX ConfManExtAlarms10Entry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confManExtAlarms10"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confManExtAlarms10Table 1 }
|
|
|
|
ConfManExtAlarms10Entry ::= SEQUENCE {
|
|
extAlarmManualOperationEnable10 Unsigned32,
|
|
extAlarmManualOperationActive10 Unsigned32
|
|
}
|
|
|
|
extAlarmManualOperationEnable10 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation enable 10"
|
|
::= { confManExtAlarms10Entry 8401 }
|
|
|
|
extAlarmManualOperationActive10 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. alarm manual operation active 10"
|
|
::= { confManExtAlarms10Entry 8403 }
|
|
|
|
confZoneSequencingTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfZoneSequencingEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confZoneSequencing"
|
|
::= { confZoneSequencing 1 }
|
|
|
|
confZoneSequencingEntry OBJECT-TYPE
|
|
SYNTAX ConfZoneSequencingEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confZoneSequencing"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confZoneSequencingTable 1 }
|
|
|
|
ConfZoneSequencingEntry ::= SEQUENCE {
|
|
xYZAlarmValidLocalStop Unsigned32,
|
|
xYZAlarmValidCompLPAlarm Unsigned32,
|
|
xYZAlarmValidCompAlarm Unsigned32,
|
|
xYZAlarmValidEHeatingAlarm Unsigned32,
|
|
xYZAlarmValidHumidifierAlarm Unsigned32,
|
|
xYZAlarmValidHumidifier5uSAlarm Unsigned32,
|
|
xYZAlarmValidHumidifier20uSAlarm Unsigned32,
|
|
xYZAlarmValidAirFlowAlarm Unsigned32,
|
|
xYZAlarmValidFilterClogged Unsigned32,
|
|
xYZAlarmValidExternalAlarm Unsigned32,
|
|
xYZAlarmValidPumpAlarm Unsigned32,
|
|
xYZAlarmValidDrycoolerAlarm Unsigned32,
|
|
xYZAlarmValidWaterAlarm Unsigned32,
|
|
xYZAlarmValidRoomTempTooHigh Unsigned32,
|
|
xYZAlarmValidRoomHumidityTooHigh Unsigned32,
|
|
xYZAlarmValidSupplyTempTooHigh Unsigned32,
|
|
xYZAlarmValidSupyHumidityTooHigh Unsigned32,
|
|
xYZAlarmValidRoomTempTooLow Unsigned32,
|
|
xYZAlarmValidRoomHumidityTooLow Unsigned32,
|
|
xYZAlarmValidSupplyTempTooLow Unsigned32,
|
|
xYZAlarmValidSupyHumidityTooLow Unsigned32,
|
|
xYZAlarmValidWaterTempTooHigh Unsigned32,
|
|
xYZAlarmValidWaterTempTooLow Unsigned32,
|
|
xYZAlarmValidFireAlarm Unsigned32,
|
|
xYZAlarmValidSensorAlarm Unsigned32,
|
|
xYZAlarmValidSensorBreak Unsigned32,
|
|
xYZAlarmValidHotgasReheatAlarm Unsigned32,
|
|
xYZAlarmValidPhaseFailure Unsigned32,
|
|
xYZAlarmValidBMSStop1 Unsigned32,
|
|
xYZAlarmValidRefrigerantCircuit1 Unsigned32,
|
|
xYZAlarmValidRefrigerantCircuit2 Unsigned32,
|
|
xYZAlarmValidRefntCircuits1And2 Unsigned32,
|
|
myZoneNumberOfErrorUnits Unsigned32,
|
|
myZoneEmergencyTemperature Integer32,
|
|
myZoneCWEnergySaveModeActiv Unsigned32,
|
|
myZoneTestsequencing Unsigned32,
|
|
myZoneAverageDetonOfTempAndHumi Unsigned32,
|
|
myZoneStandbyInAgeDetermination Unsigned32,
|
|
myZoneEmergencyOperationActive Unsigned32,
|
|
myZoneAverageDetonOfAirPressure Unsigned32,
|
|
myZoneAverageDetonOfRoomPressure Unsigned32,
|
|
myZoneNMax Unsigned32,
|
|
gE3RelativeStartTempOfMyZone Integer32,
|
|
gE3HysteresisOfMyZone Integer32,
|
|
gE3AbsoluteStartTempOfMyZone Integer32,
|
|
gEpAbsoluteStarttertempOfMyZone Integer32,
|
|
gEpWaterHysteresisOfMyZone Integer32,
|
|
numberOfUnitsOfMyZoneForPT Unsigned32,
|
|
myZoneOutdoorTemperature Integer32,
|
|
myZoneCurrentRaisedFloorPressure Unsigned32,
|
|
gepRelativeStarttertempOfMyZone Integer32,
|
|
myZoneCurrentRoomPressure Unsigned32,
|
|
myZoneAverageDetayForTempAndHumi Unsigned32,
|
|
myZoneCurrentSupplyAirPressure Integer32,
|
|
myZoneNMaxForStayUnitDuringSAPSM Unsigned32,
|
|
myZoneSupplyAirPeValueSelection Unsigned32
|
|
}
|
|
|
|
xYZAlarmValidLocalStop OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (local stop)"
|
|
::= { confZoneSequencingEntry 11600 }
|
|
|
|
xYZAlarmValidCompLPAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (comp LP alarm)"
|
|
::= { confZoneSequencingEntry 11601 }
|
|
|
|
xYZAlarmValidCompAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (comp alarm)"
|
|
::= { confZoneSequencingEntry 11602 }
|
|
|
|
xYZAlarmValidEHeatingAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (e-heating alarm)"
|
|
::= { confZoneSequencingEntry 11603 }
|
|
|
|
xYZAlarmValidHumidifierAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (humidifier alarm)"
|
|
::= { confZoneSequencingEntry 11604 }
|
|
|
|
xYZAlarmValidHumidifier5uSAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (humidifier 5uS alarm)"
|
|
::= { confZoneSequencingEntry 11605 }
|
|
|
|
xYZAlarmValidHumidifier20uSAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (humidifier 20uS alarm)"
|
|
::= { confZoneSequencingEntry 11606 }
|
|
|
|
xYZAlarmValidAirFlowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (air flow alarm)"
|
|
::= { confZoneSequencingEntry 11607 }
|
|
|
|
xYZAlarmValidFilterClogged OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (filter clogged)"
|
|
::= { confZoneSequencingEntry 11608 }
|
|
|
|
xYZAlarmValidExternalAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (external alarm)"
|
|
::= { confZoneSequencingEntry 11609 }
|
|
|
|
xYZAlarmValidPumpAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (pump alarm)"
|
|
::= { confZoneSequencingEntry 11610 }
|
|
|
|
xYZAlarmValidDrycoolerAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (drycooler alarm)"
|
|
::= { confZoneSequencingEntry 11611 }
|
|
|
|
xYZAlarmValidWaterAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (water alarm)"
|
|
::= { confZoneSequencingEntry 11612 }
|
|
|
|
xYZAlarmValidRoomTempTooHigh OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (room temp too high)"
|
|
::= { confZoneSequencingEntry 11613 }
|
|
|
|
xYZAlarmValidRoomHumidityTooHigh OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (room humidity too high)"
|
|
::= { confZoneSequencingEntry 11614 }
|
|
|
|
xYZAlarmValidSupplyTempTooHigh OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (supply temp too high)"
|
|
::= { confZoneSequencingEntry 11615 }
|
|
|
|
xYZAlarmValidSupyHumidityTooHigh OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (supply humidity too high)"
|
|
::= { confZoneSequencingEntry 11616 }
|
|
|
|
xYZAlarmValidRoomTempTooLow OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (room temp too low)"
|
|
::= { confZoneSequencingEntry 11617 }
|
|
|
|
xYZAlarmValidRoomHumidityTooLow OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (room humidity too low)"
|
|
::= { confZoneSequencingEntry 11618 }
|
|
|
|
xYZAlarmValidSupplyTempTooLow OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (supply temp too low)"
|
|
::= { confZoneSequencingEntry 11619 }
|
|
|
|
xYZAlarmValidSupyHumidityTooLow OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (supply humidity too low)"
|
|
::= { confZoneSequencingEntry 11620 }
|
|
|
|
xYZAlarmValidWaterTempTooHigh OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (water temp too high)"
|
|
::= { confZoneSequencingEntry 11621 }
|
|
|
|
xYZAlarmValidWaterTempTooLow OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (water temp too low)"
|
|
::= { confZoneSequencingEntry 11622 }
|
|
|
|
xYZAlarmValidFireAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (fire alarm)"
|
|
::= { confZoneSequencingEntry 11623 }
|
|
|
|
xYZAlarmValidSensorAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (sensor alarm)"
|
|
::= { confZoneSequencingEntry 11624 }
|
|
|
|
xYZAlarmValidSensorBreak OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (sensor break)"
|
|
::= { confZoneSequencingEntry 11625 }
|
|
|
|
xYZAlarmValidHotgasReheatAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (hotgas reheat alarm)"
|
|
::= { confZoneSequencingEntry 11626 }
|
|
|
|
xYZAlarmValidPhaseFailure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (Phase failure)"
|
|
::= { confZoneSequencingEntry 11627 }
|
|
|
|
xYZAlarmValidBMSStop1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (BMS stop 1)"
|
|
::= { confZoneSequencingEntry 11628 }
|
|
|
|
xYZAlarmValidRefrigerantCircuit1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (Refrigerant circuit 1)"
|
|
::= { confZoneSequencingEntry 11629 }
|
|
|
|
xYZAlarmValidRefrigerantCircuit2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (Refrigerant circuit 2)"
|
|
::= { confZoneSequencingEntry 11630 }
|
|
|
|
xYZAlarmValidRefntCircuits1And2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"XYZ alarm valid (Refrigerant circuits 1 and 2)"
|
|
::= { confZoneSequencingEntry 11631 }
|
|
|
|
myZoneNumberOfErrorUnits OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..32)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone number of error units"
|
|
::= { confZoneSequencingEntry 11706 }
|
|
|
|
myZoneEmergencyTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (0..400)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone emergency temperature"
|
|
::= { confZoneSequencingEntry 11707 }
|
|
|
|
myZoneCWEnergySaveModeActiv OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone CW energy save mode activ"
|
|
::= { confZoneSequencingEntry 11708 }
|
|
|
|
myZoneTestsequencing OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone testsequencing"
|
|
::= { confZoneSequencingEntry 11709 }
|
|
|
|
myZoneAverageDetonOfTempAndHumi OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone average determination of temp. and humi."
|
|
::= { confZoneSequencingEntry 11710 }
|
|
|
|
myZoneStandbyInAgeDetermination OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone standby in average determination"
|
|
::= { confZoneSequencingEntry 11711 }
|
|
|
|
myZoneEmergencyOperationActive OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone emergency operation active"
|
|
::= { confZoneSequencingEntry 11712 }
|
|
|
|
myZoneAverageDetonOfAirPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone average determination of air pressure"
|
|
::= { confZoneSequencingEntry 11713 }
|
|
|
|
myZoneAverageDetonOfRoomPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone average determination of room pressure"
|
|
::= { confZoneSequencingEntry 11714 }
|
|
|
|
myZoneNMax OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone nMax"
|
|
::= { confZoneSequencingEntry 11780 }
|
|
|
|
gE3RelativeStartTempOfMyZone OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE3 relative start temp of my zone"
|
|
::= { confZoneSequencingEntry 11781 }
|
|
|
|
gE3HysteresisOfMyZone OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE3 hysteresis of my zone"
|
|
::= { confZoneSequencingEntry 11782 }
|
|
|
|
gE3AbsoluteStartTempOfMyZone OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GE3 absolute start temp of my zone"
|
|
::= { confZoneSequencingEntry 11783 }
|
|
|
|
gEpAbsoluteStarttertempOfMyZone OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GEp absolute start watertemp of my zone"
|
|
::= { confZoneSequencingEntry 11784 }
|
|
|
|
gEpWaterHysteresisOfMyZone OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"GEp water hysteresis of my zone"
|
|
::= { confZoneSequencingEntry 11785 }
|
|
|
|
numberOfUnitsOfMyZoneForPT OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..6)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of units of my zone (for PT)"
|
|
::= { confZoneSequencingEntry 11786 }
|
|
|
|
myZoneOutdoorTemperature OBJECT-TYPE
|
|
SYNTAX Integer32 (-1000..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone outdoor temperature"
|
|
::= { confZoneSequencingEntry 11787 }
|
|
|
|
myZoneCurrentRaisedFloorPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone current raised floor pressure"
|
|
::= { confZoneSequencingEntry 11788 }
|
|
|
|
gepRelativeStarttertempOfMyZone OBJECT-TYPE
|
|
SYNTAX Integer32 (0..99)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Gep relative start watertemp of my zone"
|
|
::= { confZoneSequencingEntry 11789 }
|
|
|
|
myZoneCurrentRoomPressure OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..1000)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone current room pressure"
|
|
::= { confZoneSequencingEntry 11790 }
|
|
|
|
myZoneAverageDetayForTempAndHumi OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone: average determ. delay for temp. and humi."
|
|
::= { confZoneSequencingEntry 11791 }
|
|
|
|
myZoneCurrentSupplyAirPressure OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone: current supply air pressure"
|
|
::= { confZoneSequencingEntry 11792 }
|
|
|
|
myZoneNMaxForStayUnitDuringSAPSM OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..100)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone: nMax for start of standby unit during SAPSM"
|
|
::= { confZoneSequencingEntry 11793 }
|
|
|
|
myZoneSupplyAirPeValueSelection OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..3)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"my zone: supply air pressure value selection"
|
|
::= { confZoneSequencingEntry 11794 }
|
|
|
|
confCondFanTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfCondFanEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confCondFan"
|
|
::= { confCondFan 1 }
|
|
|
|
confCondFanEntry OBJECT-TYPE
|
|
SYNTAX ConfCondFanEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confCondFan"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confCondFanTable 1 }
|
|
|
|
ConfCondFanEntry ::= SEQUENCE {
|
|
condFan1Runtime Unsigned32,
|
|
condFan2Runtime Unsigned32
|
|
}
|
|
|
|
condFan1Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 1 runtime"
|
|
::= { confCondFanEntry 10810 }
|
|
|
|
condFan2Runtime OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cond. fan 2 runtime"
|
|
::= { confCondFanEntry 10910 }
|
|
|
|
confMaintenanceTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfMaintenanceEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confMaintenance"
|
|
::= { confMaintenance 1 }
|
|
|
|
confMaintenanceEntry OBJECT-TYPE
|
|
SYNTAX ConfMaintenanceEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confMaintenance"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confMaintenanceTable 1 }
|
|
|
|
ConfMaintenanceEntry ::= SEQUENCE {
|
|
maintenanceAlarmPrio Unsigned32,
|
|
maintenanceCommonAlarmConfig Unsigned32
|
|
}
|
|
|
|
maintenanceAlarmPrio OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..31)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"maintenance alarm prio"
|
|
::= { confMaintenanceEntry 1717 }
|
|
|
|
maintenanceCommonAlarmConfig OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"maintenance common alarm config"
|
|
::= { confMaintenanceEntry 1745 }
|
|
|
|
confInterfacesTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF ConfInterfacesEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu confInterfaces"
|
|
::= { confInterfaces 1 }
|
|
|
|
confInterfacesEntry OBJECT-TYPE
|
|
SYNTAX ConfInterfacesEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu confInterfaces"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { confInterfacesTable 1 }
|
|
|
|
ConfInterfacesEntry ::= SEQUENCE {
|
|
globalAdress Unsigned32
|
|
}
|
|
|
|
globalAdress OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"global adress"
|
|
::= { confInterfacesEntry 6 }
|
|
|
|
stateTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF StateEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu state"
|
|
::= { state 3 }
|
|
|
|
stateEntry OBJECT-TYPE
|
|
SYNTAX StateEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu state"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { stateTable 1 }
|
|
|
|
StateEntry ::= SEQUENCE {
|
|
resetAllAlarms Unsigned32
|
|
}
|
|
|
|
resetAllAlarms OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"reset all alarms"
|
|
::= { stateEntry 1011 }
|
|
|
|
overviewTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF OverviewEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu overview"
|
|
::= { overview 1 }
|
|
|
|
overviewEntry OBJECT-TYPE
|
|
SYNTAX OverviewEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu overview"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { overviewTable 1 }
|
|
|
|
OverviewEntry ::= SEQUENCE {
|
|
busalarm Unsigned32,
|
|
busadrconflict Unsigned32,
|
|
unitOnOff Unsigned32
|
|
}
|
|
|
|
busalarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"busalarm"
|
|
::= { overviewEntry 10 }
|
|
|
|
busadrconflict OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"busadrconflict"
|
|
::= { overviewEntry 12 }
|
|
|
|
unitOnOff OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Unit on / off"
|
|
::= { overviewEntry 1013 }
|
|
|
|
unitstateTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF UnitstateEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu unitstate"
|
|
::= { unitstate 1 }
|
|
|
|
unitstateEntry OBJECT-TYPE
|
|
SYNTAX UnitstateEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu unitstate"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { unitstateTable 1 }
|
|
|
|
UnitstateEntry ::= SEQUENCE {
|
|
numberOfModules Unsigned32,
|
|
hardwareTypeControllerType Unsigned32,
|
|
generalError Unsigned32,
|
|
pCSTOPMonitoringBMSStop1 Unsigned32,
|
|
rEMOTESTOPContact Unsigned32,
|
|
lOCALSTOP Unsigned32,
|
|
tIMERSTOPWeeklyOper Unsigned32,
|
|
sEQStop0No1Yes Unsigned32,
|
|
wARMUPSTOPDelayedStart Unsigned32,
|
|
fCBPCSTOP Unsigned32,
|
|
fCBREMOTESTOP Unsigned32,
|
|
fCBLOCALSTOP Unsigned32,
|
|
fCBTIMERSTOP Unsigned32,
|
|
unitStandBy Unsigned32,
|
|
timeDateFormat Unsigned32
|
|
}
|
|
|
|
numberOfModules OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..6)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"number of modules"
|
|
::= { unitstateEntry 4 }
|
|
|
|
hardwareTypeControllerType OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hardware type (controller type)"
|
|
::= { unitstateEntry 7 }
|
|
|
|
generalError OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"general error"
|
|
::= { unitstateEntry 8 }
|
|
|
|
pCSTOPMonitoringBMSStop1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"PC-STOP (monitoring), BMS stop 1"
|
|
::= { unitstateEntry 1000 }
|
|
|
|
rEMOTESTOPContact OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"REMOTE STOP (contact)"
|
|
::= { unitstateEntry 1001 }
|
|
|
|
lOCALSTOP OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"LOCAL STOP "
|
|
::= { unitstateEntry 1002 }
|
|
|
|
tIMERSTOPWeeklyOper OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"TIMER-STOP (weekly oper.)"
|
|
::= { unitstateEntry 1003 }
|
|
|
|
sEQStop0No1Yes OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"SEQ. Stop (0=No, 1=Yes)"
|
|
::= { unitstateEntry 1004 }
|
|
|
|
wARMUPSTOPDelayedStart OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"WARM UP STOP / delayed start"
|
|
::= { unitstateEntry 1005 }
|
|
|
|
fCBPCSTOP OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FCB PC-STOP"
|
|
::= { unitstateEntry 10201 }
|
|
|
|
fCBREMOTESTOP OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FCB REMOTE STOP"
|
|
::= { unitstateEntry 10202 }
|
|
|
|
fCBLOCALSTOP OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FCB LOCAL STOP"
|
|
::= { unitstateEntry 10203 }
|
|
|
|
fCBTIMERSTOP OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FCB TIMER STOP"
|
|
::= { unitstateEntry 10204 }
|
|
|
|
unitStandBy OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Unit stand by"
|
|
::= { unitstateEntry 10205 }
|
|
|
|
timeDateFormat OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0..2)
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"time/ date format"
|
|
::= { unitstateEntry 10209 }
|
|
|
|
unitviewTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF UnitviewEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu unitview"
|
|
::= { unitview 2 }
|
|
|
|
unitviewEntry OBJECT-TYPE
|
|
SYNTAX UnitviewEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu unitview"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { unitviewTable 1 }
|
|
|
|
UnitviewEntry ::= SEQUENCE {
|
|
remoteUPS Unsigned32,
|
|
localUPS Unsigned32,
|
|
resetManualOperation Unsigned32,
|
|
maintenanceNecessary Unsigned32,
|
|
unitWinterMode Unsigned32,
|
|
dayNightMode Unsigned32,
|
|
unitCooling Unsigned32,
|
|
unitHeating Unsigned32,
|
|
unitHumidification Unsigned32,
|
|
unitDehumidification Unsigned32,
|
|
coolingEnable Unsigned32
|
|
}
|
|
|
|
remoteUPS OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Remote UPS"
|
|
::= { unitviewEntry 1006 }
|
|
|
|
localUPS OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Local UPS"
|
|
::= { unitviewEntry 1007 }
|
|
|
|
resetManualOperation OBJECT-TYPE
|
|
SYNTAX Unsigned32 (0)
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"reset manual operation"
|
|
::= { unitviewEntry 1009 }
|
|
|
|
maintenanceNecessary OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"maintenance necessary"
|
|
::= { unitviewEntry 1014 }
|
|
|
|
unitWinterMode OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit winter mode"
|
|
::= { unitviewEntry 1023 }
|
|
|
|
dayNightMode OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"day/night-mode"
|
|
::= { unitviewEntry 1024 }
|
|
|
|
unitCooling OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit cooling"
|
|
::= { unitviewEntry 1754 }
|
|
|
|
unitHeating OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit heating"
|
|
::= { unitviewEntry 1755 }
|
|
|
|
unitHumidification OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit humidification"
|
|
::= { unitviewEntry 1756 }
|
|
|
|
unitDehumidification OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit dehumidification"
|
|
::= { unitviewEntry 1757 }
|
|
|
|
coolingEnable OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"cooling enable"
|
|
::= { unitviewEntry 1781 }
|
|
|
|
unitAlarmsTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF UnitAlarmsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Table for values in submenu unitAlarms"
|
|
::= { unitAlarms 1 }
|
|
|
|
unitAlarmsEntry OBJECT-TYPE
|
|
SYNTAX UnitAlarmsEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A row in the table of values in submenu unitAlarms"
|
|
AUGMENTS { wibIndexEntry }
|
|
-- INDEX { wibBusNumber, wibDeviceAddress, wibModuleNumber }
|
|
::= { unitAlarmsTable 1 }
|
|
|
|
UnitAlarmsEntry ::= SEQUENCE {
|
|
commonAlarm Unsigned32,
|
|
airflow1 Unsigned32,
|
|
airflow2 Unsigned32,
|
|
airflow3 Unsigned32,
|
|
highpressure1 Unsigned32,
|
|
highpressure2 Unsigned32,
|
|
waterDetector Unsigned32,
|
|
phasecheck Unsigned32,
|
|
fireSmoke Unsigned32,
|
|
returnAirTempTooHighAlarm Unsigned32,
|
|
returnAirHumidTooHighAlarm Unsigned32,
|
|
supplyAirTempTooHighAlarm Unsigned32,
|
|
supplyAirHumidTooHighAlarm Unsigned32,
|
|
waterTempTooHighAlarm Unsigned32,
|
|
returnAirTempTooLowAlarm Unsigned32,
|
|
returnAirHumidTooLowAlarm Unsigned32,
|
|
supplyAirTempTooLowAlarm Unsigned32,
|
|
supplyAirHumidTooLowAlarm Unsigned32,
|
|
waterTempTooLowAlarm Unsigned32,
|
|
sensor1LimitAlarm Unsigned32,
|
|
sensor2LimitAlarm Unsigned32,
|
|
sensor3LimitAlarm Unsigned32,
|
|
sensor4LimitAlarm Unsigned32,
|
|
sensor5LimitAlarm Unsigned32,
|
|
sensor6LimitAlarm Unsigned32,
|
|
sensor7LimitAlarm Unsigned32,
|
|
sensor8LimitAlarm Unsigned32,
|
|
sensor9LimitAlarm Unsigned32,
|
|
sensor10LimitAlarm Unsigned32,
|
|
sensor11LimitAlarm Unsigned32,
|
|
sensor12LimitAlarm Unsigned32,
|
|
sensor13LimitAlarm Unsigned32,
|
|
sensor14LimitAlarm Unsigned32,
|
|
sensor15LimitAlarm Unsigned32,
|
|
sensor16LimitAlarm Unsigned32,
|
|
sensor17LimitAlarm Unsigned32,
|
|
sensor18LimitAlarm Unsigned32,
|
|
sensor19LimitAlarm Unsigned32,
|
|
sensor20LimitAlarm Unsigned32,
|
|
sensor21LimitAlarm Unsigned32,
|
|
sensor1DefectAlarm Unsigned32,
|
|
sensor2DefectAlarm Unsigned32,
|
|
sensor3DefectAlarm Unsigned32,
|
|
sensor4DefectAlarm Unsigned32,
|
|
sensor5DefectAlarm Unsigned32,
|
|
sensor6DefectAlarm Unsigned32,
|
|
sensor7DefectAlarm Unsigned32,
|
|
sensor8DefectAlarm Unsigned32,
|
|
sensor9DefectAlarm Unsigned32,
|
|
sensor10DefectAlarm Unsigned32,
|
|
sensor11DefectAlarm Unsigned32,
|
|
sensor12DefectAlarm Unsigned32,
|
|
sensor13DefectAlarm Unsigned32,
|
|
sensor14DefectAlarm Unsigned32,
|
|
sensor15DefectAlarm Unsigned32,
|
|
sensor16DefectAlarm Unsigned32,
|
|
sensor17DefectAlarm Unsigned32,
|
|
sensor18DefectAlarm Unsigned32,
|
|
sensor19DefectAlarm Unsigned32,
|
|
sensor20DefectAlarm Unsigned32,
|
|
sensor21DefectAlarm Unsigned32,
|
|
compr1Alarm Unsigned32,
|
|
compr2Alarm Unsigned32,
|
|
lowPressAlarm1 Unsigned32,
|
|
lowPressAlarm2 Unsigned32,
|
|
elecHeating1Alarm Unsigned32,
|
|
elecHeating2Alarm Unsigned32,
|
|
elecHeating3Alarm Unsigned32,
|
|
elecHeating4Alarm Unsigned32,
|
|
drycooler1Alarm Unsigned32,
|
|
drycooler2Alarm Unsigned32,
|
|
drycooler3Alarm Unsigned32,
|
|
drycooler4Alarm Unsigned32,
|
|
pump1Alarm Unsigned32,
|
|
pump2Alarm Unsigned32,
|
|
pump3Alarm Unsigned32,
|
|
pump4Alarm Unsigned32,
|
|
humidifier1Alarm Unsigned32,
|
|
humidifier2Alarm Unsigned32,
|
|
humidifier3Alarm Unsigned32,
|
|
humidifier1Alarm5uS Unsigned32,
|
|
humidifier2Alarm5uS Unsigned32,
|
|
humidifier3Alarm5uS Unsigned32,
|
|
humidifier1Alarm20uS Unsigned32,
|
|
humidifier2Alarm20uS Unsigned32,
|
|
humidifier3Alarm20uS Unsigned32,
|
|
fan1Alarm Unsigned32,
|
|
fan2Alarm Unsigned32,
|
|
fan3Alarm Unsigned32,
|
|
fan1FilterAlarm Unsigned32,
|
|
fan2FilterAlarm Unsigned32,
|
|
fan3FilterAlarm Unsigned32,
|
|
extAlarm1Active Unsigned32,
|
|
extAlarm2Active Unsigned32,
|
|
extAlarm3Active Unsigned32,
|
|
extAlarm4Active Unsigned32,
|
|
extAlarm5Active Unsigned32,
|
|
extAlarm6Active Unsigned32,
|
|
extAlarm7Active Unsigned32,
|
|
extAlarm8Active Unsigned32,
|
|
extAlarm9Active Unsigned32,
|
|
extAlarm10Active Unsigned32,
|
|
hotgasHeatingAlarm Unsigned32,
|
|
eev1PressureSensorError Unsigned32,
|
|
eev1TemperatureSensorError Unsigned32,
|
|
eev1StepperMotorError Unsigned32,
|
|
eev2PressureSensorError Unsigned32,
|
|
eev2TemperatureSensorError Unsigned32,
|
|
eev2StepperMotorError Unsigned32,
|
|
waterflowFailure Unsigned32,
|
|
valveTestAlarm Unsigned32,
|
|
compr3Alarm Unsigned32,
|
|
compr4Alarm Unsigned32,
|
|
compr5Alarm Unsigned32,
|
|
compr6Alarm Unsigned32,
|
|
condenser1Alarm Unsigned32,
|
|
condenser2Alarm Unsigned32,
|
|
outsideAirTempTooHighAlarm Unsigned32,
|
|
outsideAirTempTooLowAlarm Unsigned32,
|
|
ioExtensionError Unsigned32,
|
|
waterOutTemperatooHighFlowWater Unsigned32,
|
|
waterOutTemperateTooLowFlowWater Unsigned32,
|
|
freezeAlarmEqualsDP2226 Unsigned32,
|
|
unit1Failure Unsigned32,
|
|
unit2Failure Unsigned32,
|
|
transmissionFailure Unsigned32,
|
|
controllerFailure Unsigned32,
|
|
reheatFailure Unsigned32,
|
|
roomHighPressureAlarm Unsigned32,
|
|
filter1Alarm Unsigned32,
|
|
filter2Alarm Unsigned32,
|
|
filter3Alarm Unsigned32,
|
|
rC1CircuitBreakerTripped Unsigned32,
|
|
rC2CircuitBreakerTripped Unsigned32,
|
|
fan1Blocked Unsigned32,
|
|
fan2Blocked Unsigned32,
|
|
powerFailure Unsigned32,
|
|
compressor1MotorProtection Unsigned32,
|
|
compressor2MotorProtection Unsigned32,
|
|
intrusionAlarm Unsigned32,
|
|
condensorFan1Blocked Unsigned32,
|
|
condensorFan2Blocked Unsigned32,
|
|
internalTemperatureProbe Unsigned32,
|
|
externalTemperatureProbe Unsigned32,
|
|
condensorTemperatureProbe Unsigned32,
|
|
supplyTemperatureProbe1 Unsigned32,
|
|
supplyTemperatureProbe2 Unsigned32,
|
|
moveableCoilAlarm Unsigned32,
|
|
fan1ThermalMotorectionTriggered Unsigned32,
|
|
externalFilterAlarm Unsigned32,
|
|
waterTempInlet1TooLowAlarm Unsigned32,
|
|
waterTempInlet1TooHighAlarm Unsigned32,
|
|
waterTempOutlet1TooLowAlarm Unsigned32,
|
|
waterTempOutlet1TooHighAlarm Unsigned32,
|
|
waterTempInlet2TooLowAlarm Unsigned32,
|
|
waterTempInlet2TooHighAlarm Unsigned32,
|
|
waterTempOutlet2TooLowAlarm Unsigned32,
|
|
waterTempOutlet2TooHighAlarm Unsigned32,
|
|
eev1ReliabilityAlarmCarelEVD Unsigned32,
|
|
eev2ReliabilityAlarmCarelEVD Unsigned32,
|
|
fan3Blocked Unsigned32,
|
|
fan4Blocked Unsigned32,
|
|
fan5Blocked Unsigned32,
|
|
fan6Blocked Unsigned32,
|
|
fan2ThermalMotorectionTriggered Unsigned32,
|
|
fan3ThermalMotorectionTriggered Unsigned32,
|
|
waterflowMaximumExceeded Unsigned32,
|
|
supplyTemperatureProbe3 Unsigned32,
|
|
returnTemperatureProbe1 Unsigned32,
|
|
returnTemperatureProbe2 Unsigned32,
|
|
returnTemperatureProbe3 Unsigned32,
|
|
inverterGeneralAlarm Unsigned32,
|
|
extensionBoardAlarm Unsigned32,
|
|
inverterOffline Unsigned32,
|
|
humidifier1ThermicFailure Unsigned32,
|
|
condensateWaterLevelAlarm Unsigned32,
|
|
outdoorUnitAlarm Unsigned32,
|
|
outdoorUnitCommunicationError Unsigned32,
|
|
minimumTemperatureAlarm Unsigned32,
|
|
maximumTemperatureAlarm Unsigned32,
|
|
stateThatShutOfflopAlarmsUPCDP15 Unsigned32,
|
|
probeBrokenAnalogInputB3UPCDP18 Unsigned32,
|
|
probeBrokenAnalogInputB4UPCDP19 Unsigned32,
|
|
probeBrokenAnalogInputB5UPCDP20 Unsigned32,
|
|
probeBrokenAnalogInputB6UPCDP21 Unsigned32,
|
|
maximumDischargePressureUPCDP23 Unsigned32,
|
|
minimumSuctionPressureUPCDP24 Unsigned32,
|
|
dischargeTemperatureAlarmUPCDP25 Unsigned32,
|
|
pressureDifferennMinimumUPCDP26 Unsigned32,
|
|
compressorFailsToStartUPCDP27 Unsigned32,
|
|
compressorExceedlopLimitsUPCDP28 Unsigned32,
|
|
lowSuperHeatAlarmEeValveUPCDP29 Unsigned32,
|
|
mopAlarmEeValveUPCDP30 Unsigned32,
|
|
lowSuctionTemperrmEeValveUPCDP31 Unsigned32,
|
|
evdEvoEvotunesAlarmUPCDP32 Unsigned32,
|
|
evdEvoRegulationctionTempUPCDP33 Unsigned32,
|
|
evdEvoSystemAlarobeErrorUPCDP34 Unsigned32,
|
|
generalInverterAlarmUPCDP35 Unsigned32,
|
|
communicationLosInverterUPCDP36 Unsigned32,
|
|
communicationLosithIccController Unsigned32,
|
|
inverterModelNotmpressorUPCDP44 Unsigned32,
|
|
fCBCommonAlarm Unsigned32,
|
|
alarmComfortUnit1 Unsigned32,
|
|
alarmComfortUnit2 Unsigned32,
|
|
reheat1Failure Unsigned32,
|
|
humidificationFailure Unsigned32,
|
|
aiflowFailure Unsigned32,
|
|
filterClogged Unsigned32,
|
|
auxAlarm1 Unsigned32,
|
|
fireSmokeDetectorTriggered Unsigned32,
|
|
auxAlarm2 Unsigned32,
|
|
auxAlarm3 Unsigned32,
|
|
roomAirTemperatureTooHighAlarm Unsigned32,
|
|
roomAirHumidityTooHighAlarm Unsigned32,
|
|
badWorkingComfortUnit1 Unsigned32,
|
|
badWorkingComfortUnit2 Unsigned32,
|
|
roomAirTempTooLow Unsigned32,
|
|
roomAirHumidityTooLow Unsigned32,
|
|
fireSmokeDetectorAlarm Unsigned32,
|
|
fCBSensorFailure Unsigned32,
|
|
fCBControllerFailure Unsigned32,
|
|
fCBIOBoardTransmissionFailure Unsigned32,
|
|
maxDeltaPExceeded Unsigned32,
|
|
condensorFanTherectionTriggered Unsigned32,
|
|
compressorCabinetTempTooHigh Unsigned32,
|
|
electricCabinetTempTooHigh Unsigned32,
|
|
protectionDeviceCompressor1 Unsigned32,
|
|
protectionDeviceCompressor2 Unsigned32,
|
|
protectionDeviceCompressor3 Unsigned32,
|
|
protectionDeviceCompressor4 Unsigned32,
|
|
protectionDeviceCompressor5 Unsigned32,
|
|
protectionDeviceCompressor6 Unsigned32,
|
|
alarmStateThatShtIncludedUPCDP37 Unsigned32,
|
|
bmsOfflineHeartBitFailsUPCDP40 Unsigned32,
|
|
globalGeneralAlarmUPCDP45 Unsigned32,
|
|
deltaPLargerAlloeStartUpUPCDP47 Unsigned32,
|
|
dpStartDisableAlarmUPCDP49 Unsigned32,
|
|
minOilLevelComp1 Unsigned32,
|
|
minOilLevelComp2 Unsigned32,
|
|
minOilLevelComp3 Unsigned32,
|
|
minOilLevelComp4 Unsigned32,
|
|
minOilLevelComp5 Unsigned32,
|
|
minOilLevelComp6 Unsigned32,
|
|
powerSwitchComp1 Unsigned32,
|
|
powerSwitchComp2 Unsigned32,
|
|
powerSwitchComp3 Unsigned32,
|
|
powerSwitchComp4 Unsigned32,
|
|
powerSwitchComp5 Unsigned32,
|
|
powerSwitchComp6 Unsigned32,
|
|
envelopeLeftComp1 Unsigned32,
|
|
envelopeLeftComp2 Unsigned32,
|
|
envelopeLeftComp3 Unsigned32,
|
|
envelopeLeftComp4 Unsigned32,
|
|
envelopeLeftComp5 Unsigned32,
|
|
envelopeLeftComp6 Unsigned32,
|
|
freecoolFailedInrmediateTempHigh Unsigned32,
|
|
supplyAirPressureTooHighAlarm Unsigned32,
|
|
supplyAirPressureTooLowAlarm Unsigned32,
|
|
waterflowFailurecuitCoolingWater Unsigned32,
|
|
externalUnit1Alarm Unsigned32,
|
|
fCValveFeedbackAlarm Unsigned32,
|
|
prealarmSupplyAiureTooHighAlarm Unsigned32,
|
|
prealarmSupplyAissureTooLowAlarm Unsigned32,
|
|
frostCirculation Unsigned32,
|
|
phaseFailure1 Unsigned32,
|
|
phaseFailure2 Unsigned32,
|
|
phaseFailure3 Unsigned32,
|
|
phaseFailure4 Unsigned32,
|
|
louver1 Unsigned32,
|
|
louver2 Unsigned32,
|
|
louver3 Unsigned32,
|
|
fan4Alarm Unsigned32,
|
|
fan4FilterAlarm Unsigned32,
|
|
externalUnit2Alarm Unsigned32
|
|
}
|
|
|
|
commonAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"common alarm"
|
|
::= { unitAlarmsEntry 1010 }
|
|
|
|
airflow1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"airflow 1"
|
|
::= { unitAlarmsEntry 8500 }
|
|
|
|
airflow2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"airflow 2"
|
|
::= { unitAlarmsEntry 8501 }
|
|
|
|
airflow3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"airflow 3"
|
|
::= { unitAlarmsEntry 8502 }
|
|
|
|
highpressure1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"highpressure 1"
|
|
::= { unitAlarmsEntry 8503 }
|
|
|
|
highpressure2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"highpressure 2"
|
|
::= { unitAlarmsEntry 8504 }
|
|
|
|
waterDetector OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water detector"
|
|
::= { unitAlarmsEntry 8505 }
|
|
|
|
phasecheck OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Phasecheck"
|
|
::= { unitAlarmsEntry 8506 }
|
|
|
|
fireSmoke OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fire/smoke"
|
|
::= { unitAlarmsEntry 8507 }
|
|
|
|
returnAirTempTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"return air temp. too high alarm"
|
|
::= { unitAlarmsEntry 8508 }
|
|
|
|
returnAirHumidTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"return air humid. too high alarm"
|
|
::= { unitAlarmsEntry 8509 }
|
|
|
|
supplyAirTempTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply air temp. too high alarm"
|
|
::= { unitAlarmsEntry 8510 }
|
|
|
|
supplyAirHumidTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply air humid. too high alarm"
|
|
::= { unitAlarmsEntry 8511 }
|
|
|
|
waterTempTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water temp. too high alarm"
|
|
::= { unitAlarmsEntry 8512 }
|
|
|
|
returnAirTempTooLowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"return air temp. too low alarm"
|
|
::= { unitAlarmsEntry 8513 }
|
|
|
|
returnAirHumidTooLowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"return air humid. too low alarm"
|
|
::= { unitAlarmsEntry 8514 }
|
|
|
|
supplyAirTempTooLowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply air temp. too low alarm"
|
|
::= { unitAlarmsEntry 8515 }
|
|
|
|
supplyAirHumidTooLowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply air humid. too low alarm"
|
|
::= { unitAlarmsEntry 8516 }
|
|
|
|
waterTempTooLowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water temp. too low alarm"
|
|
::= { unitAlarmsEntry 8517 }
|
|
|
|
sensor1LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 1 limit alarm"
|
|
::= { unitAlarmsEntry 8518 }
|
|
|
|
sensor2LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 2 limit alarm"
|
|
::= { unitAlarmsEntry 8519 }
|
|
|
|
sensor3LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 3 limit alarm"
|
|
::= { unitAlarmsEntry 8520 }
|
|
|
|
sensor4LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 4 limit alarm"
|
|
::= { unitAlarmsEntry 8521 }
|
|
|
|
sensor5LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 5 limit alarm"
|
|
::= { unitAlarmsEntry 8522 }
|
|
|
|
sensor6LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 6 limit alarm"
|
|
::= { unitAlarmsEntry 8523 }
|
|
|
|
sensor7LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 7 limit alarm"
|
|
::= { unitAlarmsEntry 8524 }
|
|
|
|
sensor8LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 8 limit alarm"
|
|
::= { unitAlarmsEntry 8525 }
|
|
|
|
sensor9LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 9 limit alarm"
|
|
::= { unitAlarmsEntry 8526 }
|
|
|
|
sensor10LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 10 limit alarm"
|
|
::= { unitAlarmsEntry 8527 }
|
|
|
|
sensor11LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 11 limit alarm"
|
|
::= { unitAlarmsEntry 8528 }
|
|
|
|
sensor12LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 12 limit alarm"
|
|
::= { unitAlarmsEntry 8529 }
|
|
|
|
sensor13LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 13 limit alarm"
|
|
::= { unitAlarmsEntry 8530 }
|
|
|
|
sensor14LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 14 limit alarm"
|
|
::= { unitAlarmsEntry 8531 }
|
|
|
|
sensor15LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 15 limit alarm"
|
|
::= { unitAlarmsEntry 8532 }
|
|
|
|
sensor16LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 16 limit alarm"
|
|
::= { unitAlarmsEntry 8533 }
|
|
|
|
sensor17LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 17 limit alarm"
|
|
::= { unitAlarmsEntry 8534 }
|
|
|
|
sensor18LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 18 limit alarm"
|
|
::= { unitAlarmsEntry 8535 }
|
|
|
|
sensor19LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 19 limit alarm"
|
|
::= { unitAlarmsEntry 8536 }
|
|
|
|
sensor20LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 20 limit alarm"
|
|
::= { unitAlarmsEntry 8537 }
|
|
|
|
sensor21LimitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 21 limit alarm"
|
|
::= { unitAlarmsEntry 8538 }
|
|
|
|
sensor1DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 1 defect alarm"
|
|
::= { unitAlarmsEntry 8539 }
|
|
|
|
sensor2DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 2 defect alarm"
|
|
::= { unitAlarmsEntry 8540 }
|
|
|
|
sensor3DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 3 defect alarm"
|
|
::= { unitAlarmsEntry 8541 }
|
|
|
|
sensor4DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 4 defect alarm"
|
|
::= { unitAlarmsEntry 8542 }
|
|
|
|
sensor5DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 5 defect alarm"
|
|
::= { unitAlarmsEntry 8543 }
|
|
|
|
sensor6DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 6 defect alarm"
|
|
::= { unitAlarmsEntry 8544 }
|
|
|
|
sensor7DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 7 defect alarm"
|
|
::= { unitAlarmsEntry 8545 }
|
|
|
|
sensor8DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 8 defect alarm"
|
|
::= { unitAlarmsEntry 8546 }
|
|
|
|
sensor9DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 9 defect alarm"
|
|
::= { unitAlarmsEntry 8547 }
|
|
|
|
sensor10DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 10 defect alarm"
|
|
::= { unitAlarmsEntry 8548 }
|
|
|
|
sensor11DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 11 defect alarm"
|
|
::= { unitAlarmsEntry 8549 }
|
|
|
|
sensor12DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 12 defect alarm"
|
|
::= { unitAlarmsEntry 8550 }
|
|
|
|
sensor13DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 13 defect alarm"
|
|
::= { unitAlarmsEntry 8551 }
|
|
|
|
sensor14DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 14 defect alarm"
|
|
::= { unitAlarmsEntry 8552 }
|
|
|
|
sensor15DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 15 defect alarm"
|
|
::= { unitAlarmsEntry 8553 }
|
|
|
|
sensor16DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 16 defect alarm"
|
|
::= { unitAlarmsEntry 8554 }
|
|
|
|
sensor17DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 17 defect alarm"
|
|
::= { unitAlarmsEntry 8555 }
|
|
|
|
sensor18DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 18 defect alarm"
|
|
::= { unitAlarmsEntry 8556 }
|
|
|
|
sensor19DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 19 defect alarm"
|
|
::= { unitAlarmsEntry 8557 }
|
|
|
|
sensor20DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 20 defect alarm"
|
|
::= { unitAlarmsEntry 8558 }
|
|
|
|
sensor21DefectAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"sensor 21 defect alarm"
|
|
::= { unitAlarmsEntry 8559 }
|
|
|
|
compr1Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 1 alarm"
|
|
::= { unitAlarmsEntry 8560 }
|
|
|
|
compr2Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 2 alarm"
|
|
::= { unitAlarmsEntry 8561 }
|
|
|
|
lowPressAlarm1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"low press. Alarm 1"
|
|
::= { unitAlarmsEntry 8562 }
|
|
|
|
lowPressAlarm2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"low press. Alarm 2"
|
|
::= { unitAlarmsEntry 8563 }
|
|
|
|
elecHeating1Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating1 alarm"
|
|
::= { unitAlarmsEntry 8564 }
|
|
|
|
elecHeating2Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating2 alarm"
|
|
::= { unitAlarmsEntry 8565 }
|
|
|
|
elecHeating3Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating3 alarm"
|
|
::= { unitAlarmsEntry 8566 }
|
|
|
|
elecHeating4Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"elec.-heating4 alarm"
|
|
::= { unitAlarmsEntry 8567 }
|
|
|
|
drycooler1Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler1 alarm"
|
|
::= { unitAlarmsEntry 8568 }
|
|
|
|
drycooler2Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler2 alarm"
|
|
::= { unitAlarmsEntry 8569 }
|
|
|
|
drycooler3Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler3 alarm"
|
|
::= { unitAlarmsEntry 8570 }
|
|
|
|
drycooler4Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"drycooler4 alarm"
|
|
::= { unitAlarmsEntry 8571 }
|
|
|
|
pump1Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump1 alarm"
|
|
::= { unitAlarmsEntry 8572 }
|
|
|
|
pump2Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump2 alarm"
|
|
::= { unitAlarmsEntry 8573 }
|
|
|
|
pump3Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump3 alarm"
|
|
::= { unitAlarmsEntry 8574 }
|
|
|
|
pump4Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pump4 alarm"
|
|
::= { unitAlarmsEntry 8575 }
|
|
|
|
humidifier1Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 alarm"
|
|
::= { unitAlarmsEntry 8576 }
|
|
|
|
humidifier2Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 alarm"
|
|
::= { unitAlarmsEntry 8577 }
|
|
|
|
humidifier3Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 alarm"
|
|
::= { unitAlarmsEntry 8578 }
|
|
|
|
humidifier1Alarm5uS OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 alarm 5uS"
|
|
::= { unitAlarmsEntry 8579 }
|
|
|
|
humidifier2Alarm5uS OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 alarm 5uS"
|
|
::= { unitAlarmsEntry 8580 }
|
|
|
|
humidifier3Alarm5uS OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 alarm 5uS"
|
|
::= { unitAlarmsEntry 8581 }
|
|
|
|
humidifier1Alarm20uS OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier1 alarm 20uS"
|
|
::= { unitAlarmsEntry 8582 }
|
|
|
|
humidifier2Alarm20uS OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier2 alarm 20uS"
|
|
::= { unitAlarmsEntry 8583 }
|
|
|
|
humidifier3Alarm20uS OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier3 alarm 20uS"
|
|
::= { unitAlarmsEntry 8584 }
|
|
|
|
fan1Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 alarm"
|
|
::= { unitAlarmsEntry 8585 }
|
|
|
|
fan2Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 alarm"
|
|
::= { unitAlarmsEntry 8586 }
|
|
|
|
fan3Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 alarm"
|
|
::= { unitAlarmsEntry 8587 }
|
|
|
|
fan1FilterAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 filter alarm"
|
|
::= { unitAlarmsEntry 8588 }
|
|
|
|
fan2FilterAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 filter alarm"
|
|
::= { unitAlarmsEntry 8589 }
|
|
|
|
fan3FilterAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 filter alarm"
|
|
::= { unitAlarmsEntry 8590 }
|
|
|
|
extAlarm1Active OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. Alarm 1 active"
|
|
::= { unitAlarmsEntry 8591 }
|
|
|
|
extAlarm2Active OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. Alarm 2 active"
|
|
::= { unitAlarmsEntry 8592 }
|
|
|
|
extAlarm3Active OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. Alarm 3 active"
|
|
::= { unitAlarmsEntry 8593 }
|
|
|
|
extAlarm4Active OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. Alarm 4 active"
|
|
::= { unitAlarmsEntry 8594 }
|
|
|
|
extAlarm5Active OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. Alarm 5 active"
|
|
::= { unitAlarmsEntry 8595 }
|
|
|
|
extAlarm6Active OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. Alarm 6 active"
|
|
::= { unitAlarmsEntry 8596 }
|
|
|
|
extAlarm7Active OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. Alarm 7 active"
|
|
::= { unitAlarmsEntry 8597 }
|
|
|
|
extAlarm8Active OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. Alarm 8 active"
|
|
::= { unitAlarmsEntry 8598 }
|
|
|
|
extAlarm9Active OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. Alarm 9 active"
|
|
::= { unitAlarmsEntry 8599 }
|
|
|
|
extAlarm10Active OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"ext. Alarm 10 active"
|
|
::= { unitAlarmsEntry 8600 }
|
|
|
|
hotgasHeatingAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"hotgas-heating alarm"
|
|
::= { unitAlarmsEntry 8601 }
|
|
|
|
eev1PressureSensorError OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 pressure sensor error"
|
|
::= { unitAlarmsEntry 8602 }
|
|
|
|
eev1TemperatureSensorError OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 temperature sensor error"
|
|
::= { unitAlarmsEntry 8603 }
|
|
|
|
eev1StepperMotorError OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 stepper motor error"
|
|
::= { unitAlarmsEntry 8604 }
|
|
|
|
eev2PressureSensorError OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 pressure sensor error"
|
|
::= { unitAlarmsEntry 8605 }
|
|
|
|
eev2TemperatureSensorError OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 temperature sensor error"
|
|
::= { unitAlarmsEntry 8606 }
|
|
|
|
eev2StepperMotorError OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 stepper motor error"
|
|
::= { unitAlarmsEntry 8607 }
|
|
|
|
waterflowFailure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"waterflow failure"
|
|
::= { unitAlarmsEntry 8608 }
|
|
|
|
valveTestAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Valve test alarm"
|
|
::= { unitAlarmsEntry 8609 }
|
|
|
|
compr3Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 3 alarm"
|
|
::= { unitAlarmsEntry 8610 }
|
|
|
|
compr4Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 4 alarm"
|
|
::= { unitAlarmsEntry 8611 }
|
|
|
|
compr5Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 5 alarm"
|
|
::= { unitAlarmsEntry 8612 }
|
|
|
|
compr6Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compr. 6 alarm"
|
|
::= { unitAlarmsEntry 8613 }
|
|
|
|
condenser1Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"condenser 1 alarm"
|
|
::= { unitAlarmsEntry 8614 }
|
|
|
|
condenser2Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"condenser 2 alarm"
|
|
::= { unitAlarmsEntry 8615 }
|
|
|
|
outsideAirTempTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"outside air temp too high alarm"
|
|
::= { unitAlarmsEntry 8616 }
|
|
|
|
outsideAirTempTooLowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"outside air temp too low alarm"
|
|
::= { unitAlarmsEntry 8617 }
|
|
|
|
ioExtensionError OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"io extension error"
|
|
::= { unitAlarmsEntry 8618 }
|
|
|
|
waterOutTemperatooHighFlowWater OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water out temperature too high (flow water)"
|
|
::= { unitAlarmsEntry 8619 }
|
|
|
|
waterOutTemperateTooLowFlowWater OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water out temperature too low (flow water)"
|
|
::= { unitAlarmsEntry 8620 }
|
|
|
|
freezeAlarmEqualsDP2226 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freeze alarm (equals DP2226)"
|
|
::= { unitAlarmsEntry 8621 }
|
|
|
|
unit1Failure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit 1 failure"
|
|
::= { unitAlarmsEntry 8622 }
|
|
|
|
unit2Failure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"unit 2 failure"
|
|
::= { unitAlarmsEntry 8623 }
|
|
|
|
transmissionFailure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"transmission failure"
|
|
::= { unitAlarmsEntry 8624 }
|
|
|
|
controllerFailure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"controller failure"
|
|
::= { unitAlarmsEntry 8625 }
|
|
|
|
reheatFailure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"reheat failure"
|
|
::= { unitAlarmsEntry 8626 }
|
|
|
|
roomHighPressureAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"room high pressure alarm"
|
|
::= { unitAlarmsEntry 8627 }
|
|
|
|
filter1Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"filter 1 alarm"
|
|
::= { unitAlarmsEntry 8628 }
|
|
|
|
filter2Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"filter 2 alarm"
|
|
::= { unitAlarmsEntry 8629 }
|
|
|
|
filter3Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"filter 3 alarm"
|
|
::= { unitAlarmsEntry 8630 }
|
|
|
|
rC1CircuitBreakerTripped OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"RC 1 circuit breaker tripped "
|
|
::= { unitAlarmsEntry 8631 }
|
|
|
|
rC2CircuitBreakerTripped OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"RC 2 circuit breaker tripped"
|
|
::= { unitAlarmsEntry 8632 }
|
|
|
|
fan1Blocked OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 blocked "
|
|
::= { unitAlarmsEntry 8633 }
|
|
|
|
fan2Blocked OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 blocked "
|
|
::= { unitAlarmsEntry 8634 }
|
|
|
|
powerFailure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"power failure"
|
|
::= { unitAlarmsEntry 8635 }
|
|
|
|
compressor1MotorProtection OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 1 motor protection"
|
|
::= { unitAlarmsEntry 8636 }
|
|
|
|
compressor2MotorProtection OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor 2 motor protection"
|
|
::= { unitAlarmsEntry 8637 }
|
|
|
|
intrusionAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"intrusion alarm"
|
|
::= { unitAlarmsEntry 8638 }
|
|
|
|
condensorFan1Blocked OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"condensor fan 1 blocked "
|
|
::= { unitAlarmsEntry 8639 }
|
|
|
|
condensorFan2Blocked OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"condensor fan 2 blocked "
|
|
::= { unitAlarmsEntry 8640 }
|
|
|
|
internalTemperatureProbe OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"internal temperature probe"
|
|
::= { unitAlarmsEntry 8641 }
|
|
|
|
externalTemperatureProbe OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"external temperature probe"
|
|
::= { unitAlarmsEntry 8642 }
|
|
|
|
condensorTemperatureProbe OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"condensor temperature probe"
|
|
::= { unitAlarmsEntry 8643 }
|
|
|
|
supplyTemperatureProbe1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply temperature probe 1"
|
|
::= { unitAlarmsEntry 8644 }
|
|
|
|
supplyTemperatureProbe2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply temperature probe 2"
|
|
::= { unitAlarmsEntry 8645 }
|
|
|
|
moveableCoilAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Moveable coil alarm"
|
|
::= { unitAlarmsEntry 8646 }
|
|
|
|
fan1ThermalMotorectionTriggered OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan1 thermal motor protection triggered"
|
|
::= { unitAlarmsEntry 8647 }
|
|
|
|
externalFilterAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"External Filter alarm"
|
|
::= { unitAlarmsEntry 8648 }
|
|
|
|
waterTempInlet1TooLowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water temp. inlet 1 too low alarm"
|
|
::= { unitAlarmsEntry 8649 }
|
|
|
|
waterTempInlet1TooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water temp. inlet 1 too high alarm"
|
|
::= { unitAlarmsEntry 8650 }
|
|
|
|
waterTempOutlet1TooLowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water temp. outlet 1 too low alarm"
|
|
::= { unitAlarmsEntry 8651 }
|
|
|
|
waterTempOutlet1TooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water temp. outlet 1 too high alarm"
|
|
::= { unitAlarmsEntry 8652 }
|
|
|
|
waterTempInlet2TooLowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water temp. inlet 2 too low alarm"
|
|
::= { unitAlarmsEntry 8653 }
|
|
|
|
waterTempInlet2TooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water temp. inlet 2 too high alarm"
|
|
::= { unitAlarmsEntry 8654 }
|
|
|
|
waterTempOutlet2TooLowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water temp. outlet 2 too low alarm"
|
|
::= { unitAlarmsEntry 8655 }
|
|
|
|
waterTempOutlet2TooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"water temp. outlet 2 too high alarm"
|
|
::= { unitAlarmsEntry 8656 }
|
|
|
|
eev1ReliabilityAlarmCarelEVD OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev1 reliability alarm (Carel EVD)"
|
|
::= { unitAlarmsEntry 8657 }
|
|
|
|
eev2ReliabilityAlarmCarelEVD OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"eev2 reliability alarm (Carel EVD)"
|
|
::= { unitAlarmsEntry 8658 }
|
|
|
|
fan3Blocked OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 blocked "
|
|
::= { unitAlarmsEntry 8659 }
|
|
|
|
fan4Blocked OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan4 blocked "
|
|
::= { unitAlarmsEntry 8660 }
|
|
|
|
fan5Blocked OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan5 blocked "
|
|
::= { unitAlarmsEntry 8661 }
|
|
|
|
fan6Blocked OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan6 blocked "
|
|
::= { unitAlarmsEntry 8662 }
|
|
|
|
fan2ThermalMotorectionTriggered OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan2 thermal motor protection triggered"
|
|
::= { unitAlarmsEntry 8663 }
|
|
|
|
fan3ThermalMotorectionTriggered OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan3 thermal motor protection triggered"
|
|
::= { unitAlarmsEntry 8664 }
|
|
|
|
waterflowMaximumExceeded OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"waterflow maximum exceeded"
|
|
::= { unitAlarmsEntry 8665 }
|
|
|
|
supplyTemperatureProbe3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply temperature probe 3"
|
|
::= { unitAlarmsEntry 8666 }
|
|
|
|
returnTemperatureProbe1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"return temperature probe 1"
|
|
::= { unitAlarmsEntry 8667 }
|
|
|
|
returnTemperatureProbe2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"return temperature probe 2"
|
|
::= { unitAlarmsEntry 8668 }
|
|
|
|
returnTemperatureProbe3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"return temperature probe 3"
|
|
::= { unitAlarmsEntry 8669 }
|
|
|
|
inverterGeneralAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"inverter general alarm"
|
|
::= { unitAlarmsEntry 8670 }
|
|
|
|
extensionBoardAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"extension board alarm"
|
|
::= { unitAlarmsEntry 8671 }
|
|
|
|
inverterOffline OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"inverter offline "
|
|
::= { unitAlarmsEntry 8672 }
|
|
|
|
humidifier1ThermicFailure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidifier 1 thermic failure"
|
|
::= { unitAlarmsEntry 8673 }
|
|
|
|
condensateWaterLevelAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"condensate water level alarm"
|
|
::= { unitAlarmsEntry 8674 }
|
|
|
|
outdoorUnitAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"outdoor unit alarm"
|
|
::= { unitAlarmsEntry 8675 }
|
|
|
|
outdoorUnitCommunicationError OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"outdoor unit communication error"
|
|
::= { unitAlarmsEntry 8676 }
|
|
|
|
minimumTemperatureAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"minimum temperature alarm"
|
|
::= { unitAlarmsEntry 8677 }
|
|
|
|
maximumTemperatureAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"maximum temperature alarm"
|
|
::= { unitAlarmsEntry 8678 }
|
|
|
|
stateThatShutOfflopAlarmsUPCDP15 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"state that shut off compressor included envelop alarms, uPC DP 15"
|
|
::= { unitAlarmsEntry 8679 }
|
|
|
|
probeBrokenAnalogInputB3UPCDP18 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"probe broken analog input b3, uPC DP 18"
|
|
::= { unitAlarmsEntry 8680 }
|
|
|
|
probeBrokenAnalogInputB4UPCDP19 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"probe broken analog input b4, uPC DP 19"
|
|
::= { unitAlarmsEntry 8681 }
|
|
|
|
probeBrokenAnalogInputB5UPCDP20 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"probe broken analog input b5, uPC DP 20"
|
|
::= { unitAlarmsEntry 8682 }
|
|
|
|
probeBrokenAnalogInputB6UPCDP21 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"probe broken analog input b6, uPC DP 21"
|
|
::= { unitAlarmsEntry 8683 }
|
|
|
|
maximumDischargePressureUPCDP23 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"maximum discharge pressure, uPC DP 23"
|
|
::= { unitAlarmsEntry 8684 }
|
|
|
|
minimumSuctionPressureUPCDP24 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"minimum suction pressure, uPC DP 24"
|
|
::= { unitAlarmsEntry 8685 }
|
|
|
|
dischargeTemperatureAlarmUPCDP25 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"discharge temperature alarm, uPC DP 25"
|
|
::= { unitAlarmsEntry 8686 }
|
|
|
|
pressureDifferennMinimumUPCDP26 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"pressure difference lower than minimum, uPC DP 26"
|
|
::= { unitAlarmsEntry 8687 }
|
|
|
|
compressorFailsToStartUPCDP27 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor fails to start, uPC DP 27"
|
|
::= { unitAlarmsEntry 8688 }
|
|
|
|
compressorExceedlopLimitsUPCDP28 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor exceeds max time allowed working out of its envelop limits, uPC DP 28"
|
|
::= { unitAlarmsEntry 8689 }
|
|
|
|
lowSuperHeatAlarmEeValveUPCDP29 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"low super heat alarm ee valve, uPC DP 29"
|
|
::= { unitAlarmsEntry 8690 }
|
|
|
|
mopAlarmEeValveUPCDP30 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"mop alarm ee valve, uPC DP 30"
|
|
::= { unitAlarmsEntry 8691 }
|
|
|
|
lowSuctionTemperrmEeValveUPCDP31 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"low suction temperature alarm ee valve, uPC DP 31"
|
|
::= { unitAlarmsEntry 8692 }
|
|
|
|
evdEvoEvotunesAlarmUPCDP32 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"evd evo evotunes alarm, uPC DP 32"
|
|
::= { unitAlarmsEntry 8693 }
|
|
|
|
evdEvoRegulationctionTempUPCDP33 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"evd evo regulation alarms lop mop low sh low suction temp, uPC DP 33"
|
|
::= { unitAlarmsEntry 8694 }
|
|
|
|
evdEvoSystemAlarobeErrorUPCDP34 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"evd evo system alarms probe error, uPC DP 34"
|
|
::= { unitAlarmsEntry 8695 }
|
|
|
|
generalInverterAlarmUPCDP35 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"general inverter alarm, uPC DP 35"
|
|
::= { unitAlarmsEntry 8696 }
|
|
|
|
communicationLosInverterUPCDP36 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"communication loss with power inverter, uPC DP 36"
|
|
::= { unitAlarmsEntry 8697 }
|
|
|
|
communicationLosithIccController OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Communication loss with icc controller"
|
|
::= { unitAlarmsEntry 8698 }
|
|
|
|
inverterModelNotmpressorUPCDP44 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"inverter model not compatible with selected compressor, uPC DP 44"
|
|
::= { unitAlarmsEntry 8699 }
|
|
|
|
fCBCommonAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FCB common alarm"
|
|
::= { unitAlarmsEntry 10224 }
|
|
|
|
alarmComfortUnit1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"alarm comfort unit 1"
|
|
::= { unitAlarmsEntry 10225 }
|
|
|
|
alarmComfortUnit2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"alarm comfort unit 2"
|
|
::= { unitAlarmsEntry 10226 }
|
|
|
|
reheat1Failure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Reheat 1 failure"
|
|
::= { unitAlarmsEntry 10234 }
|
|
|
|
humidificationFailure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"humidification failure"
|
|
::= { unitAlarmsEntry 10235 }
|
|
|
|
aiflowFailure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"aiflow failure"
|
|
::= { unitAlarmsEntry 10236 }
|
|
|
|
filterClogged OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"filter clogged"
|
|
::= { unitAlarmsEntry 10237 }
|
|
|
|
auxAlarm1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"aux alarm 1"
|
|
::= { unitAlarmsEntry 10238 }
|
|
|
|
fireSmokeDetectorTriggered OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fire / smoke detector triggered"
|
|
::= { unitAlarmsEntry 10239 }
|
|
|
|
auxAlarm2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"aux alarm 2"
|
|
::= { unitAlarmsEntry 10246 }
|
|
|
|
auxAlarm3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"aux alarm 3"
|
|
::= { unitAlarmsEntry 10247 }
|
|
|
|
roomAirTemperatureTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"room air temperature too high alarm"
|
|
::= { unitAlarmsEntry 10248 }
|
|
|
|
roomAirHumidityTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"room air humidity too high alarm"
|
|
::= { unitAlarmsEntry 10249 }
|
|
|
|
badWorkingComfortUnit1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Bad working Comfort unit 1"
|
|
::= { unitAlarmsEntry 10250 }
|
|
|
|
badWorkingComfortUnit2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Bad working Comfort unit 2"
|
|
::= { unitAlarmsEntry 10251 }
|
|
|
|
roomAirTempTooLow OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Room air temp too low"
|
|
::= { unitAlarmsEntry 10252 }
|
|
|
|
roomAirHumidityTooLow OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Room air humidity too low "
|
|
::= { unitAlarmsEntry 10253 }
|
|
|
|
fireSmokeDetectorAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fire / smoke detector alarm"
|
|
::= { unitAlarmsEntry 10260 }
|
|
|
|
fCBSensorFailure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FCB sensor failure"
|
|
::= { unitAlarmsEntry 10261 }
|
|
|
|
fCBControllerFailure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FCB controller failure "
|
|
::= { unitAlarmsEntry 10262 }
|
|
|
|
fCBIOBoardTransmissionFailure OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FCB IO-board transmission failure"
|
|
::= { unitAlarmsEntry 10263 }
|
|
|
|
maxDeltaPExceeded OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"max. delta p exceeded "
|
|
::= { unitAlarmsEntry 14201 }
|
|
|
|
condensorFanTherectionTriggered OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"condensor fan thermal motor protection triggered"
|
|
::= { unitAlarmsEntry 14202 }
|
|
|
|
compressorCabinetTempTooHigh OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"compressor cabinet temp too high"
|
|
::= { unitAlarmsEntry 14203 }
|
|
|
|
electricCabinetTempTooHigh OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"electric cabinet temp too high"
|
|
::= { unitAlarmsEntry 14204 }
|
|
|
|
protectionDeviceCompressor1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"protection device compressor 1"
|
|
::= { unitAlarmsEntry 14205 }
|
|
|
|
protectionDeviceCompressor2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"protection device compressor 2"
|
|
::= { unitAlarmsEntry 14206 }
|
|
|
|
protectionDeviceCompressor3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"protection device compressor 3"
|
|
::= { unitAlarmsEntry 14207 }
|
|
|
|
protectionDeviceCompressor4 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"protection device compressor 4"
|
|
::= { unitAlarmsEntry 14208 }
|
|
|
|
protectionDeviceCompressor5 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"protection device compressor 5"
|
|
::= { unitAlarmsEntry 14209 }
|
|
|
|
protectionDeviceCompressor6 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"protection device compressor 6"
|
|
::= { unitAlarmsEntry 14210 }
|
|
|
|
alarmStateThatShtIncludedUPCDP37 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"alarm state that shut off compressor envelop alarms not included, uPC DP 37"
|
|
::= { unitAlarmsEntry 14211 }
|
|
|
|
bmsOfflineHeartBitFailsUPCDP40 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"bms offline heart bit fails, uPC DP 40"
|
|
::= { unitAlarmsEntry 14212 }
|
|
|
|
globalGeneralAlarmUPCDP45 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"global general alarm, uPC DP 45"
|
|
::= { unitAlarmsEntry 14213 }
|
|
|
|
deltaPLargerAlloeStartUpUPCDP47 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"delta p larger allowable start up, uPC DP 47"
|
|
::= { unitAlarmsEntry 14214 }
|
|
|
|
dpStartDisableAlarmUPCDP49 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"dp start disable alarm, uPC DP 49"
|
|
::= { unitAlarmsEntry 14215 }
|
|
|
|
minOilLevelComp1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"min. oil level comp. 1"
|
|
::= { unitAlarmsEntry 14216 }
|
|
|
|
minOilLevelComp2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"min. oil level comp. 2"
|
|
::= { unitAlarmsEntry 14217 }
|
|
|
|
minOilLevelComp3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"min. oil level comp. 3"
|
|
::= { unitAlarmsEntry 14218 }
|
|
|
|
minOilLevelComp4 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"min. oil level comp. 4"
|
|
::= { unitAlarmsEntry 14219 }
|
|
|
|
minOilLevelComp5 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"min. oil level comp. 5"
|
|
::= { unitAlarmsEntry 14220 }
|
|
|
|
minOilLevelComp6 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"min. oil level comp. 6"
|
|
::= { unitAlarmsEntry 14221 }
|
|
|
|
powerSwitchComp1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"power switch comp. 1"
|
|
::= { unitAlarmsEntry 14222 }
|
|
|
|
powerSwitchComp2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"power switch comp. 2"
|
|
::= { unitAlarmsEntry 14223 }
|
|
|
|
powerSwitchComp3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"power switch comp. 3"
|
|
::= { unitAlarmsEntry 14224 }
|
|
|
|
powerSwitchComp4 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"power switch comp. 4"
|
|
::= { unitAlarmsEntry 14225 }
|
|
|
|
powerSwitchComp5 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"power switch comp. 5"
|
|
::= { unitAlarmsEntry 14226 }
|
|
|
|
powerSwitchComp6 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"power switch comp. 6"
|
|
::= { unitAlarmsEntry 14227 }
|
|
|
|
envelopeLeftComp1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"envelope left comp. 1"
|
|
::= { unitAlarmsEntry 14228 }
|
|
|
|
envelopeLeftComp2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"envelope left comp. 2"
|
|
::= { unitAlarmsEntry 14229 }
|
|
|
|
envelopeLeftComp3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"envelope left comp. 3"
|
|
::= { unitAlarmsEntry 14230 }
|
|
|
|
envelopeLeftComp4 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"envelope left comp. 4"
|
|
::= { unitAlarmsEntry 14231 }
|
|
|
|
envelopeLeftComp5 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"envelope left comp. 5"
|
|
::= { unitAlarmsEntry 14232 }
|
|
|
|
envelopeLeftComp6 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"envelope left comp. 6"
|
|
::= { unitAlarmsEntry 14233 }
|
|
|
|
freecoolFailedInrmediateTempHigh OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"freecool failed (intermediate temp. high)"
|
|
::= { unitAlarmsEntry 14234 }
|
|
|
|
supplyAirPressureTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply air pressure too high alarm"
|
|
::= { unitAlarmsEntry 14235 }
|
|
|
|
supplyAirPressureTooLowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"supply air pressure too low alarm"
|
|
::= { unitAlarmsEntry 14236 }
|
|
|
|
waterflowFailurecuitCoolingWater OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"waterflow failure 2 (2nd water circuit, cooling water)"
|
|
::= { unitAlarmsEntry 14237 }
|
|
|
|
externalUnit1Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"external unit 1 alarm"
|
|
::= { unitAlarmsEntry 14238 }
|
|
|
|
fCValveFeedbackAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"FC valve feedback alarm"
|
|
::= { unitAlarmsEntry 14239 }
|
|
|
|
prealarmSupplyAiureTooHighAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"prealarm supply air pressure too high: alarm"
|
|
::= { unitAlarmsEntry 14240 }
|
|
|
|
prealarmSupplyAissureTooLowAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"prealarm supply air pressure too low: alarm"
|
|
::= { unitAlarmsEntry 14241 }
|
|
|
|
frostCirculation OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"frost circulation"
|
|
::= { unitAlarmsEntry 14242 }
|
|
|
|
phaseFailure1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Phase failure 1"
|
|
::= { unitAlarmsEntry 14243 }
|
|
|
|
phaseFailure2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Phase failure 2"
|
|
::= { unitAlarmsEntry 14244 }
|
|
|
|
phaseFailure3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Phase failure 3"
|
|
::= { unitAlarmsEntry 14245 }
|
|
|
|
phaseFailure4 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Phase failure 4"
|
|
::= { unitAlarmsEntry 14246 }
|
|
|
|
louver1 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver 1"
|
|
::= { unitAlarmsEntry 14247 }
|
|
|
|
louver2 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver 2"
|
|
::= { unitAlarmsEntry 14248 }
|
|
|
|
louver3 OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"louver 3"
|
|
::= { unitAlarmsEntry 14249 }
|
|
|
|
fan4Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan4 alarm"
|
|
::= { unitAlarmsEntry 14272 }
|
|
|
|
fan4FilterAlarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"fan4 filter alarm"
|
|
::= { unitAlarmsEntry 14273 }
|
|
|
|
externalUnit2Alarm OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"external unit 2 alarm"
|
|
::= { unitAlarmsEntry 14274 }
|
|
|
|
|
|
|
|
END
|