Exemplo n.º 1
0
 /// <summary>
 /// Pauses the program for the amount of time (in microseconds)
 /// specified as parameter.
 /// </summary>
 /// <param name="microseconds">Amount of time of the pause (in microseconds).</param>
 public void DelayMicroseconds(uint microseconds)
 {
     ArduinoInterop.delay(microseconds);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Pauses the program for the amount of time (in milliseconds)
 /// specified as parameter.
 /// </summary>
 /// <param name="milliseconds">Amount of time of the pause (in milliseconds).</param>
 public void Delay(ulong milliseconds)
 {
     ArduinoInterop.delay(milliseconds);
 }