Class FtdiExpanderCollection
Represents a collection of FtdiExpander devices connected to the host machine.
Assembly: Ft2xxx.dll
View Source
Declaration
public class FtdiExpanderCollection : IEnumerable<FtdiExpander>, IEnumerable
Implements:
System.Collections.Generic.IEnumerable<Meadow.Foundation.ICs.IOExpanders.FtdiExpander>
, System.Collections.IEnumerable
Properties
Count
Gets the number of FtdiExpander devices connected to the host machine.
View Source
Declaration
public int Count { get; }
this[int]
Gets the FtdiExpander device at the specified index in the collection.
View Source
Declaration
public FtdiExpander this[int index] { get; }
Devices
Gets the singleton instance of Ft232Collection, initializing it if necessary.
View Source
Declaration
public static FtdiExpanderCollection Devices { get; }
Methods
Refresh()
Refresh the collection of FtdiExpander devices connected to the host machine.
View Source
Declaration
public void Refresh()
GetEnumerator()
Returns an enumerator that iterates through the collection.
View Source
Declaration
public IEnumerator<FtdiExpander> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<Meadow.Foundation.ICs.IOExpanders.FtdiExpander>
: An enumerator that can be used to iterate through the collection.
Implements
System.Collections.Generic.IEnumerable<Meadow.Foundation.ICs.IOExpanders.FtdiExpander>
System.Collections.IEnumerable