How do I control a Beckhoff EtherCAT Coupler with powershell?










1















We have a Beckhoff EtherCAT Coupler which is currently being controlled by some c# code, we call that c# code from a powershell script. We want to move the entire process of toggling slots on the coupler to the powershell script but I'm not sure how to do that. If you could provide me even with information on how to send/receive Modbus commands in powershell that would be hugely helpful.



Thank you!



EDIT:
Here is the code used in C# to toggle one slot of the IO coupler:



using System.Net.Sockets;
using Modbus.Device;

TcpClient tcp_connection = new TcpClient(ip, MODBUS_TCP_PORT);
ModbusIpMaster coupler = ModbusIpMaster.CreateIp(tcp_connection);

coupler.WriteSingleRegister(0x1120, 0);
coupler.WriteSingleCoil(slot, state);









share|improve this question
























  • This is a highly complex question with very little information provided. Do you have examples of your C# code? Does it have a GUI? Have you tried anything in PowerShell already? If so, what errors are you getting?

    – Robin
    Nov 14 '18 at 14:42






  • 1





    I've googled it to the best of my ability and haven't been able to find anything on what to do in powershell, and yea I'll add snippits of the code to the question, should've done that originally.

    – H. Pope
    Nov 14 '18 at 14:43











  • If it uses the .NET object model then you can usually port code to PowerShell. Hopefully someone here can point you in the right direction once some of the C# code is added.

    – Robin
    Nov 14 '18 at 14:45















1















We have a Beckhoff EtherCAT Coupler which is currently being controlled by some c# code, we call that c# code from a powershell script. We want to move the entire process of toggling slots on the coupler to the powershell script but I'm not sure how to do that. If you could provide me even with information on how to send/receive Modbus commands in powershell that would be hugely helpful.



Thank you!



EDIT:
Here is the code used in C# to toggle one slot of the IO coupler:



using System.Net.Sockets;
using Modbus.Device;

TcpClient tcp_connection = new TcpClient(ip, MODBUS_TCP_PORT);
ModbusIpMaster coupler = ModbusIpMaster.CreateIp(tcp_connection);

coupler.WriteSingleRegister(0x1120, 0);
coupler.WriteSingleCoil(slot, state);









share|improve this question
























  • This is a highly complex question with very little information provided. Do you have examples of your C# code? Does it have a GUI? Have you tried anything in PowerShell already? If so, what errors are you getting?

    – Robin
    Nov 14 '18 at 14:42






  • 1





    I've googled it to the best of my ability and haven't been able to find anything on what to do in powershell, and yea I'll add snippits of the code to the question, should've done that originally.

    – H. Pope
    Nov 14 '18 at 14:43











  • If it uses the .NET object model then you can usually port code to PowerShell. Hopefully someone here can point you in the right direction once some of the C# code is added.

    – Robin
    Nov 14 '18 at 14:45













1












1








1








We have a Beckhoff EtherCAT Coupler which is currently being controlled by some c# code, we call that c# code from a powershell script. We want to move the entire process of toggling slots on the coupler to the powershell script but I'm not sure how to do that. If you could provide me even with information on how to send/receive Modbus commands in powershell that would be hugely helpful.



Thank you!



EDIT:
Here is the code used in C# to toggle one slot of the IO coupler:



using System.Net.Sockets;
using Modbus.Device;

TcpClient tcp_connection = new TcpClient(ip, MODBUS_TCP_PORT);
ModbusIpMaster coupler = ModbusIpMaster.CreateIp(tcp_connection);

coupler.WriteSingleRegister(0x1120, 0);
coupler.WriteSingleCoil(slot, state);









share|improve this question
















We have a Beckhoff EtherCAT Coupler which is currently being controlled by some c# code, we call that c# code from a powershell script. We want to move the entire process of toggling slots on the coupler to the powershell script but I'm not sure how to do that. If you could provide me even with information on how to send/receive Modbus commands in powershell that would be hugely helpful.



Thank you!



EDIT:
Here is the code used in C# to toggle one slot of the IO coupler:



using System.Net.Sockets;
using Modbus.Device;

TcpClient tcp_connection = new TcpClient(ip, MODBUS_TCP_PORT);
ModbusIpMaster coupler = ModbusIpMaster.CreateIp(tcp_connection);

coupler.WriteSingleRegister(0x1120, 0);
coupler.WriteSingleCoil(slot, state);






powershell modbus






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 14 '18 at 19:01









vonPryz

12.5k23643




12.5k23643










asked Nov 14 '18 at 14:37









H. PopeH. Pope

64




64












  • This is a highly complex question with very little information provided. Do you have examples of your C# code? Does it have a GUI? Have you tried anything in PowerShell already? If so, what errors are you getting?

    – Robin
    Nov 14 '18 at 14:42






  • 1





    I've googled it to the best of my ability and haven't been able to find anything on what to do in powershell, and yea I'll add snippits of the code to the question, should've done that originally.

    – H. Pope
    Nov 14 '18 at 14:43











  • If it uses the .NET object model then you can usually port code to PowerShell. Hopefully someone here can point you in the right direction once some of the C# code is added.

    – Robin
    Nov 14 '18 at 14:45

















  • This is a highly complex question with very little information provided. Do you have examples of your C# code? Does it have a GUI? Have you tried anything in PowerShell already? If so, what errors are you getting?

    – Robin
    Nov 14 '18 at 14:42






  • 1





    I've googled it to the best of my ability and haven't been able to find anything on what to do in powershell, and yea I'll add snippits of the code to the question, should've done that originally.

    – H. Pope
    Nov 14 '18 at 14:43











  • If it uses the .NET object model then you can usually port code to PowerShell. Hopefully someone here can point you in the right direction once some of the C# code is added.

    – Robin
    Nov 14 '18 at 14:45
















