Прочитај на енглеском Уреди

Делите путем


Hd44780.Write Method

Definition

Overloads

Write(Char[])

Write a raw byte stream to the display. Used if character translation already took place

Write(ReadOnlySpan<Byte>)

Write a raw byte stream to the display. Used if character translation already took place

Write(ReadOnlySpan<Char>)

Write a raw byte stream to the display. Used if character translation already took place

Write(String)

Write text to display.

Write(Char[])

Write a raw byte stream to the display. Used if character translation already took place

C#
public void Write (char[] text);

Parameters

text
Char[]

Text to print

Implements

Applies to

.NET IoT Libraries 2.2.0 и друге верзије
Производ Верзије
.NET IoT Libraries 1.5.0, 2.0.0, 2.1.0, 2.2.0

Write(ReadOnlySpan<Byte>)

Write a raw byte stream to the display. Used if character translation already took place

C#
public void Write (ReadOnlySpan<byte> text);

Parameters

text
ReadOnlySpan<Byte>

Text to print

Implements

Applies to

.NET IoT Libraries 1.3.0 и друге верзије
Производ Верзије
.NET IoT Libraries 1.1.0, 1.2.0, 1.3.0

Write(ReadOnlySpan<Char>)

Write a raw byte stream to the display. Used if character translation already took place

C#
public void Write (ReadOnlySpan<char> text);

Parameters

text
ReadOnlySpan<Char>

Text to print

Implements

Applies to

.NET IoT Libraries 2.2.0 и друге верзије
Производ Верзије
.NET IoT Libraries 1.4.0, 1.5.0, 2.0.0, 2.1.0, 2.2.0

Write(String)

Write text to display.

C#
public void Write (string value);
C#
public void Write (string text);

Parameters

valuetext
String

Implements

Remarks

There are only 256 characters available. There are chip variants with different character sets. Characters from space ' ' (32) to '}' are usually the same with the exception of '\', which is a yen symbol on some chips '¥'.

Applies to

.NET IoT Libraries 2.2.0 и друге верзије
Производ Верзије
.NET IoT Libraries 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.4.0, 1.5.0, 2.0.0, 2.1.0, 2.2.0