C# Class CyrusBuilt.MonoPi.Devices.Garage.GarageDoorOpenerDevice

A device that is an abstraction of a garage door opener. This is an implementation of CyrusBuilt.MonoPi.Devices.Garage.GarageDoorOpenerBase.
Inheritance: GarageDoorOpenerBase
Afficher le fichier Open project: cyrusbuilt/MonoPi

Méthodes publiques

Méthode Description
GarageDoorOpenerDevice ( IRelay relay, ISensor doorSensor, SensorState doorSensorOpenState ) : System

Initializes a new instance of the CyrusBuilt.MonoPi.Devices.Garage.GarageDoorOpenerDevice class with the relay, door sensor, and sensor state that indicates that the door is open.

GarageDoorOpenerDevice ( IRelay relay, ISensor doorSensor, SensorState doorSensorOpenState, ISwitch lok ) : System

Initializes a new instance of the CyrusBuilt.MonoPi.Devices.Garage.GarageDoorOpenerDevice class with the relay, door sensor, the sensor state that indicates that the door is open, and the switch that controls the lock.

Method Details

GarageDoorOpenerDevice() public méthode

Initializes a new instance of the CyrusBuilt.MonoPi.Devices.Garage.GarageDoorOpenerDevice class with the relay, door sensor, and sensor state that indicates that the door is open.
public GarageDoorOpenerDevice ( IRelay relay, ISensor doorSensor, SensorState doorSensorOpenState ) : System
relay IRelay /// The relay that controls the door. ///
doorSensor ISensor /// The sensor that indicates the state of the door. ///
doorSensorOpenState SensorState /// The sensor state that indicates the door is open. ///
Résultat System

GarageDoorOpenerDevice() public méthode

Initializes a new instance of the CyrusBuilt.MonoPi.Devices.Garage.GarageDoorOpenerDevice class with the relay, door sensor, the sensor state that indicates that the door is open, and the switch that controls the lock.
public GarageDoorOpenerDevice ( IRelay relay, ISensor doorSensor, SensorState doorSensorOpenState, ISwitch lok ) : System
relay IRelay /// The relay that controls the door. ///
doorSensor ISensor /// The sensor that indicates the state of the door. ///
doorSensorOpenState SensorState /// The sensor state that indicates the door is open. ///
lok ISwitch /// The switch that controls the lock. ///
Résultat System