Search talk: variable declare keyword

 
<< < 1 .. 11 12 13 14 15 .. 29 > >> (Page 13 of 29)

Verifying communication between PLCs using Network Variable Lists CODESYS Forge talk (Thread)
Verifying communication between PLCs using Network Variable Lists
Last updated: 2017-01-02

Change Language -> any system variable showing current language? CODESYS Forge talk (Thread)
Change Language -> any system variable showing current language?
Last updated: 2023-08-01

Pragmas "ist ein Teil einer Variable vorhanden = Struktur" CODESYS Forge talk (Thread)
Pragmas "ist ein Teil einer Variable vorhanden = Struktur"
Last updated: 2023-01-16

Modbus TCP Master->Modbus TCP Slave Variable always 0 issue CODESYS Forge talk (Thread)
Modbus TCP Master->Modbus TCP Slave Variable always 0 issue
Last updated: 2018-04-18

Rewire an global variable by other one CODESYS Forge talk (Thread)
Rewire an global variable by other one
Last updated: 2016-02-25

Extracting CANbus variable mapping from Codesys 3.x project. CODESYS Forge talk (Thread)
Extracting CANbus variable mapping from Codesys 3.x project.
Last updated: 2015-01-16

Mit Python Skript eine globale Variable in Codesys beschreiben CODESYS Forge talk (Thread)
Mit Python Skript eine globale Variable in Codesys beschreiben
Last updated: 2017-09-18

Variable Sync Issue In Soft Plc Redundancy CODESYS Forge talk (Thread)
Variable Sync Issue In Soft Plc Redundancy
Last updated: 2024-03-11

Trend recording build error - the variable "arrTraceMgrVariablesImpl" is too large CODESYS Forge talk (Thread)
Trend recording build error - the variable "arrTraceMgrVariablesImpl" is too large
Last updated: 2024-04-10

How to write variable by name CODESYS Forge talk (Thread)
How to write variable by name
Last updated: 2024-06-04

How to access to variable value through symbolic string name CODESYS Forge talk (Thread)
How to access to variable value through symbolic string name
Last updated: 2024-06-15

Alarmgruppenvorlage kann über Kontextmenü keine weitere Latch Variable hinzugefügt werden CODESYS Forge talk (Thread)
Alarmgruppenvorlage kann über Kontextmenü keine weitere Latch Variable hinzugefügt werden
Last updated: 2026-01-05

Array with generic constant as persistent variable CODESYS Forge talk (Thread)
Array with generic constant as persistent variable
Last updated: 2026-05-29

Limitation on OPC UA Variable 100+ variables on raspberry pi CODESYS Forge talk (Thread)
Limitation on OPC UA Variable 100+ variables on raspberry pi
Last updated: 2026-01-22

Post by rckalex on Changing Trace Variable at Runtime CODESYS Forge talk (Post)
Is it possible to change the variable being traced during runtime? I would like to use the CURRENTCLIENTID in combination with an array of real numbers to alter the traced variable in a display window, without needing to create separate visualizations for each variable.
Last updated: 2025-01-22

Post by kuuki on Losing focus of variable CODESYS Forge talk (Post)
Hi. Does anyone know how to fix a problem with losing focus of a variable in FBD editor. Sometimes when trying to edit variable name, array index, etc. in network, editor randomly exits "text edit mode" and variable is replaced by text you were typing.
Last updated: 2024-03-26

Post by peterkcontrols on Making a Visu Element normally invisible and visible if variable is true CODESYS Forge talk (Post)
Hello I would like an element in my visu to be only visible when a certain Variable is true, currently it is only capable of being normally visible and then invisible if a certain variable is true. Is this possible without programming a new variable to be the opposite of my desired control variable? Thanks.
Last updated: 2025-03-12

Post by dogulas on numeric text box control CODESYS Forge talk (Post)
Ok, this is how I made a numeric text field: use a Text Field properties -> Texts -> Text := %f (or %d or whatever you need) properties -> Text variables -> Text variable := (your numeric variable) properties -> Input configuration -> OnMouseDown -> Configure: Write Variable Input type := VisuDialogs.Numpad Use another variable (your numeric variable) Min val Max val etc. Please tell me there is an easier way to do this.
Last updated: 2025-10-02

Post by timvh on Stack overflow with really simple function CODESYS Forge talk (Post)
You have declared the function block in a function and call the instance also from a function. This is not correct, because a function is initialised with every call. The http client function block should be declared as Global Variable if you want to cal it from a Function, but probably it is better to declare it in a Program and also call the instance of the http function block from the same Program.... The variables of a Program are not initialised with each call.
Last updated: 2024-09-20

