Пример #1
0
        private void fmMain_Load(object sender, EventArgs e)
        {
            img1 = Image.FromFile(Application.StartupPath + "\\img\\1.bmp");
            img2 = Image.FromFile(Application.StartupPath + "\\img\\2.bmp");

            //TestSCL();

            //Ping p = new Ping();

            //PingReply r = p.Send("101.0.0.1");
            //if (r.Status == IPStatus.TimedOut)
            //{
            //    return;
            //}
            //p.Dispose();


            InitCanvas();

            //LedHelper.Init(2);
            //LedHelper.AddLed("192.168.16.98", 1);

            LedHelper.Init(1);

            //LedHelper.ReConnectTime = 5;
            //LedHelper.PingTime = 10;
            //LedHelper.LocPort = 8500;

            LedHelper.AddLed("192.168.16.99", 0, 128, 96);

            LedHelper.Open();

            thread = new TLoopThread(OnThread);
            thread.Start();
        }
Пример #2
0
        private void fmMain_Load(object sender, EventArgs e)
        {
            img1 = Image.FromFile(Application.StartupPath + "\\img\\1.bmp");
            img2 = Image.FromFile(Application.StartupPath + "\\img\\2.bmp");
            
            //TestSCL();

            //Ping p = new Ping();
         
            //PingReply r = p.Send("101.0.0.1");
            //if (r.Status == IPStatus.TimedOut)
            //{
            //    return;
            //}
            //p.Dispose();
            

            InitCanvas();

            //LedHelper.Init(2);
            //LedHelper.AddLed("192.168.16.98", 1);

            LedHelper.Init(1);
            
            //LedHelper.ReConnectTime = 5;
            //LedHelper.PingTime = 10;
            //LedHelper.LocPort = 8500;

            LedHelper.AddLed("192.168.16.99", 0,128,96);

            LedHelper.Open();

            thread = new TLoopThread(OnThread);
            thread.Start();
        }
Пример #3
0
        private void fmMain_Load(object sender, EventArgs e)
        {
            string[] p = new string[1];
            p[0] = "COM1";

            md = new ModbusHelper(p);
            md.Open();

            th = new TLoopThread(OnThread);
            th.Start();
        }
Пример #4
0
        private void fmMain_Load(object sender, EventArgs e)
        {
            string[] p = new string[1];
            p[0] = "COM1";

            md= new ModbusHelper(p);
            md.Open();

            th = new TLoopThread(OnThread);
            th.Start();
        }