• Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Matt
    3. Topics
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 14
    • Posts 33
    • Best 2
    • Controversial 0
    • Groups 0

    Topics created by Matt

    • M

      https redirect
      Mervis • • Matt

      2
      0
      Votes
      2
      Posts
      987
      Views

      C

      @Matt
      Hello,
      I have tested this and you are probably right, those options seem to be not implemented. However, I was able to disable HTTP on a testing branch of Mervis. This version will be released later this year. As a solution for now, you can try using HTTPS only mode in your browser.

      Best regards,
      Kryštof Černý

    • M

      Attach PLC via UDP broadcast not finding Axon M525 (after other problems)
      Axon series • • Matt

      3
      0
      Votes
      3
      Posts
      773
      Views

      M

      FYI, it looks like OS 2.2 just doesn't have mDNS/avahi enabled. I've tried it on the M525 and an M505. I was on a different network so I was trying to find the IP address with avahi, and then resorted straight to flashing it when I couldn't find it.

      It looks like IDE 2.1.3 doesn't support the M525. I've got a solution with two existing M505s I wanted to add it to but it doesn't even show up as an option in the manual device list. Do I have to upgrade my solution to IDE 2.2.0 to add the M525? It looks like this will require me to upgrade the OS on the M505s (from 1.9), correct?

    • M

      Debug mode not showing variable values in program and function blocks
      Mervis • • Matt

      4
      0
      Votes
      4
      Posts
      646
      Views

      M

      The controller was not selected. It's working now. Thank you for pointing that out.

    • M

      How to change the analog transformation on xS50?
      Mervis • • Matt

      5
      0
      Votes
      5
      Posts
      922
      Views

      M

      Thanks. Not sure how I missed that.

    • M

      io.getportstatus returns 53?
      Mervis • • Matt

      17
      0
      Votes
      17
      Posts
      3411
      Views

      P

      Hi @martin-kudláček,

      I am not sure to undersand:

      It was stable during > 2 months but now, I can reproduce the issue systematically with USB port 1 (after a few hours of operation), but not when connecting the same hardware to USB port 2.

      Kind regards,

      Pascal

    • M

      Files to include for version control
      Mervis • • Matt

      2
      0
      Votes
      2
      Posts
      674
      Views

      Martin Kudláček

      Hi @Matt,
      the safe way is to include the whole Mervis project directory.

      Best regards,
      Martin

    • M

      P term cutoff in PID controller
      Mervis • • Matt

      1
      0
      Votes
      1
      Posts
      849
      Views

      No one has replied

    • M

      HMI password?
      Mervis • • Matt

      2
      0
      Votes
      2
      Posts
      1059
      Views

      Martin Kudláček

      Hello @matt,
      yes, there is. Double click on the PLC in Left panel and then switch to the User rights in the main window:

      0_1552028811238_2112e785-ae22-4dac-aa75-ac09c1bb95a3-image.png

      As you can see, the default user is Visitor without password. You can rename the users, add or delete them and set them passwords.

      Best regards,
      Martin

    • M

      Setting up wifi?
      Axon series • • Matt

      3
      0
      Votes
      3
      Posts
      1425
      Views

      T

      @matt The standard wpa_supplicant tools works well.

    • M

      Axon ssh (and subforum)
      Axon series • • Matt

      2
      0
      Votes
      2
      Posts
      1399
      Views

      T

      @matt Check the attached leaflet. SSH can be enabled using the web service interface.

      Thanks for the tip! Created a Axon category and re-organized the UniPi Extensions category.

    • M

      NaNs in HMI chart
      Mervis • • Matt

      7
      0
      Votes
      7
      Posts
      2231
      Views

      M

      @martin-kudláček Okay, thanks. After posting yesterday I managed to figure out the communication errors I was getting, so preventing the NaNs from messing up the chart is less of an issue now.

    • M

      String to number?
      Mervis • • Matt

      8
      0
      Votes
      8
      Posts
      2750
      Views

      T

      Hi @matt

      I believe the latest version of Mervis should be able to handle it better now; you can give it a go and see if it works properly with multi-character strings. For further information please get in touch with support@unipi.technology and/or Martin Kudláček instead, as I will be leaving unipi shortly.

    • M

      Serial port selection with io.openport
      Mervis • • Matt

      3
      0
      Votes
      3
      Posts
      1653
      Views

      M

      It works!! Thanks!!

    • M

      SimpleParser documentation?
      Mervis • • Matt

      4
      0
      Votes
      4
      Posts
      1942
      Views

      M

      Thanks, @tomas_hora. I've just gone ahead and written my own in ST, based off the custom serial protocol example. I'm not sure if that sample actually works for serial communications, but for TCP I had to split Case 3 into 2 cases:

      3: if io.getportstatus(handle) = 0 then state := 4; end_if; 4: received := io.readport(handle, adr dataRecv[0], 100); if received > 0 THEN output_string := bytes_to_string(adr dataRecv[0], received); output_length := len(output_string); command_out := command_in; last_output_time := getutctime(); state:=5; END_IF;

      Not doing this seemed to result in the read buffer being reset before the bytes could be read.