Talk

FORUM LATEST POST # TOPICS
Engineering πŸ‡¬πŸ‡§

Discussions about the CODESYS Development System, IEC programming, CODESYS Professional Developer Edition

[New Hardware] EtherCAT Digital & Analog IO Board – CODESYS Compatible, ...
by egerobotics
7 hours ago
6019
Runtime πŸ‡¬πŸ‡§

Related questions to SoftPLCs e.g. Raspberry Pi, Beaglebone, IoT2000 and other platforms

cannot connect ot linux runtime: device does not answer the scanrequest
by cd-tt
2 days ago
2304
Visualization πŸ‡¬πŸ‡§

Realizing operator screens with CODESYS HMI, Targetvisu, Webvisu

Table Element Scroll Return
by cv-dse
3 days ago
1065
Motion πŸ‡¬πŸ‡§

Realizing single or multi axis motion control, CAM, CNC and Robotic applications

Limit Axis CNC Jerk using SMC_Polynomial_AbsMaxLocs
by gseidel
4 days ago
572
Codesys V2.3 πŸ‡¬πŸ‡§

Forum about V2.3

too much data for the controller
by eschwellinger
2026-06-02
2244
Deutsch πŸ‡©πŸ‡ͺ

German forum

WeidmΓΌller und u-OS bugs
by eschwellinger
5 days ago
4582
Automation Server πŸ‡¬πŸ‡§

The Industry 4.0 administration platform for users and operators of CODESYS compatible controllers

Using SCADA Data and C# Integration for Real-Time Production KPI Monitoring
by baotthitawat
3 days ago
81
Forge πŸ‡¬πŸ‡§

Discussions about CODESYS Forge projects and features of the CODESYS Forge website

DSE M840-001-02: DSEServiceTool transfers CodesysApp.pkg successfully, b...
by sahin6033
2026-03-17
231

Recent Activities

    CODESYS Forge

  • egerobotics posted a comment on discussion Engineering πŸ‡¬πŸ‡§

    Hi everyone, I'd like to share a new EtherCAT slave I/O board I've developed β€” the EtherCAT Digital & Analog IO Board by EGEROBOTICS. Key specs: 12x isolated digital outputs (24VDC) 12x isolated digital inputs (24VDC) 4x isolated 0–10V analog outputs (12-bit DAC) 4x isolated 0–10V analog inputs (12-bit ADC) All channels galvanically isolated 24VDC powered EtherCAT CoE protocol Typical use cases: Analog servo drive speed reference (0–10V) via EtherCAT Frequency inverter reference signal Proportional...

  • Rock modified a comment on discussion Engineering πŸ‡¬πŸ‡§

    Here is what I use to read online the parameter value. proj = projects.primary app = proj.active_application plc = proj.find("Device", True)[0] onlineapp = online.create_online_application(app) onlineapp.login(OnlineChangeOption.Try, True) dev1 = proj.find("DEV1", True)[0] for conn in dev1.connectors: > parms = conn.host_parameters > if len(parms) > 0: > p = parms.by_id(1074855985) > p.read_online_value(2000) ---> error: Gateway not configured properly Does anyone know about this?

  • cd-tt posted a comment on discussion Runtime πŸ‡¬πŸ‡§

    thank you eschwellinger. That one solved it for me. The password must have a length of at least 8 characters. The password must consist of at least 4 different characters. The password must contain lowercase letters. The password must contain uppercase letters. The password must contain digits. The password must contain special characters.

  • Rock posted a comment on discussion Engineering πŸ‡¬πŸ‡§

    Here is what I use to read online the parameter value. proj = projects.primary app = proj.active_application plc = proj.find("Device", True)[0] onlineapp = online.create_online_application(app) onlineapp.login(OnlineChangeOption.Try, True) dev1 = proj.find("DEV1", True)[0] for conn in dev1.connectors: > parms = conn.host_parameters > if len(parms) > 0: > p = parms.by_id(1074855985) > p.read_online_value(2000) ---> error: Gateway not configured properly

  • Rock posted a comment on discussion Engineering πŸ‡¬πŸ‡§

    Here is what I use to read online the parameter value. proj = projects.primary app = proj.active_application plc = proj.find("Device", True)[0] onlineapp = online.create_online_application(app) onlineapp.login(OnlineChangeOption.Try, True) dev1 = proj.find("DEV1", True)[0] for conn in dev1.connectors: > parms = conn.host_parameters > if len(parms) > 0: > p = parms.by_id(1074855985) > p.read_online_value(2000) ---> error: Gateway not configured properly

  • eschwellinger eschwellinger modified a comment on discussion Runtime πŸ‡¬πŸ‡§

    for me looks like you do not use latest CODESYS IDE version, there is a known bug if you use a newer runtime your are forced to use a more complex password as user for the login. The old IDE version does not show this problem on login. so either update CODESYS or use a pw which meet the complexity requirements.