### Add mobileIoT Status Screen Visualization (ifm_mobileIoT) Source: https://docs.miot.ifm/iots/documentation/sending-data-to-the-data-portal This guide explains how to add the mobileIoT_StatusScreen to a visualization project. This screen provides a visual representation of various status information from the gateway, derived from the fbGatewayManager's stGatewayStatus output. Ensure the screen's X and Y positions are set to 0 for proper integration. ```text 1. Open or create a visualization 2. Navigate to Visualization Toolbox -> ifm_mobileIoT -> Drag and Drop the mobileIoT_StatusScreen into the visualization 3. Set the X- and Y-Position to 0 ``` -------------------------------- ### CODESYS Import and Configuration for mobileIoT Source: https://docs.miot.ifm/iots/documentation/sending-data-to-the-data-portal Steps to import the mobileIoT program into CODESYS, add necessary libraries, resolve placeholders, and assign tasks. Includes setting user credentials and passwords, which require base64 encoding. ```CODESYS GVL_mobileIoT.gsGatewayUsername := 'api'; GVL_mobileIoT.gsGatewayPassword := 'YOUR_BASE64_ENCODED_PASSWORD'; GVL_mobileIoT.gsFileUploadPassword := 'YOUR_BASE64_ENCODED_FILEUPLOAD_PASSWORD'; ``` ```CODESYS GVL_mobileIoT.uiAmbientHumidity := 40; ```