Calling LoadDataValue method from ST program
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
Publicado para: Schneider Electric Mexico


¿Necesitas ayuda?
Selector de productos
Encuentra rápida y fácilmente los productos y accesorios adecuados para tus aplicaciones.
Pedir presupuesto
Comienza tu consulta de ventas en línea y un experto se pondrá en contacto contigo.
¿Dónde comprar?
Encuentra fácilmente el distribuidor de Schneider Electric más cercano a ti.
Centro de ayuda
Encuentra recursos de soporte para todas tus necesidades en un solo lugar.