C# Class CyrusBuilt.MonoPi.Components.Potentiometers.Microchip.MCP4642

Hardware device abstraction component for the Microchip MCP4642.
Inheritance: MicrochipPotentiometerBase
Afficher le fichier Open project: cyrusbuilt/MonoPi

Méthodes publiques

Méthode Description
MCP4642 ( II2CBus device, System.Boolean pinA0, System.Boolean pinA1, MicrochipPotChannel channel, MicrochipPotNonVolatileMode nonVolatileMode ) : System

Initializes a new instance of the CyrusBuilt.MonoPi.Components.Potentiometers.Microchip.MCP4642 class with the I2C device connection, pin A0 and A1 states, the potentiometer (channel) provided by the device, and how to do non-volatile I/O.

SetNonVolatileMode ( MicrochipPotNonVolatileMode mode ) : void

Sets the way in which non-volatile reads and writes are done.

Method Details

MCP4642() public méthode

Initializes a new instance of the CyrusBuilt.MonoPi.Components.Potentiometers.Microchip.MCP4642 class with the I2C device connection, pin A0 and A1 states, the potentiometer (channel) provided by the device, and how to do non-volatile I/O.
/// cannot be null. - or - /// cannot be null. /// /// is not supported by this device. /// /// Unable to open the I2C bus. ///
public MCP4642 ( II2CBus device, System.Boolean pinA0, System.Boolean pinA1, MicrochipPotChannel channel, MicrochipPotNonVolatileMode nonVolatileMode ) : System
device II2CBus /// The I2C bus device this instance is connected to. ///
pinA0 System.Boolean /// Whether the device's address pin A0 is high (true) or low (false). ///
pinA1 System.Boolean /// Whether the device's address pin A1 is high (true) or low (false). ///
channel MicrochipPotChannel /// Which of the potentiometers provided by the device to control. ///
nonVolatileMode MicrochipPotNonVolatileMode /// The way non-volatile reads or writes are done. ///
Résultat System

SetNonVolatileMode() public méthode

Sets the way in which non-volatile reads and writes are done.
public SetNonVolatileMode ( MicrochipPotNonVolatileMode mode ) : void
mode MicrochipPotNonVolatileMode /// The non-volatile mode. ///
Résultat void