Differences

This shows you the differences between two versions of the page.

Link to this comparison view

en:software:qview:qview_6:qcl_library:oa10blinkout [2017/01/23 14:55] – created qem103en:software:qview:qview_6:qcl_library:oa10blinkout [2019/08/29 17:01] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== OA10BlinkOut ======
 +
 +**O = **//Out//
 +
 +**A = **//Action//
 +
 +The OA10BlinkOut function __execute a blink on the output__ with equal on and off time and adjustable.
 +
 +===== IMPLEMENTATION =====
 +
 +**OA10BlinkOut (output, timeLamp)**
 +
 +Parameters:
 +
 +^IN/OUT^VARIABLE TYPE^EXAMPLE NAME^DIM^^
 +|  IN  |  OUTPUT\\ GLOBAL  \\ SYSTEM  |  output  |  F  |Variable or flashing output|
 +|  OUT  |  CONST\\ SYSTEM  |  timeLamp  |  L  |Blink On and Off time (s/1000)|
 +
 +=== Example ===
 +
 +Enables the output blinking when this flag "gfAbilLamp" is placed in 1.
 +
 +<code QCL>
 +IF gfAbilLamp
 + timeLamp = 1000 ;Set the time to 1 sec
 + OA10BlinkOut (output, timeLamp)
 +ENDIF
 +</code>
 +
 +=== Operation notes ===
 +
 +  * This function should be placed at a point of the application that runs (after enabling the flashing) at every turn the output control logic is consistent
 +
 +
 +
 +
 +