- Introduction
- Tutorial videos
- Getting started with myDESIGNER
- Checking project
- Projects’ visual appearance
- GUI/HMI Editor
- Creating views
- Selecting objects
- Drawing primitives
- Creating text elements
- Insert image
- Poly-lines
- Moving objects
- Resizing objects
- Rotating objects
- Skewing objects
- Filleting
- Combining objects
- Fill and stroke
- Rulers and guides
- Layers
- Copying and pasting elements
- Object's order
- Grouping
- Repeated actions mode
- View scripts
- Used tags
- Zoom on zone
- Undo and redo
- View properties
- Components
- Components library
- Active area
- Layout views
- Entering tags and math expressions
- Tree tags database
- Formatting numerical values
- Linking views with PLC
- Time Sequence
- Open command
- Write/Set command
- Scaling set values
- Key shortcuts
- On touch
- Parametric views
- View scripts
- View scripts - list of functions
- Documents
- Reports
- CAS alarms
- Data logging
- Data - Log views
- Aggregated data logs
- Advanced trends
- Connections
- User accesses
- Multi - language support
- Server-side scripts
- Introduction
- Server-side scripts folder
- Server-side scripts folder structure
- Variables tables
- Script data-logs
- Global variables
- Sources folder
- Organizing project into modules
- Importing modules
- Using the event-driven asynchronous callbacks
- Creating server side reports
- mySCADA specific functions
- Debugging
- Script status (on myBOX devices only)
- Ser2Net (on myBOX devices only)
- View and server side scripts – common tasks
- Graphical guides
- Read/Write data from/to PLC
- Generating report
- Other guides
- Server side scripts – examples
- Reading data from PLC
- Writing data into PLC
- Timers – eg. run code in given time intervals
- Scheduled execution e.g run code every Monday at 2:00 PM
- Generating a report at given time interval
- Limiting access to generated files
- Processing data-log data
- Exporting data-log data into CSV files
- Using virtual PLC
- Sending data from view script into server side scripts
- Devices
- EtherNet/IP driver
- MicroLogix and SLC driver
- Modbus driver
- Siemens S7 family PLCs driver
- OPC UA driver
- MELSEC-Q driver
- SigFox driver
- Databases driver
- Download/Upload from/to device
- Recipes
- Running hours
- Timeline
- mySCADA TIA portal connector
39.4.32-bit integers #
The long integers are implemented in the same manner as the floating-point numbers.
Register |
Mapping |
Swap mode |
Bytes in 2 16 – bit registers |
Resulting 32 – bit floating point |
Hd |
Holding registers |
N/A |
[a b][c d] |
[a b c d] |
Hds |
Holding registers |
Byte and word swap |
[a b][c d] |
[d c b a] |
Hdsb |
Holding registers |
Byte swap |
[a b][c d] |
[b a d c] |
Hdsw |
Holding registers |
Word swap |
[a b][c d] |
[c d a b] |
Rd |
Input registers |
N/A |
[a b][c d] |
[a b c d] |
Rds |
Input registers |
Byte and word swap |
[a b][c d] |
[d c b a] |
Rdsb |
Input registers |
Byte swap |
[a b][c d] |
[b a d c] |
Rdsw |
Input registers |
Word swap |
[a b][c d] |
[c d a b] |