Shambhoo kumarRajiv SharmaIoTBoys
Published

Getting Started With Netduino, Learn IoT Using C# .NET

In this project we are covering basics of Netduino, features of Netduino, Software installation guideline and LED blinking program using C#.

BeginnerProtip1 hour1,577
Getting Started With Netduino, Learn IoT Using C# .NET

Things used in this project

Software apps and online services

Visual Studio 2015
Microsoft Visual Studio 2015
.NET Micro Framework

Story

Read more

Code

Source Code

C#
Source Code
using System;
using System.Net;
using System.Net.Sockets;
using System.Threading;
using Microsoft.SPOT;
using Microsoft.SPOT.Hardware;
using SecretLabs.NETMF.Hardware;
using SecretLabs.NETMF.Hardware.Netduino;

namespace LED_Blink
{
    public class Program
    {
        public static void Main()
        {
            OutputPort onboardLED = new OutputPort(Pins.ONBOARD_LED, true);

            while (true)
            {
                onboardLED.Write(false);
                Thread.Sleep(500);
                onboardLED.Write(true);
                Thread.Sleep(500);
            }
        }
    }
}

Credits

Shambhoo kumar

Shambhoo kumar

4 projects • 43 followers
Rajiv Sharma

Rajiv Sharma

16 projects • 69 followers
Having more than 10 years of experience in IoT and software technology. Founded IoTBoys to share knowledge with IoT enthusiasts.
IoTBoys

IoTBoys

9 projects • 114 followers
Watch, Learn and Built IoT projects | DIY IoT Projects | IoT Projects for College Student.

Comments