Class SixteenSegment
Sixteen Segment Display
Assembly: SixteenSegment.dll
View Source
Declaration
public class SixteenSegment : IDisposable
Implements:
System.IDisposable
Properties
IsDisposed
Is the object disposed
View Source
Declaration
public bool IsDisposed { get; }
Methods
SetDisplay(char, bool?)
Displays the specified ASCII character (from 32 to 126) Unsupported ASCII values will be blank
View Source
Declaration
public void SetDisplay(char asciiCharacter, bool? showDecimal = null)
Parameters
Type | Name |
---|---|
System.Char | asciiCharacter |
System.Nullable<System.Boolean> | showDecimal |
IsEnabled(Segment, char)
Is a specific led segment enabled for an ASCII character
View Source
Declaration
public static bool IsEnabled(SixteenSegment.Segment segment, char asciiCharacter)
Returns
System.Boolean
Parameters
Type | Name | Description |
---|---|---|
Meadow.Foundation.Displays.Led.SixteenSegment.Segment | segment | The led segment |
System.Char | asciiCharacter | The ASCII character |
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
View Source
Declaration
public void Dispose()
Dispose(bool)
Dispose of the object
View Source
Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing | Is disposing |
Implements
System.IDisposable