C# Class BrickPi.Sensors.EV3TouchSensor

Inheritance: INotifyPropertyChanged, ISensor
Afficher le fichier Open project: Ellerbach/BrickPi Class Usage Examples

Méthodes publiques

Méthode Description
EV3TouchSensor ( BrickPortSensor port ) : System

Initialise an EV3 Touch sensor

EV3TouchSensor ( BrickPortSensor port, int timeout ) : System

Initialize an EV3 Touch Sensor

GetSensorName ( ) : string
IsPressed ( ) : bool

Determines whether the touch sensor is pressed.

NumberOfModes ( ) : int
ReadAsString ( ) : string

Reads the sensor value as a string.

ReadRaw ( ) : int

Reads the raw sensor value

SelectNextMode ( ) : void
SelectPreviousMode ( ) : void
SelectedMode ( ) : string
UpdateSensor ( object state ) : void

Update the sensor and this will raised an event on the interface

Private Methods

Méthode Description
OnPropertyChanged ( string name ) : void
StopTimerInternal ( ) : void

Method Details

EV3TouchSensor() public méthode

Initialise an EV3 Touch sensor
public EV3TouchSensor ( BrickPortSensor port ) : System
port BrickPortSensor Sensor port
Résultat System

EV3TouchSensor() public méthode

Initialize an EV3 Touch Sensor
public EV3TouchSensor ( BrickPortSensor port, int timeout ) : System
port BrickPortSensor Sensor port
timeout int Period in millisecond to check sensor value changes
Résultat System

GetSensorName() public méthode

public GetSensorName ( ) : string
Résultat string

IsPressed() public méthode

Determines whether the touch sensor is pressed.
public IsPressed ( ) : bool
Résultat bool

NumberOfModes() public méthode

public NumberOfModes ( ) : int
Résultat int

ReadAsString() public méthode

Reads the sensor value as a string.
public ReadAsString ( ) : string
Résultat string

ReadRaw() public méthode

Reads the raw sensor value
public ReadRaw ( ) : int
Résultat int

SelectNextMode() public méthode

public SelectNextMode ( ) : void
Résultat void

SelectPreviousMode() public méthode

public SelectPreviousMode ( ) : void
Résultat void

SelectedMode() public méthode

public SelectedMode ( ) : string
Résultat string

UpdateSensor() public méthode

Update the sensor and this will raised an event on the interface
public UpdateSensor ( object state ) : void
state object
Résultat void