If you meant a code snippet to measure a sensor value in Dox Mini software:
(* Measure analog input %IW0 and scale to 0-100% *) VAR rawAnalog : INT := %IW0; (* e.g., 0-27648 *) scaledValue : REAL; END_VAR
scaledValue := (rawAnalog / 27648.0) * 100.0; (* Now scaledValue holds 0.0 to 100.0 *)
Or in ladder (text representation):
---[ %IX0.0 ]---[ MOV %IW0 → MW10 ]
---[ DIV MW10 27648 → MD20 ]
---[ MUL MD20 100 → MD30 ]
Real-Time Debugging: Offers live monitoring of variables, contact states, and register values. Engineers can watch the logic execute cycle-by-cycle. dox mini software messung plc
Offline Simulation: A critical safety feature. DOX Mini allows users to write and debug entire programs without connecting to physical hardware, reducing downtime risks.
Integrated Modbus Configurator: Given Messung’s heavy use in industrial networking, DOX Mini includes graphical tools to set up master-slave communication with VFDs, HMI panels, and remote I/O. If you meant a code snippet to measure
Firmware Management: The software seamlessly handles firmware updates across Messung CPU modules, ensuring compatibility with the latest features.
Once installed, connect your PC to the Messung PLC using the standard programming cable (typically a USB-to-RS485 converter). In DOX Mini, navigate to Project > Communication Parameters and set: Or in ladder (text representation): ---[ %IX0
The software allows you to measure: