Search Project: *:*

 
<< < 1 .. 3592 3593 3594 3595 3596 .. 3688 > >> (Page 3594 of 3688)

Post by baott569 on CODESYS OPC UA Security: HMI Client Not Receiving Server Certificate CODESYS Forge talk (Post)
Hello everyone, I am currently using OPC UA in CODESYS with the security mode BASIC256SHA256 – Signed and Encrypted. The OPC UA Server is running on an RTE CX device, and the HMI is running on another computer. I have reviewed many CODESYS documents and successfully established communication when the security mode is set to None with Anonymous login. However, when security is enabled, the server does not provide its certificate for the CODESYS HMI client to trust. Interestingly, the client can send its certificate to the server, and UAExpert works normally, but the CODESYS HMI client does not receive the server certificate. Can anyone help clarify what I might be missing? I have been stuck on this issue for three days. If I missed or misconfigured any step, please let me know. I believe I am stuck at step 15 in the following CODESYS guide: Encrypting the Communication of a Data Source OPC UA Client https://content.helpme-codesys.com/en/CODESYS%20Communication/_cds_encrypt_communication_data_sources_opc_ua_client.html Thank you very much.
Last updated: 2026-01-06

blog Discussion kledo5 blog (Discussion)
Forum for blog comments
Last updated: 2026-01-06

CODESYS OPC UA Security: HMI Client Not Receiving Server Certificate CODESYS Forge talk (Thread)
CODESYS OPC UA Security: HMI Client Not Receiving Server Certificate
Last updated: 2026-01-06

Post by aniket-b on Scara3 kinematic robot error CODESYS Forge talk (Post)
@eschwellinger any suggestions here?
Last updated: 2026-01-06

Home (version 1) discussion hrushang wiki (Thread)
Home (version 1) discussion
Last updated: 2026-01-07

Post by gseidel on Axis directions in CNC editor not using right-hand rule? CODESYS Forge talk (Post)
Hi bertus, the coordinate systems used in SoftMotion CNC are all right-handed. The CNC editor uses isometric projection. This can be confusing, as in your example. The y-axis seems to point into the screen, away from the viewer. However, this is just an optical effect. If you turn on the (experimental) perspective projection (must be added to the CNC tool bar using tools->customize), you can see that the coordinate system is in fact right-handed. Best regards, Georg
Last updated: 2026-01-07

Post by gseidel on Scara3 kinematic robot error CODESYS Forge talk (Post)
Last updated: 2026-01-07

Post by gseidel on Scara3 kinematic robot error CODESYS Forge talk (Post)
Hi aniket-b, the maximum cycle time of the EtherCAT_Task is very high, ca. 35 ms. Could you please check if this is just the first cycle after starting the application or if it happens during motion? (You can reset the times in the task configuration by right-clicking in the "monitoring" tab.) Another thing to try: put the SoftMotion_Planning task on a different core. Best regards, Georg
Last updated: 2026-01-07

Home (version 1) discussion husamalbeko wiki (Thread)
Home (version 1) discussion
Last updated: 2026-01-07

Home thejesh wiki (WikiPage)
Project Members: thejesh (admin)
Last updated: 2026-01-07

Post by mawaloc on KeyPad Function in Visualization to fill a table CODESYS Forge talk (Post)
Hello Everybody, Hope you're all doing good for this new year. Since a time, I'm looking on how to use the KeyPad in vizualization to fill a textlist or something similar. my application is : In one window, I would need to be able to writte a string linked to an Numeric Values. => I can't use a std text list inside my software, as per this would be custom by customer. then from another windows I would need a "text box" to be able to select any of this String. I hope it's clear enought. thankyou for the help
Last updated: 2026-01-07

Post by timvh on KeyPad Function in Visualization to fill a table CODESYS Forge talk (Post)
Create an array of STRING and 1 INT variable, e.g.: asMyString : ARRAY[0..9] OF STRING; iIndex : INT; Then place a "Table" object in the visualization: - link this to the string array variable. - Check the option "Use Template" - Then in the Input Configuration - add the "Write Variable" command Somewhere else add a "Combobox, array" - link this to the same array. - And link the index to the INT variable. In the Combobox, you can then select one of the strings from the array. The index variable will indicate which selection has been made.
Last updated: 2026-01-08

Post by bertus on Axis directions in CNC editor not using right-hand rule? CODESYS Forge talk (Post)
Ok that explains things, thanks.
Last updated: 2026-01-08

Axis directions in CNC editor not using right-hand rule? CODESYS Forge talk (Thread)
Axis directions in CNC editor not using right-hand rule?
Last updated: 2026-01-08

Home (version 1) discussion ruff wiki (Thread)
Home (version 1) discussion
Last updated: 2026-01-08

wiki Discussion elonmakmalon wiki (Discussion)
Forum for wiki comments
Last updated: 2026-01-09

blog Discussion elonmakmalon blog (Discussion)
Forum for blog comments
Last updated: 2026-01-09

