예제 #1
0
 public DisplayUpdater(ISmoker smoker, IDisplay display)
 {
     _smoker            = smoker;
     _display           = display;
     _heartbeatFlag     = false;
     _updateDisplayLoop = UpdateDisplayLoop();
 }
예제 #2
0
 public TempsController(ISmoker smoker)
 {
     _smoker = smoker;
 }
예제 #3
0
 public FireMinder(ISmoker smoker, IRelayDevice igniter)
 {
     _smoker         = smoker;
     _igniter        = igniter;
     _fireMinderLoop = FireMinderLoop();
 }
예제 #4
0
 public PValueController(ISmoker smoker)
 {
     _smoker = smoker;
 }
예제 #5
0
 public ModeController(ISmoker smoker)
 {
     _smoker = smoker;
 }
예제 #6
0
 public SetpointController(ISmoker smoker)
 {
     _smoker = smoker;
 }
예제 #7
0
 public StatusController(ISmoker smoker)
 {
     _smoker = smoker;
 }