This is a highly complex question with very little information provided. Do you have examples of your C# code? Does it have a GUI? Have you tried anything in PowerShell already? If so, what errors are you getting?

– Robin
Nov 14 '18 at 14:42





This is a highly complex question with very little information provided. Do you have examples of your C# code? Does it have a GUI? Have you tried anything in PowerShell already? If so, what errors are you getting?

– Robin
Nov 14 '18 at 14:42




1




1





I've googled it to the best of my ability and haven't been able to find anything on what to do in powershell, and yea I'll add snippits of the code to the question, should've done that originally.

– H. Pope
Nov 14 '18 at 14:43





I've googled it to the best of my ability and haven't been able to find anything on what to do in powershell, and yea I'll add snippits of the code to the question, should've done that originally.

– H. Pope
Nov 14 '18 at 14:43













If it uses the .NET object model then you can usually port code to PowerShell. Hopefully someone here can point you in the right direction once some of the C# code is added.

– Robin
Nov 14 '18 at 14:45





If it uses the .NET object model then you can usually port code to PowerShell. Hopefully someone here can point you in the right direction once some of the C# code is added.

– Robin
Nov 14 '18 at 14:45












1 Answer
1






active

oldest

votes


















0














Working with machine automation controllers is highly manufacturer specific. I've got working knowledge only about Omron PLC & MACs, so I cannot provide exact details.



Anyway, one way would be to create a C# DLL and call it from Powershell. As how to program the coupler, start by finding out which model, exactly, you are working with and searching Beckhoff's documentation. Maybe there are suitable samples available.



Consider also contacting manufacturer's support. They might be able to provide advice with very reasonable pricing, unless the task grows into a consulting gig.



Programming PLCs and MACs is often done via manufacturer specific solutions. Those are much simpler to use than general-purpose language such as C#.






share|improve this answer






















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53302674%2fhow-do-i-control-a-beckhoff-ethercat-coupler-with-powershell%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Working with machine automation controllers is highly manufacturer specific. I've got working knowledge only about Omron PLC & MACs, so I cannot provide exact details.



    Anyway, one way would be to create a C# DLL and call it from Powershell. As how to program the coupler, start by finding out which model, exactly, you are working with and searching Beckhoff's documentation. Maybe there are suitable samples available.



    Consider also contacting manufacturer's support. They might be able to provide advice with very reasonable pricing, unless the task grows into a consulting gig.



    Programming PLCs and MACs is often done via manufacturer specific solutions. Those are much simpler to use than general-purpose language such as C#.






    share|improve this answer



























      0














      Working with machine automation controllers is highly manufacturer specific. I've got working knowledge only about Omron PLC & MACs, so I cannot provide exact details.



      Anyway, one way would be to create a C# DLL and call it from Powershell. As how to program the coupler, start by finding out which model, exactly, you are working with and searching Beckhoff's documentation. Maybe there are suitable samples available.



      Consider also contacting manufacturer's support. They might be able to provide advice with very reasonable pricing, unless the task grows into a consulting gig.



      Programming PLCs and MACs is often done via manufacturer specific solutions. Those are much simpler to use than general-purpose language such as C#.






      share|improve this answer

























        0












        0








        0







        Working with machine automation controllers is highly manufacturer specific. I've got working knowledge only about Omron PLC & MACs, so I cannot provide exact details.



        Anyway, one way would be to create a C# DLL and call it from Powershell. As how to program the coupler, start by finding out which model, exactly, you are working with and searching Beckhoff's documentation. Maybe there are suitable samples available.



        Consider also contacting manufacturer's support. They might be able to provide advice with very reasonable pricing, unless the task grows into a consulting gig.



        Programming PLCs and MACs is often done via manufacturer specific solutions. Those are much simpler to use than general-purpose language such as C#.






        share|improve this answer













        Working with machine automation controllers is highly manufacturer specific. I've got working knowledge only about Omron PLC & MACs, so I cannot provide exact details.



        Anyway, one way would be to create a C# DLL and call it from Powershell. As how to program the coupler, start by finding out which model, exactly, you are working with and searching Beckhoff's documentation. Maybe there are suitable samples available.



        Consider also contacting manufacturer's support. They might be able to provide advice with very reasonable pricing, unless the task grows into a consulting gig.



        Programming PLCs and MACs is often done via manufacturer specific solutions. Those are much simpler to use than general-purpose language such as C#.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 14 '18 at 17:46









        vonPryzvonPryz

        12.5k23643




        12.5k23643



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53302674%2fhow-do-i-control-a-beckhoff-ethercat-coupler-with-powershell%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Top Tejano songwriter Luis Silva dead of heart attack at 64

            ReactJS Fetched API data displays live - need Data displayed static

            政党