Beispiel #1
0
 public StarterRelay(Cpu.Pin pin, bool initialState, bool glitchFilter, Port.ResistorMode resistor, int timeout, Sensors.Tachometer tach)
     : base(pin, initialState, glitchFilter, resistor, timeout)
 {
     Tachometer = tach;
 }
Beispiel #2
0
 public IgnitionRelay(Cpu.Pin pin, bool initialState, bool glitchFilter, Port.ResistorMode resistor, Sensors.Tachometer tach)
     : base(pin, initialState, glitchFilter, resistor, -1)
 {
     Tachometer = tach;
 }
Beispiel #3
0
 public StarterRelay(Cpu.Pin pin, bool initialState, int timeout, Sensors.Tachometer tach)
     : base(pin, initialState, timeout)
 {
     Tachometer = tach;
 }
Beispiel #4
0
 public IgnitionRelay(Cpu.Pin pin, bool initialState, Sensors.Tachometer tach)
     : base(pin, initialState, -1)
 {
     Tachometer = tach;
 }
Beispiel #5
0
 public IgnitionRelay(Cpu.Pin pin, bool initialState, bool glitchFilter, Port.ResistorMode resistor, Sensors.Tachometer tach)
     : base(pin, initialState, glitchFilter, resistor, -1)
 {
     Tachometer = tach;
 }
Beispiel #6
0
 public IgnitionRelay(Cpu.Pin pin, bool initialState, Sensors.Tachometer tach)
     : base(pin, initialState, -1)
 {
     Tachometer = tach;
 }
Beispiel #7
0
 public StarterRelay(Cpu.Pin pin, bool initialState, bool glitchFilter, Port.ResistorMode resistor, int timeout, Sensors.Tachometer tach)
     : base(pin, initialState, glitchFilter, resistor, timeout)
 {
     Tachometer = tach;
 }
Beispiel #8
0
 public StarterRelay(Cpu.Pin pin, bool initialState, int timeout, Sensors.Tachometer tach)
     : base(pin, initialState, timeout)
 {
     Tachometer = tach;
 }