Ejemplo n.º 1
0
        public TestSetForm()
        {
            InitializeComponent();

            this.sm  = new DNP3.Adapter.StackManager();
            this.lca = new LogControlAdapter(this.logControl);
            sm.AddLogHandler(lca);
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            var sm = new DNP3.Adapter.StackManager();

            sm.AddLogHandler(new PrintingLogAdapter()); //this is optional
            sm.AddTCPClient("client", FilterLevel.LEV_INFO, 5000, "192.168.1.201", 20000);
            var config = new MasterStackConfig();

            config.link.useConfirms = true; //setup your stack configuration here.
            var commandAcceptor = sm.AddMaster("client", "master", FilterLevel.LEV_INFO, new PrintingDataObserver(), config);

            Console.WriteLine("Enter an index to send a command");

            while (true)
            {
                System.UInt32 index    = System.UInt32.Parse(Console.ReadLine());
                DateTime      start    = DateTime.Now;
                var           future   = commandAcceptor.AcceptCommand(new BinaryOutput(ControlCode.CC_PULSE, 1, 100, 100), index);
                CommandStatus result   = future.Await();
                DateTime      end      = DateTime.Now;
                TimeSpan      duration = end - start;
                Console.WriteLine("Result: " + result + " and took " + duration.Ticks + " Ticks");
            }
        }