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.

Acumen

Member Since 18 Aug 2010
Offline Last Active Aug 24 2010 10:21 PM
-----

Posts I've Made

In Topic: Sparkfun Nokia 6100 Color LCD

24 August 2010 - 10:21 PM

Is variable bit SPI something planned for future firmware updates? Or is it far down the list? I will probably try a software solution for now as it would be a good learning process. Thanks for all the info, hopefully I will have time some night this week to play around a bit and get some code up.

In Topic: Nokia 3310 from nuelectronics

23 August 2010 - 02:22 AM

How similar is the 3310 to the 6100? I just picked one up and am trying to wrap my head around interfacing with it.

In Topic: Reading Serial Connection

22 August 2010 - 02:44 PM

Awesome. Thank you. Starting to get the hang of this thing now.

In Topic: Problem with Analog Input

18 August 2010 - 04:25 AM

Ah there we go. Thank you.

Fun little variable speed blinking program to test the analog input.

Potentiometer hooked up to 3V, Ground and A0.
3V hooked up to Aref.

namespace Netduino_Test_1
{
    public class Program
    {
        public static void Main()
        {
            AnalogInput apin0 = new AnalogInput(Pins.GPIO_PIN_A0);
            OutputPort led = new OutputPort(Pins.ONBOARD_LED, true);
            int test = 0;
            bool ledstate = true;

            while (true)
            {
                ledstate = !ledstate;

                led.Write(ledstate);

                test = apin0.Read();
                Debug.Print("Test: " + test); 

                Thread.Sleep(test/5);
            }

        }

    }
}

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.