Feiko
Published © MIT

Getting started with.NET nanoFramework

A getting started guide to.NET nanoFramework - c# for microcontrollers. In this guide I show you how to create and run Blinky on an ESP32

BeginnerProtip1 hour2,229
Getting started with.NET nanoFramework

Things used in this project

Hardware components

ESP32
Espressif ESP32
×1

Software apps and online services

Visual Studio extension
.NET nanoFramework Visual Studio extension
Microsoft Visual Studio

Story

Read more

Code

Blinky

C#
A simple blinky app written in C# for .NET NanoFramework
using System;
using System.Diagnostics;
using System.Threading;
using System.Device.Gpio;

namespace NFBlinky
{
    public class Program
    {

        private static GpioController s_GpioController; 
        public static void Main()
        {
            Debug.WriteLine("Hello from nanoFramework!");

            s_GpioController = new GpioController();
            GpioPin led = s_GpioController.OpenPin(5, PinMode.Output);

            while (true)
            {
                led.Toggle();
                Thread.Sleep(1000);
            }

            Thread.Sleep(Timeout.Infinite);

            // Browse our samples repository: https://github.com/nanoframework/samples
            // Check our documentation online: https://docs.nanoframework.net/
            // Join our lively Discord community: https://discord.gg/gCyBu8T
        }
    }
}

Credits

Feiko
1 project • 1 follower
Hi, I'm Feiko Gorter, an IoT specialist, inventor, speaker, dyslexic and .NET geek.
Contact
Thanks to Feiko.IO.

Comments

Please log in or sign up to comment.