Post by rodberna on Library for arrays CODESYS Forge talk (Post)
Hi, I'm creating a program where I need to handle arrays, like: - Declare lenght variable arrays - [array(1..var) of "sometype"]. This is not possible in pure codesys, right? - Know array lenght, min, max, avg values in runtime - append/delete itens in an array - and so on Is there a library know for this in codesys. Is it possible to build our own libraries using some high level language like python or java script?
Last updated: 2024-01-10

Post by ojz0r on INT_TO_WORD function not working CODESYS Forge talk (Post)
That calculation will not work the way you expect it to. If PumpFillSpeed is limitied to 0-50 then the only whole number would be 50/50 = 1 everything else is 0.0-0.9999... and since you are using word and integer only 50 would work since there is no representation for mantissa in integer values. Declare a temporary real variable and do the calculation and then do a REAL_TO_WORD in the DRV2Speed assignment.
Last updated: 2024-01-26

Post by carohe on %t SystemTime in Variable CODESYS Forge talk (Post)
Hello, if you enter %t as a "Text" on a rectangle and do not link a variable in "Text variable", it automatically displays the system time. My question is, where do if find a variable, that contains exactly this time? I tried numerous variants using GetLocalDateTime or GetSysTime but I always have to manage timezones myself (which I do not want to do). I only want a variable with the date an time from my windows system, where the visualization is running. Where can I find this variable?
Last updated: 2024-08-20

Post by bmatlove on Variable Length Array - Cannot mix variable and fixed length dimensions? CODESYS Forge talk (Post)
Using Codesys 3.5.18.30 I am trying to work with an array of variable length in one dimension, but known in the other dimension. For example, using an array that represents a list of items, each with an attribute profile. I do not know how many items will be in the list, but I know that every item has 5 attributes, like size, weight, etc. Codesys does not seem to be able to accept this. I have referenced Data Type: ARRAY OF documentation page, which is not explicit if variable & fixed length array dimensions can be mixed. In the VAR_IN_OUT scope, I initially tried MY_ARRAY : ARRAY [*, *] OF REAL; which was no problem, of course. I then modified it to MY_ARRAY : ARRAY [*, 1..5] OF REAL; which throws C0006: ', or ]' expected instead of '..' among consequent downstream errors. I then used the Auto Declare -> Array Wizard, which accepted (asterisk)-(asterisk) and 1-5 for 2-dimensional lower and upper bounds. It output: MY_ARRAY: ARRAY[*..*, 1..6] OF INT; which throws the same error stream. What's the deal here? Is this possible?
Last updated: 2025-05-23

Post by shamcke on Array with generic constant as persistent variable CODESYS Forge talk (Post)
Hello, I have written a function block that uses a generic constant for the upper bound of an array. I wanted to have this array in the persistent memory area, thus I constructed my FB as follows: FUNCTION_BLOCK FbWithGenericArrayLength VAR_GENERIC CONSTANT uiArrayLength : UINT := 10; END_VAR VAR PERSISTENT arr : ARRAY[1..uiArrayLength] OF INT; END_VAR In my PLC_PRG I declare an instance of said FB PROGRAM PLC_PRG VAR myFb : FbWithGenericArrayLength<10>; END_VAR This compiles just fine. When I let CODESYS fill my persistent list, it adds duplicate entries {attribute 'qualified_only'} VAR_GLOBAL PERSISTENT RETAIN // Generated instance path of persistent variable PLC_PRG.myFb.arr: ARRAY [1..uiArrayLength] OF INT; // Generated instance path of persistent variable PLC_PRG.myFb.arr: ARRAY [1..uiArrayLength] OF INT; END_VAR so I manually delete the duplicate. When i now compile, I get errors ------ Build started: Application: Device.Sim.Device.Application ------- Typify code... [ERROR] Sandbox_FW31: PersistentVars [Device: PLC Logic: Application](Line 4): C0161: Border 'uiArrayLength' of array is no constant value [ERROR] Sandbox_FW31: PersistentVars [Device: PLC Logic: Application](Line 4): Type of mapped variable is not equal to original type Compile complete -- 2 errors, 0 warnings Build complete -- 2 errors, 0 warnings : No download possible Is is simply not possible to use a generic constant for the persistent array? Thanks in advance. Edit: It seems I can manually replace the uiArrayLength in the persisten list by the value 10 I used as the generic constant for this particular instance.
Last updated: 2026-05-29

C0244: No VAR_PERSISTENT list is part of the application to enter instance path for variable CODESYS Forge talk (Thread)
C0244: No VAR_PERSISTENT list is part of the application to enter instance path for variable
Last updated: 2024-07-17

<< < 1 .. 11 12 13 14 15 .. 29 > >> (Page 13 of 29)

Showing results of 723

Sort by relevance or date