Home→Forums→MonoBrick EV3 Firmware→Latest version?→Reply To: Latest version?
August 14, 2014 at 19:09
#4618
Vlad Ruzov
Participant
The example below works with old dll (from sd image) and does not work with dll that you provided.
using System;
using System.Threading;
using MonoBrickFirmware.Display;
namespace HelloWorld
{
public static class Program
{
public static void Main( string[] args)
{
LcdConsole.WriteLine ("Hello World!");
Thread.Sleep (2000);
}
}
}
Follow