• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. alberto

    Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website Mango 5 Documentation Website
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 6
    • Posts 19
    • Best 0
    • Controversial 0
    • Groups 0

    alberto

    @alberto

    0
    Reputation
    782
    Profile views
    19
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    alberto Unfollow Follow

    Latest posts made by alberto

    • RE: Data format conversion with meta data source

      I'm sorry.

      I have not explained well.
      My problem is this:
      I have two word type 2 byte unsigned integer (for example, x.value and y.value) and I get a variable 32 IEEE float.
      How can I achieve this by writing a script in a meta data source?

      thank you very much

      posted in User help
      A
      alberto
    • Data format conversion with meta data source

      Hi all,

      I have a problem.
      How can I convert a value (x.value) into format IEEE 32 float?
      I have not found an example in the help to make a script, can someone please give me a hand?

      Thank you very much.

      posted in User help
      A
      alberto
    • RE: Data format conversion with meta data source

      Hi all,

      I have a problem.
      How can I convert a value (x.value) into format IEEE 32 float?
      I have not found an example in the help to make a script, can someone please give me a hand?

      Thank you very much.

      posted in User help
      A
      alberto
    • Report customization

      Hi All,

      I wanted to ask if there is a possibility to customize reports to display my variables without the fixed fields (maximum, minimum, average, etc..), Graphics and more.
      Let me explain: I would like to submit a report that shows only the title, the name of the selected variables and their values??. Nothing more.
      Is it possible? If so, how should I do?

      Thanks for the help.

      posted in User help
      A
      alberto
    • RE: Report customization

      Hi All,

      I wanted to ask if there is a possibility to customize reports to display my variables without the fixed fields (maximum, minimum, average, etc..), Graphics and more.
      Let me explain: I would like to submit a report that shows only the title, the name of the selected variables and their values??. Nothing more.
      Is it possible? If so, how should I do?

      Thanks for the help.

      posted in User help
      A
      alberto
    • RE: Little endian

      I really need to reverse the byte order of a variable.
      I can do meta data source with a command like the following?

      unsigned short int Endian_Word_Conversion(unsigned short int word) {
      return ((word>>8)&0x00FF) | ((word<<8)&0xFF00) ;
      }

      where 'word' is, for example, p241.value or p241.other

      any ideas?

      thanks

      posted in User help
      A
      alberto
    • RE: Little endian

      I use that because the slave provides the data in this format.
      The specifications of the device indicate that the protocol is Modbus RTU.
      Very strange.

      thanks

      posted in User help
      A
      alberto
    • RE: Little endian

      Yes,

      the protocol is Modbus.
      So there is no chance?
      I use the latest version of m2m mango.
      If not, think that in future there will be?

      thanks

      posted in User help
      A
      alberto
    • RE: Little endian

      Hi,

      the registers are transmitted as words of 16 bits, LSByte first, followed by MSByte.
      How to do the reverse in mango?

      thank you

      posted in User help
      A
      alberto
    • Little endian

      Hi All,

      how to set the data format "little endian" in mango?
      I must put the variable in a meta data source?
      If yes, what script should I enter?

      thanks

      posted in User help
      A
      alberto