Class FourteenSegment
Fourteen Segment Display
Assembly: FourteenSegment.dll
View Source
public class FourteenSegment : IDisposable
Implements:
System.IDisposable
Properties
IsDisposed
Is the object disposed
View Source
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
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
public static bool IsEnabled(FourteenSegment.Segment segment, char asciiCharacter)
Returns
System.Boolean
Parameters
Type | Name | Description |
---|---|---|
Meadow.Foundation.Displays.Led.FourteenSegment.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
public void Dispose()
Dispose(bool)
Dispose of the object
View Source
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing | Is disposing |
Implements
System.IDisposable