C# 클래스 ArduinoTest.Components.ArduinoConnection

Aids in the process of connecting to an arduino device
상속: IArduinoConnection
파일 보기 프로젝트 열기: holymoo/Disposition

공개 메소드들

메소드 설명
Close ( ) : void

Ends the connection to the Arduino

Initialize ( ) : void

Starts up the connection to the Arduino device

Write ( byte buffer ) : void
Write ( string text ) : void

Writes some text to the arduino device

비공개 메소드들

메소드 설명
CreateNewSerialPort ( ) : SerialPort

Creates the settings for an arduino specific connection

VerifySerialPort ( SerialPort serialPort ) : void

메소드 상세

Close() 공개 메소드

Ends the connection to the Arduino
public Close ( ) : void
리턴 void

Initialize() 공개 메소드

Starts up the connection to the Arduino device
public Initialize ( ) : void
리턴 void

Write() 공개 메소드

public Write ( byte buffer ) : void
buffer byte
리턴 void

Write() 공개 메소드

Writes some text to the arduino device
public Write ( string text ) : void
text string /// The text being written to the arduino device ///
리턴 void