Development Guide


A NC App

  1. Add reference to the SinumerikNet.Advanced Namespace:
    Imports Sinumerik.Advanced
  2. Create an instance of the SinumerikDevice class with the address of the controller:
    Dim client = New SinumerikDevice("192.168.0.131")
  3. Build and open a connection to the controller:
    client.Connect();
  4. Your code to interact with the controller:
     
  5. Close the connection before closing the application:
     
  6. Using the using block this looks as follows:
        client.Connect()
        ' Your code to interact with the controller.
    End Using