Skip to content

Commit 751719a

Browse files
author
Matthew Mihok
committed
intial commit
1 parent d648807 commit 751719a

11 files changed

+55
-3
lines changed

MetaDataProcessor.exe

821 KB
Binary file not shown.

Microsoft.SPOT.Hardware.dll

30.5 KB
Binary file not shown.

Microsoft.SPOT.Native.dll

18.5 KB
Binary file not shown.

Microsoft.SPOT.TinyCore.dll

89 KB
Binary file not shown.

Program.cs

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
using System;
2+
using System.Threading;
3+
using Microsoft.SPOT;
4+
using Microsoft.SPOT.Hardware;
5+
using SecretLabs.NETMF.Hardware;
6+
using SecretLabs.NETMF.Hardware.Netduino;
7+
8+
namespace MonoNetduinoApp
9+
{
10+
public class Program
11+
{
12+
public static void Main()
13+
{
14+
// write your code here
15+
OutputPort led = new OutputPort(Pins.ONBOARD_LED, false);
16+
17+
while (true)
18+
{
19+
led.Write(true);
20+
Thread.Sleep(250);
21+
led.Write(false);
22+
Thread.Sleep(250);
23+
}
24+
}
25+
26+
}
27+
}

Properties/AssemblyInfo.cs

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("MPDClient")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("Niewma Systems")]
12+
[assembly: AssemblyProduct("NSI-100-MPDC")]
13+
[assembly: AssemblyCopyright("2013 (c) Niewma Systems Inc.")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Version information for an assembly consists of the following four values:
18+
//
19+
// Major Version
20+
// Minor Version
21+
// Build Number
22+
// Revision
23+
//
24+
[assembly: AssemblyVersion("1.0.0.0")]
25+
[assembly: AssemblyFileVersion("1.0.0.0")]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
netduino-mpdclient
2-
==================
1+
netduino-mpc
2+
=====
33

4-
A client implementation of mpd for netduino
4+
Implementation of MPD Client on the Netduino, using libmpc.net (http://libmpc.codeplex.com/)
7 KB
Binary file not shown.

SecretLabs.NETMF.Hardware.dll

5.5 KB
Binary file not shown.

libmpc.net.dll

37.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)