Skip to content

Instantly share code, notes, and snippets.

@hatsunea
Created July 23, 2023 04:54
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/b014f2a95c740a6c67986aa72cb4f360 to your computer and use it in GitHub Desktop.
Save hatsunea/b014f2a95c740a6c67986aa72cb4f360 to your computer and use it in GitHub Desktop.
using nanoFramework.M5Stack;
using Console = nanoFramework.M5Stack.Console;
namespace M5StackCore2TFMiniSSample
{
public class Program
{
public static void Main()
{
Setup();
Console.WriteLine("HelloWorld");
}
private static void Setup()
{
M5Core2.InitializeScreen();
Console.Clear();
Console.ForegroundColor = System.Drawing.Color.White;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment