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.

pater

Member Since 14 Jun 2011
Offline Last Active Sep 02 2014 06:55 PM
*****

Posts I've Made

In Topic: X10 controller

12 October 2011 - 08:53 AM

if you want to wait in microseconds in .Net you can use this function

static void DelayMicroSec(int microSeconds)
{
    DateTime startTime = DateTime.Now;
    int stopTicks = microSeconds * 10;
    TimeSpan divTime = DateTime.Now - startTime;
    while (divTime.Ticks <= stopTicks)
    {
         divTime = DateTime.Now - startTime;
    }
}

In Topic: Netduino controls Syma S107

06 September 2011 - 12:53 PM

Thank You Mario, now everything seems clear for me. If there will be some progress i will post results.

In Topic: Netduino for beginners - Gentle introduction with basic electronic project

05 August 2011 - 09:22 AM

i like it as well, can't wait to see project five :) thanks a lot for this book/tutorial

In Topic: LCD Library

29 July 2011 - 04:16 PM

Hello, I wrote a simple extension of Szymon's library adding some effect for displaying words, maybe someone finds it interesting. pater Attached File  MFExtendedLCD.zip   82.31KB   49 downloads Attached File  DemoLCD.zip   93.83KB   52 downloads

In Topic: LCD help

17 July 2011 - 10:20 PM

Just had a chat with Pater (in the Netduino Chat) and it's solved by rewiring. Yay :)


That's right, 3rd and 4th wire were messed. Thank all for help :)

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.