Example #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;
 }
Example #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;
 }
Example #3
0
 public StarterRelay(Cpu.Pin pin, bool initialState, int timeout, Sensors.Tachometer tach)
     : base(pin, initialState, timeout)
 {
     Tachometer = tach;
 }
Example #4
0
 public IgnitionRelay(Cpu.Pin pin, bool initialState, Sensors.Tachometer tach)
     : base(pin, initialState, -1)
 {
     Tachometer = tach;
 }
Example #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;
 }
Example #6
0
 public IgnitionRelay(Cpu.Pin pin, bool initialState, Sensors.Tachometer tach)
     : base(pin, initialState, -1)
 {
     Tachometer = tach;
 }
Example #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;
 }
Example #8
0
 public StarterRelay(Cpu.Pin pin, bool initialState, int timeout, Sensors.Tachometer tach)
     : base(pin, initialState, timeout)
 {
     Tachometer = tach;
 }