owerel209

MrPLC Member
  • Content count

    2
  • Joined

  • Last visited

Everything posted by owerel209

  1. Hello, I need to make communication NB TW01B by Omron with Siemens's S7 1200 PLC using MODBUS TCP. I did everything like in this manual: https://www.myomron.com/index.php?action=kb&article=1566 I can read and write single bits from and to DB but I have problem with representation of float variable. In hmi_variable.png you can see my DB. Every BOOL variable communicate just fine the real ones doesnt. In NB - variables.png you can see how i added them into NB panel variable table. Settings.png shows settings of my INPUT number element on the frame( screen in NB). When I write on panel for example number 10.0 then from the panel view it looks properly but in PLC you can see value like in the 10.0.png. What am I doing wrong? Any suggest? hmi_variable.png NB - variables.png Settings.png 10.0.png
  2. My target was to make value with decimal number representation. I already achieved this by sending INT type multiply by 10 and in options "numeric data" changed its representation: integer 2 , decimal 1. Thank you for answers.