Skip to content

Instantly share code, notes, and snippets.

@hatsunea
Last active June 19, 2022 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hatsunea/c25b174858255b5c594dd1adf3429ad7 to your computer and use it in GitHub Desktop.
Save hatsunea/c25b174858255b5c594dd1adf3429ad7 to your computer and use it in GitHub Desktop.
using nanoFramework.M5Stack;
using Console = nanoFramework.M5Stack.Console;
namespace HelloWorld
{
public class Program
{
public static void Main()
{
Setup();
Console.WriteLine("HelloWorld");
}
private static void Setup()
{
M5Core2.InitializeScreen();
Console.Clear();
Console.ForegroundColor = nanoFramework.Presentation.Media.Color.White;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment