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.

bsilvereagle

Member Since 28 Oct 2012
Offline Last Active Jun 12 2013 12:45 AM
-----

Topics I've Started

Serial Communication Not Working

13 February 2013 - 02:39 AM

I am trying to get a Netduino Plus 2 to communicate with PuTTy.

 

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;using System.IO.Ports;namespace NetduinoPlusRx{    public class Program    {        static SerialPort port;        public static void Main()        {            // write your code here            port = new SerialPort(SerialPorts.COM2, 115200, Parity.None,8,StopBits.One);            port.Open();            while (true)            {                port.Write(new byte[] { 0x01, 0x02, 0x03 }, 0, 2);                Thread.Sleep(100);            }        }    }}

 

PuTTy isn't picking up anything. I have an FTDI cable with Ground connected to Ground, and Rx/Tx connected to pins 3/2. 

 

Any thoughts/obvious errors?

 


Multiple Netduinos, One Computer

08 February 2013 - 03:14 AM

Hello,

 

I have a Netduino Go and a Netduino+2 both connected to my computer and Visual Studio refuses to deploy code to them. 

 

However, if only one is connected at a time then code deploys fine. 

 

In 'Device Manager' they both show up as "Netduino". 

 

Is there a workaround to have multiple Netduino's be programmed from one machine at the same time? Or do I have to program them individually?

 

Thanks,

bsilvereagle


December I2C Beta Drivers

12 November 2012 - 03:58 AM

2. For existing shields which use I2C, you'll want to connect jumper wires between SDA/SCL and A4/A5 for the moment. We're working on an enhancement for the I2C class which will mirror the I2C data on A4/A5 by default (and also turn off the mirroring...so you can get two extra GPIOs instead). That new feature will be available in a December firmware update, giving us the best of both worlds. The same firmware update will bring I2C to Shield Base.


I am using a Shield Base with a Netduino go and was wondering when I2C was going to be implemented. Is there a firmer date than "December" from the above quote? Or if there was an alpha/beta firmware that already implemented I2C for the shield base.

Thanks for all the good work.

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.