Example #1
0
 /// <summary>
 /// non ci servirà effettivamente ma lo teniamo per il collaudo.
 /// </summary>
 public static void Main()
 {
     Umid um = new Umid(Cpu.Pin.GPIO_Pin7);
     um.t = 5000;
     ThreadStart threadDelegate = new ThreadStart(um.MethodAlternateOnOff);
     Thread newThread = new Thread(threadDelegate);
     newThread.Start();
 }