Home elonmakmalon wiki (WikiPage)
Project Members: elonmakmalon (admin)
Last updated: 2026-01-09

(no subject) elonmakmalon wiki (Thread)
Last updated: 2026-01-09

Post by elonmakmalon on The New Addictive 8x8 Grid Puzzle Game CODESYS Forge talk (Post)
Looking for a game that's both entertaining and a gentle brain-teasing challenge? Welcome to block blast – where classic block-stacking meets colorful modern gameplay! Why is Block Blast so addictive? Simple yet never boring! Your task is to drag and drop blocks of various shapes onto an 8x8 grid. When you fill a horizontal or vertical row, "BOOM!" – they explode, disappear, and earn you points. The fun sound effects and smooth animations make each point-scoring moment incredibly satisfying. Big advantages: No time pressure: Forget the countdown timer. You can think all day about your next move. Play at your own pace! IQ training: Don't let the bright appearance fool you, this game requires strategy. You have to calculate the space to avoid getting "stuck" when difficult blocks appear. Play anytime, anywhere: No Wifi? No problem. Block Blast handles even offline mode. Don't just focus on clearing one row at a time. Accumulate blocks and clear multiple rows at once (Combo) to skyrocket your score. And remember: Don't leave small empty spaces alone; they will be "enemies" blocking the large blocks later!
Last updated: 2026-01-09

Post by blitz on Can't get SMC_SmoothPath to work CODESYS Forge talk (Post)
This code works well: PROGRAM PLC_PRG VAR execute : BOOL; abort : BOOL; doMDI : BOOL; manualDataInput : STRING(1024) := 'N5 G01 X0.00 Y200.00 N6 G01 X200.00 Y200.00 N7 G01 X200.00 Y0.00 N8 G01 X0.00 Y0.00'; stringStreamArray: ARRAY[0..NUMBER_OF_CHAINS-1] OF SMC_StringStream2 ; i : UDINT; readNCFromStream : SMC_ReadNCFromStream; sentencesFromStringSteam : SMC_GSentenceQueue ; interpreter : SMC_NCInterpreter; interpreterGeoInfoBuffer: ARRAY[1..GEO_INFO_BUFFERS_SIZE] OF SMC_GeoInfo; roundPath : SMC_RoundPath; roundPathGeoInfoBuffer: ARRAY[1..GEO_INFO_BUFFERS_SIZE] OF SMC_GeoInfo; END_VAR VAR CONSTANT MDI_FILE_NAME : STRING := 'MDI.nc'; NUMBER_OF_CHAINS : UDINT := 15; GEO_INFO_BUFFERS_SIZE : DINT := 500; END_VAR readNCFromStream.bExecute := interpreter.bExecute := roundPath.bExecute := execute; readNCFromStream.bAbort := interpreter.bAbort := roundPath.bAbort := abort; IF doMDI THEN stringStreamArray[0].Init(MDI_FILE_NAME); stringStreamArray[0].AppendData(manualDataInput); stringStreamArray[0].SetEndOfData(); i := 0 ; WHILE i < NUMBER_OF_CHAINS DO readNCFromStream.aStream[i] := stringStreamArray[i]; i := i + 1 ; END_WHILE readNCFromStream.bExecute := TRUE; IF readNCFromStream.bBusy THEN ; END_IF END_IF readNCFromStream( fDefaultVel := 10, fDefaultAccel := 10, fDefaultDecel := 10, fDefaultVelFF := 10, fDefaultAccelFF := 10, fDefaultDecelFF := 10, sentences := sentencesFromStringSteam ); interpreter( sentences:= sentencesFromStringSteam, nSizeOutQueue:= SIZEOF(interpreterGeoInfoBuffer), pbyBufferOutQueue:= ADR(interpreterGeoInfoBuffer)); roundPath( poqDataIn := interpreter.poqDataOut, dRadius := , dAngleTol := , nSizeOutQueue := SIZEOF(roundPathGeoInfoBuffer), pbyBufferOutQueue := ADR(roundPathGeoInfoBuffer));
Last updated: 2026-01-09

"Distributed clocks are not synchronized, Rea time problem on hardware" ? CODESYS Forge talk (Thread)
"Distributed clocks are not synchronized, Rea time problem on hardware" ?
Last updated: 2026-01-09

The New Addictive 8x8 Grid Puzzle Game CODESYS Forge talk (Thread)
The New Addictive 8x8 Grid Puzzle Game
Last updated: 2026-01-09

Home (version 1) discussion akautomation wiki (Thread)
Home (version 1) discussion
Last updated: 2026-01-09

Home chen13957121480 wiki (WikiPage)
Project Members: chen13957121480 (admin)
Last updated: 2026-01-11

<< < 1 .. 3592 3593 3594 3595 3596 .. 3688 > >> (Page 3594 of 3688)

Showing results of 92193

Sort by relevance or date