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.

stan4th

Member Since 18 Dec 2010
Offline Last Active May 31 2012 07:44 AM
-----

Topics I've Started

Battery Power

06 October 2011 - 07:54 PM

Hi, quick question; what do I need to power Netduino+ with battery, which points to insert +ve & -ve, anything I need to be wary of? Cheers

EM406a not fixing satelites

10 September 2011 - 04:31 PM

Hi,
I've wired up and written a code to read from a EM406a GPS unit and I'm getting messages from it but I don't think I'm getting a fix on any satellites.
The led on the EM406a is staying steady red.
Does anyone have any ideas about what I might try please?

Thanks

    public class Program
    {
        public static void Main()
        {
            
            AnalogInput rx = new AnalogInput(Pins.GPIO_PIN_A0);
            SerialPort serialPort = new SerialPort("COM1", 4800, Parity.None, 8, StopBits.One);
            serialPort.Open();
            

            while (true)
            {
                int bytesToRead = serialPort.BytesToRead;
                if (bytesToRead > 0)
                {
                    // get the waiting data
                    byte[] buffer = new byte[bytesToRead];
                    serialPort.Read(buffer, 0, buffer.Length);
                    // print out our received data
                    var msg = new String(System.Text.Encoding.UTF8.GetChars(buffer));
                    Debug.Print(msg);
                }

                Thread.Sleep(100); // wait a bit so we get a few bytes at a time...
            }

SAMPLE OUTPUT
================

$GPGGA,181115.872,,,,,0,00,,,M,0.0,M,,0000*56
$GPGSA,A,1,,,,,,,,,,,,,,,*1E
$GPRMC,181115.872,V,,,,,,,080911,,,N*4C
$GPGGA,181116.871,,,,,0,00,,,M,0.0,M,,0000*56
$GPGSA,A,1,,,,,,,,,,,,,,,*1E
$GPRMC,181116.871,V,,,,,,,080911,,,N*4C

$GPGGA,181117.872,,,,,0,00,,,M,0.0,M,,0000*54
$GPGSA,A,1,,,,,,,,,,,,,,,*1E
$GPRMC,181117.872,V,,,,,,,080911,,,N*4E
$GPGGA,181118.874,,,,,0,00,,,M,0.0,M,,0000*5D
$GPGSA,A,1,,,,,,,,,,,,,,,*1E
$GPGSV,1,1,00*79
$GPRMC,181118.874,V,,,,,,,080911,,,N*47
$GPGGA,181119.872,,,,,0,00,,,M,0.0,M,,0000*5A
$GPGSA,A,1,,,,,,,,,,,,,,,*1E
$GPRMC,181119.872,V,,,,,,,080911,,,N*40
$GPGGA,181120.872,,,,,0,00,,,M,0.0,M,,0000*50
$GPGSA,A,1,,,,,,,,,,,,,,,*1E
$GPRMC,181120.872,V,,,,,,,080911,,,N*4A
$GPGGA,181121.871,,,,,
55
$GPGSA,A,1,,,,,,,,,,,,,,,*1E
$GPRMC,181125.872,V,
,,,,,,080911,,,N*4F

$GPGGA,181126.872,,,,,0,
00,,,M,0.0,M,,0000*56
$GPGSA,A,1,,,,,,,,,,,,,,,*1
E
$GPRMC,181126.872,V,,,,,,,080911,,,N*4C

$G
PGGA,181127.872,,,,,0,00,,,M,0.0,M,,0000*57
$GPG
SA,A,1,,,,,,,,,,,,,,,*1E
$GPRMC,181127.872,V,,,,,,
,080911,,,N*4D

$GPGGA,181128.872,,,,,0,00,,,M
,0.0,M,,0000*58
$GPGSA,A,1,,,,,,,,,,,,,,,*1E
$G
PGSV,1,1,00*79
$GPRMC,181128.872,V,,,,,,,080911,,
,N*42

$GPGGA,1811
29.875,,,,,0,00,,,M,0.0,M,,0000*5E
$GPGSA,A,1,,,,
,,,,,,,,,,,*1E
$GPRMC,181129.875,V,,,,,,,080911,,
,N*44

$GPGGA,181130.874,,,,,0,00,,,M,0.0,M,,0
000*57
$GPGSA,A,1,,,,,,,,,,,,,,,*1E
$GPRMC,1811
30.874,V,,,,,,,080911,,,N*4D

$GPGGA,181131.87
4,,,,,0,00,,,M,0.0,M,,0000*56
$GPGSA,A,1,,,,,,,,,
,,,,,,*1E
$GPRMC,181131.874,V,,,,,,,080911,,,N*4C

Raspberry PI

20 August 2011 - 09:43 AM

Hi,
some of you may find this interesting - again delete if this is not acceptable!! It's a very small, cheap computer!!

Rasberry Pi Homepage

EM406 cable

14 August 2011 - 10:38 AM

Hi,
not sure how to explain this question, but I have an EM406 GPS with a short cable for interfacing. However, the socket on it is tiny and would require really thin wires to insert into them.
Does anyone know whether there is a socket adapter which will fit this and provide a more pratical interface so that standard wires would be plugged in?

EM406 showing cable

Thanks

New Arduino

11 August 2011 - 12:31 PM

Hi,
just noticed a new Arduino has been released with inbuilt ethernet PoE and able to "use/work with" usb devices, Android programmable etc.
Are any of these features not available on Netduino?
Cheers
New Arduino

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.