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