Netduino home hardware projects downloads community

Jump to content


The Netduino forums have been replaced by new forums at community.wildernesslabs.co. This site has been preserved for archival purposes only and the ability to make new accounts or posts has been turned off.

miltonkbenjamin

Member Since 19 Dec 2013
Offline Last Active Mar 16 2014 12:28 AM
-----

Topics I've Started

Netduino Drivers for Grove - Temp&Humi Sensor SEN11301P

15 March 2014 - 09:31 PM

All,

 

Has anyone ported the Arduino Software for the Grove Temperature and humidity sensor SEN11301P to the Netduino ?

 

The code for the Arduino can be found at:

 

https://github.com/S...perature_Sensor

 

BTW,  I am also looking for inexpensive sensors to interface with the Netduino for (possibly thousands)

1) CO2

2) Volatile Organic Compounds (VOCs)

3) Wind speed

4) Wind direction

5) GPS

6) Electric, gas, steam, and water meter sensors

7) Alternating and Direct Current

8) Alternating and direct Voltage

9) Power Factor\

10) Stack temperature and %CO2

11) Pump pressure 0->25 PSI

12) Fan Pressure 0->20 inches water column

 

Thanks,

 

Milt


error: MMP0000: CLR_E_ENTRY_NOT_FOUND

18 February 2014 - 03:14 PM

MMP : error MMP0000: CLR_E_ENTRY_NOT_FOUND

Occurs during build.

 

Member of .NET Framework 4
  C:Program Files (x86)Reference AssembliesMicrosoftFramework.NETFrameworkv4.0System.Workflow.Runtime.dll
 

Source:

using System;
using System.Threading;
using Microsoft.SPOT;
using Microsoft.SPOT.Hardware;
using SecretLabs.NETMF.Hardware;
using SecretLabs.NETMF.Hardware.Netduino;
using Toolbox.NETMF.Hardware;
using Toolbox.NETMF.NET;
using Toolbox.NETMF;

namespace NetdunoGPS
{
  public class Program
  {
  public static NmeaGps Gps = new NmeaGps();
  public static OutputPort Led = new OutputPort(Pins.ONBOARD_LED, false);
  // ********************************* **************************************
  public static void Main()
  {
  // Binds all events to the GPS device
  Gps.GotFix += new NativeEventHandler(Gps_GotFix);
  Gps.LostFix += new NativeEventHandler(Gps_LostFix);
  Gps.PositionChanged += new NativeEventHandler(Gps_PositionChanged);
  // Starts the GPS device
  Debug.Print("Trying to get a fix...");
  Gps.Start();
  // Nice blinking LED effect when we have a fix
  while (true)
  {
  Led.Write(Gps.Fix);
  Thread.Sleep(450);
  Led.Write(!Gps.Fix);
  Thread.Sleep(50);
  }
  }
  // ***********************************************************************
  static void Gps_PositionChanged(uint Unused, uint FixType, DateTime GPSTime)
  {
  string Outp = "";
  Outp += "3D-Fix: " + Gps.Fix3D.ToString();
  Outp += ", Sattellites: " + Gps.Satellites.ToString();
  Outp += ", Time: " + Gps.GPSTime.ToString();
  Outp += ", Latitude: " + Gps.SLatitude;
  Outp += ", Longitude: " + Gps.SLongitude;
  Outp += ", Altitude: " + Gps.SAltitude;
  Outp += ", Knots: " + Gps.Knots.ToString() + " (" + Gps.Kmh.ToString() + " km/h)";
  Debug.Print(Outp);
  // If you want to translate this to a Bing Maps URL, try this:
  Debug.Print("http://www.bing.com/maps/?q=" + Tools.RawUrlEncode(Gps.Latitude.ToString() + " " + Gps.Longitude.ToString()));
  }
  // ***********************************************************************
  static void Gps_GotFix(uint Unused, uint FixType, DateTime GPSTime)
  {
  Debug.Print("We got a fix, yay!!");
  }
  // ***********************************************************************
  static void Gps_LostFix(uint Unused, uint FixType, DateTime GPSTime)
  {
  Debug.Print("We lost our GPS fix :(");
  }
  // ***********************************************************************
  }
}
 

