22 lines
517 B
Plaintext
22 lines
517 B
Plaintext
def get_paths():
|
|
return [
|
|
'[default]simulator/RTU/RTU1',
|
|
'[default]simulator/RTU/RTU2',
|
|
'[default]simulator/RTU/RTU3',
|
|
'[default]simulator/RTU/RTU4',
|
|
'[default]simulator/RTU/RTU5'
|
|
]
|
|
def get_config():
|
|
return {
|
|
'OAF':'/Outside Air Flow',
|
|
'RPP':'/Return Plenum Pressure',
|
|
'SAT':'/Supply Air Temperature',
|
|
'SAD':'/Supply Air Dewpoint',
|
|
'Alm':'/AlarmSummary/Highest Active Priority'
|
|
}
|
|
def get_destination():
|
|
return "[default]System/DataTables/RTU/Data"
|
|
|
|
def get_type():
|
|
return "Objects/Air/RTU"
|
|
|