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
Datei anzeigen Open project: cyrusbuilt/MonoPi

Public Methods

Method 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 method

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. ///
return System

GarageDoorOpenerDevice() public method

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. ///
return System