Esempio n. 1
0
 private static void ShowSplashScreen(ICharacterLcdDriver lcd)
 {
     lcd.Clear();
     lcd.Home();
     lcd.Print("Verdant Node 0.1");
     lcd.SetCursor(0,1);
     lcd.Print("Booting...");
 }
 public DisplayAgent()
 {
     _lcd = (ICharacterLcdDriver)DiContainer.Instance.Resolve(typeof(ICharacterLcdDriver));
     _properties = (PropertyDictionary)DiContainer.Instance.Resolve(typeof(PropertyDictionary));
 }