コード例 #1
0
 /// <summary>
 /// Makes a Mocha Coffee
 /// 1. Indicate the machine as running and display the purchased type of coffee to LED.
 /// 2. Grind coffee beans for 8 seconds.
 /// 3. Heat up the water to 150 degree F.
 /// 4. Indicate the machine is not running to the LED.
 /// </summary>
 /// <param name="cmm"></param>
 public void run(CMM cmm)
 {
     cmm.LEDNumber    = 13;
     cmm.GrindingTime = 8;
     cmm.Temperature  = 200;
     cmm.AddCondiment()
 }
コード例 #2
0
ファイル: USB.cs プロジェクト: aroseman/WrapperLab
 public void run(CMM cmm)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
ファイル: Coffee.cs プロジェクト: aroseman/WrapperLab
 public abstract void run(CMM cmm);
コード例 #4
0
 public void run(CMM cmm)
 {
 }