Mitsubishi FX3U PLC has the analog output of voltage (0-10V) or current (4-20mA). It features a 12-bit resolution (0 to 4095). That 12-bit resolution means that this digital value is converted by the analog output module into a physical voltage or current signal based on the configuration. The PLC converts digital data with 12-bit resolution into physical voltage through a process called Digital to Analog Conversion. In short form, it is called DAC. In this case, the Register contact AI/AO (M8011) is used as a trigger to activate the WR3A instruction. WR3A uses to write the data to an analog output channel on an FX3U analog module. It is used to write analog values to an analog output channel connected to the FX3U PLC. Reference : Instrumentationtools
            The MOV instruction is also used to save the hexadecimal representation of the Baud Rate, Data Bits, Parity, Stop Bit, and Comm. Protocol parameters in the D8120 register, which is stored in Hexadecimal Number. The binary format 0100 0000 1000 0001 is equivalent to the Hexadecimal number , where each bit denotes a distinct communication configuration.             So, how do we use it? For example, let's assume that our desired communication setting is : Data Length         : 7 bit  Parity                    : None Stop Bit                : 1 bit Baud Rate            : 9600 bps Comm. Protocol  : Modbus Slave Slave ID               : 1             Therefore, Our Binary Code will be 0100 0000 1000 0001. Remember! This Binary Code B0 to B15 is from Least Significant Bit to Most Significa...