{}

Our Brands

Impact-Company-Logo-English Black-01-177x54

Schneider Electric USA Website

Welcome to our website.

Search FAQs

Calling LoadDataValue method from ST program

DISCLAIMER

The example below is intended to demonstrate one or more features or methods and is presented as a configuration example only. Schneider Electric assumes no liability for the use or application of this example or any portion thereof.


Below an example of Structured Text program that triggers the "LoadDataValue" method from a point:

PROGRAM LoadDataValueExample
(* First declare the method associated to the point you will load data to *)
METHOD
loadValue AT %M(.A2.Historic.LoadDataValue) : BYTE, DINT, DATE_AND_TIME, LREAL;
END_METHOD
(* variable declaration, in this example, local *)
VAR
Reason : BYTE;
Quality : DINT;
TimeStamp : DATE_AND_TIME;
Value : LREAL;
END_VAR
(* setting the values (in a real program, the values will come from other sources, like SQL or user inputs *)
Reason := 0;
Quality := 192;
TimeStamp := NOW(); (*remember that time must be in UTC *)
Value := 5.9;
(* trigger the method *)
loadValue(Reason, Quality, TimeStamp, Value);
;
END_PROGRAM

Schneider Electric USA

Explore more
Range:
Outdoor Temperature Sensors STO200
Explore more
Range:
Outdoor Temperature Sensors STO200
Users group

Discuss this topic with experts

Visit our Community for first-hand insights from experts and peers on this topic and more.