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.

YuvaRaja

Member Since 30 Jan 2013
Offline Last Active Dec 16 2014 04:08 AM
-----

Posts I've Made

In Topic: Serial Port Data Lost

08 October 2013 - 12:08 PM

Create a thread and continuously check for data is available or not..

ex:

public static void SomeThread()        {            while (true)            {                int t = Serialport.BytesToRead;                if (t > 0)                {                    receivedData = new byte[t];                    Serialport.Read(receivedData, 0, receivedData.Length);                }            }        }

In Topic: How uae porting kit?

12 September 2013 - 08:11 AM

Any update...?


In Topic: Microsecond timing

23 May 2013 - 01:47 PM

I found a link for Microsecond delay in the Netduino.

 

http://www.j2i.net/b...-Framework.aspx

 

But this is only for netduino and depends upon the Hardware also.


In Topic: UsbController.GetControllers();

21 February 2013 - 04:10 AM

Hi Noom, i have my own PCB.That has one debug port and one USB host port.

The UsbController[] controllers = UsbController.GetControllers(); method returns both the debug port and the USB host port.

So i need to know how to implement the USB host after detecting the host port in NETMF...?


In Topic: Pass analog value through cable without loss

08 February 2013 - 04:26 AM

Hi am using

http://www.nex-robot...l-pot-3296.html

this pot.....

 

Sorry for the inconvenience just today only am confirm to use this pot

Am not use a coax cable till now....

i wil try to use it today...

 

 

 

Regards YuvaRaja...
 


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.