DTGetTimeZone
Function Block - Read the Time Zone.
This function block is specific for PCMM2G only.
Inputs
Input |
Data Type |
Range |
Unit |
Default |
Description |
---|---|---|---|---|---|
Execute |
BOOL |
FALSE, TRUE |
N/A |
No default |
If TRUE, request to read the time zone. |
Outputs
Output |
Data Type |
Range |
Unit |
Description |
---|---|---|---|---|
Done |
BOOL |
FALSE, TRUE |
N/A |
If TRUE, the command completed successfully. |
Error |
BOOL |
FALSE, TRUE |
N/A |
If TRUE, an error has occurred. |
ErrorID |
DINT |
No range |
N/A |
Indicates the error if the Error output is set to TRUE. Error Codes
|
TimeZone |
STRING |
No range |
N/A |
The time zone the controller should use. |
Remarks
None
FBD Language Example
FFLD Language Example
IL Language Example
Not available.
ST Language Example
// read the configured time zone
Inst_DTGetTimeZone( bGetDTZone );
if Inst_DTGetTimeZone.Done then
bGetDTZone := false;
if NOT Inst_DTGetTimeZone.Error then
TimeZone := Inst_DTGetTimeZone.TimeZone;
else
ErrorID := Inst_DTGetTimeZone.ErrorID;
end_if;
end_if;
See Also