Any Ideas?

 

Thanks,

 

Milt


Running Sqlite3 on Netduino2+

17 February 2014 - 01:40 AM

Does anyone know how to run sqlite3 on the Netduion2+?

 

Thanks,

 

Milt


Netduino as a Prototyping Platform.

24 December 2013 - 06:37 AM

All,

 

Netduino is an excellent prototyping platform.  However, doing any thing useful may require 4 or 5 shields.

 

Has anyone taken a completed design to a  solid state foundry and had it shrunk to a single chip?

 

If so, how much should I expect this step to cost for 5-6 shields for 1,000 -> 10,000 copies?  Any recommended

 

foundries?

 

Thanks,

 

Milt


Installing Toolsets

24 December 2013 - 01:23 AM

All,

 

After unpacking one tool box, i get in c:programfiles (x86)netfmToobox.com    :

 

/.NET Micro Framework Toolbox/Assemblies/v4.1/be/Toolbox.NETMF.Hardware.NmeaGps.dll ./.NET Micro Framework Toolbox/Assemblies/v4.1/be/Toolbox.NETMF.Hardware.NmeaGps.pdb ./.NET Micro Framework Toolbox/Assemblies/v4.1/be/Toolbox.NETMF.Hardware.NmeaGps.pdbx ./.NET Micro Framework Toolbox/Assemblies/v4.1/be/Toolbox.NETMF.Hardware.NmeaGps.pe ./.NET Micro Framework Toolbox/Assemblies/v4.1/le/Toolbox.NETMF.Hardware.NmeaGps.dll ./.NET Micro Framework Toolbox/Assemblies/v4.1/le/Toolbox.NETMF.Hardware.NmeaGps.pdb ./.NET Micro Framework Toolbox/Assemblies/v4.1/le/Toolbox.NETMF.Hardware.NmeaGps.pdbx ./.NET Micro Framework Toolbox/Assemblies/v4.1/le/Toolbox.NETMF.Hardware.NmeaGps.pe ./.NET Micro Framework Toolbox/Assemblies/v4.1/Toolbox.NETMF.Hardware.NmeaGps.dll ./.NET Micro Framework Toolbox/Assemblies/v4.1/Toolbox.NETMF.Hardware.NmeaGps.pdb ./.NET Micro Framework Toolbox/Assemblies/v4.2/be/Toolbox.NETMF.Hardware.NmeaGps.dll ./.NET Micro Framework Toolbox/Assemblies/v4.2/be/Toolbox.NETMF.Hardware.NmeaGps.pdb ./.NET Micro Framework Toolbox/Assemblies/v4.2/be/Toolbox.NETMF.Hardware.NmeaGps.pdbx ./.NET Micro Framework Toolbox/Assemblies/v4.2/be/Toolbox.NETMF.Hardware.NmeaGps.pe ./.NET Micro Framework Toolbox/Assemblies/v4.2/le/Toolbox.NETMF.Hardware.NmeaGps.dll ./.NET Micro Framework Toolbox/Assemblies/v4.2/le/Toolbox.NETMF.Hardware.NmeaGps.pdb ./.NET Micro Framework Toolbox/Assemblies/v4.2/le/Toolbox.NETMF.Hardware.NmeaGps.pdbx ./.NET Micro Framework Toolbox/Assemblies/v4.2/le/Toolbox.NETMF.Hardware.NmeaGps.pe ./.NET Micro Framework Toolbox/Assemblies/v4.2/Toolbox.NETMF.Hardware.NmeaGps.dll ./.NET Micro Framework Toolbox/Assemblies/v4.2/Toolbox.NETMF.Hardware.NmeaGps.pdb

 

How would I import these tools into the Microsoft Visual C# toolbox menu?  What is the

difference between  le and  lb?  What does pe, pdbx and pdb mean?

 

Thanks,

 

Milt


home    hardware    projects    downloads    community    where to buy    contact Copyright © 2016 Wilderness Labs Inc.  |  Legal   |   CC BY-SA
This webpage is licensed under a Creative Commons Attribution-ShareAlike License.