Hd44780.Write Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 a raw byte stream to the display. Used if character translation already took place
public void Write (char[] text);
abstract member Write : char[] -> unit
override this.Write : char[] -> unit
Public Sub Write (text As Char())
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 a raw byte stream to the display. Used if character translation already took place
public void Write (ReadOnlySpan<byte> text);
abstract member Write : ReadOnlySpan<byte> -> unit
override this.Write : ReadOnlySpan<byte> -> unit
Public Sub Write (text As ReadOnlySpan(Of Byte))
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 a raw byte stream to the display. Used if character translation already took place
public void Write (ReadOnlySpan<char> text);
abstract member Write : ReadOnlySpan<char> -> unit
override this.Write : ReadOnlySpan<char> -> unit
Public Sub Write (text As ReadOnlySpan(Of Char))
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 text to display.
public void Write (string value);
public void Write (string text);
member this.Write : string -> unit
abstract member Write : string -> unit
override this.Write : string -> unit
Public Sub Write (value As String)
Public Sub Write (text As String)
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 |