Write data to COM port : SerialPort « Development Class « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# / C Sharp » Development Class » SerialPortScreenshots 
Write data to COM port
        

/*
 * Copyright (c) 2010 Christoc.com
 
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this 
 * software and associated documentation files (the "Software"), to deal in the Software
 * without restriction, including without limitation the rights to use, copy, modify, 
 * merge, publish, distribute, sublicense, and/or sell copies of the Software, and to 
 * permit persons to whom the Software is furnished to do so, subject to the following 
 * conditions:
 
 * The above copyright notice and this permission notice shall be included in all copies 
 * or substantial portions of the Software.
 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 
 * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF 
 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE 
 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
 */


namespace Com.Christoc.HomeController.Components
{
    using System.IO.Ports;
    using System;

    public class Communication
    {
        public static void DeviceOn(string insteonAddress)
        {
            var serialPlm = new SerialPort("COM4"19200, Parity.None, 8, StopBits.One) {Handshake = Handshake.None};
            var sdata = new Byte[8];
            string[] a = insteonAddress.Split('.');
            sdata[02;
            sdata[198;
            /*split up the address of the device */
            sdata[2= Convert.ToByte(Convert.ToInt32(a[0]16));
            sdata[3= Convert.ToByte(Convert.ToInt32(a[1]16));
            sdata[4= Convert.ToByte(Convert.ToInt32(a[2]16));

            sdata[515;
            sdata[617;
            sdata[7255;
            serialPlm.Open();
            serialPlm.Write(sdata, 08);
            serialPlm.Close();

        }

        public static void DeviceOff(string insteonAddress)
        {
            //TODO: put serial info into Module Settings
            var serialPlm = new SerialPort("COM4"19200, Parity.None, 8, StopBits.One) {Handshake = Handshake.None};

            var sdata = new Byte[8];
            string[] a = insteonAddress.Split('.');
            sdata[02;
            sdata[198;
            /*split up the address of the device */
            sdata[2= Convert.ToByte(Convert.ToInt32(a[0]16));
            sdata[3= Convert.ToByte(Convert.ToInt32(a[1]16));
            sdata[4= Convert.ToByte(Convert.ToInt32(a[2]16));

            sdata[515;
            sdata[619;
            sdata[7255;
            serialPlm.Open();
            serialPlm.Write(sdata, 08);
            serialPlm.Close();
        }

    }
}

   
    
    
    
    
    
    
    
  
Related examples in the same category
1.Set BaudRate, Parity, ReadTimeout, StopBits for COM1 SerialPort
2.SerialPort Class represents a serial port resource.
3.Represents the method that will handle the data received event of a SerialPort object.
4.Gets an array of serial port names for the current computer.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.