C# 클래스 RemoteLedMatrix.Helpers.FirmataExtensions

Extensions to the firmata client to make sending large amounts of data easier
파일 보기 프로젝트 열기: ms-iot/LEDMatrix

공개 메소드들

메소드 설명
SendPixelBlob ( this firmata, IEnumerable bytes ) : void

Sends a blob of pixel data to the client

SendPixelBlob ( this firmata, IEnumerable bytes, int inSetsOf ) : void

Sends a blob of pixel data to the client, broken up into arbitraily sized chunks

메소드 상세

SendPixelBlob() 공개 정적인 메소드

Sends a blob of pixel data to the client
public static SendPixelBlob ( this firmata, IEnumerable bytes ) : void
firmata this Firmata client to send the command to
bytes IEnumerable Pixel data to send
리턴 void

SendPixelBlob() 공개 정적인 메소드

Sends a blob of pixel data to the client, broken up into arbitraily sized chunks
public static SendPixelBlob ( this firmata, IEnumerable bytes, int inSetsOf ) : void
firmata this Firmata client to send the command to
bytes IEnumerable Pixel data to send
inSetsOf int How many bytes to send in a single firmata command
리턴 void