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.

Don King's Content

There have been 30 items by Don King (Search limited from 28-April 23)


By content type

See this member's


Sort by                Order  

#34404 Help with DS18B20 and basic electronics

Posted by Don King on 30 August 2012 - 02:33 AM in Netduino Plus 2 (and Netduino Plus 1)

Hi All - Sorry for the elementary questions on electronics. I am a .NET Developer who is just getting started using micro-controllers, specifically the Netduino Plus. I have been running through many examples, learning basics with the .NETMF, learning to flash upgrded software etc. I have literally no experience with wiring and such except for the wire I put in the 3.3v hookup and touched the gold erase pad. That's it.

Now that you know my electronics level, on to the questions...

I want to use the DS18B20 Temperature Sensor that I bought from Sparkfun. The technician gave me a little verbal layout of the wiring:


Sensor-------->Netduino Plus
-GND(black wire)----GND
-VDD(red wire) ----3.3V
-DQ(white wire)---Digital Pin on the Netduino

She also mentioned putting a 4.7 pull up resistor between the signal and power pin. I actually sort of follow what she is saying after reading a couple of things online and some information from a Netduino book. I feel like I need another piece like a breadboard (no idea which one to get) and some jumper wires. I purchased a pack of resisitors and so I am good there. It appears that wiring this thing directly to the Netduino Plus is either impractical, ill-advised or both. I have seen a few postings on this subject with pictures posted on how someone has wired it up although I am not certain what I am looking at.

Any direction on that is appreciated. I did run through a breadboard tutorial to which another user posted a link but I was wary because the tutorial was hard to understand and the comments seemed to dispute the authors calculation of resitance provided by X number of resistors. The last thing I want to do is burn up some hardware (obviously).

Additonally, I have questions about OneWire support. I have read through several posts trying to figure out where that support effort currently is for the Netduino. I have thus far noted the following:

1. A gentleman named CW2 has produced a very nice implementation of OneWire support. There was talk of including it in the official release but that did not come to fruition.

2. The Microsoft .NETMF 4.2 has OneWire support in the Microsoft.SPOT.Hardware.OneWire assembly.

3. At this point in time, if I want to use the DS18B20 Temperature Sensor I need one wire support and will need to flash the modified (unsupported?) version created as a special build and includes CW2's implementation. My understanding is that the Secret Labs SDK would need to include a Netduino Plus specific implementation for whichever (CW2 or Microsoft.SPOT.Hardware.OneWire) to use this device.

If I have misstated anything above please do correct me. All of this is my next big step in understanding the basics of how to get this sensor to work properly for my project.

I thank you very much for taking your time to read this and certainly with any help you can provide.

Regards,

Don



#34403 Issue with resolving AnalogInput

Posted by Don King on 30 August 2012 - 01:43 AM in Netduino Plus 2 (and Netduino Plus 1)

Hi Don,

Did you upgrade your Netduino Plus to .NET Micro Framework 4.2?

If so, then add SecretLabs.NETMF.Hardware.AnalogInput.dll as a reference to your project.

If not, then you'll want to change the target framework for your application to .NET MF 4.1 in your project properties.

Does this resolve the issue for you? We're here to help.

Chris


That did it! I am at .NETMF 4.2. I added the missing reference and now it works with fully qualfied reference.

var voltagePort = new SecretLabs.NETMF.Hardware.AnalogInput(Pins.GPIO_PIN_A1);

Thanks much for your help!

Don



#34397 Issue with resolving AnalogInput

Posted by Don King on 29 August 2012 - 11:48 PM in Netduino Plus 2 (and Netduino Plus 1)

I hope this is the right place to post this. Please let me know otherwise.

I am a .NET Developer but a newbie to micro-controllers and electronics. I have been going through the samples and reading through two books, one of which is Getting Started with the Internet of Things. I am sure that others here are familiar with this. The code below has an issue that I cannot seem to get resolved. When I search the forum I see it mentioned but it seems to be pre release of .NETMF 4.2. The issue is marked below with a comment. I cannot get the 'AnalogInput' class to resolve except through the Microsoft.SPOT.Hardware namespace at which time it wants a type of Cpu.AnalogChannel as an argument. I have tried 'Cpu.AnalogChannel.ANALOG_1' as the argument for this code but it does not work. I am somewhat lost.

I have connected a potentiometer to the Analog In (Pins 0, 1 and 2) but when I run the application the voltage always reads out as 0.00 so either I don't have it hooked up correctly or my code is wrong. I am guessing the latter.

I have seen previous postings where it is mentioned that you should use 'SecretLabs.NETMF.Hardware.AnalogInput' but I am not seeing that class exist. I do notice however that if I use:

var voltagePort = new Microsoft.SPOT.Hardware.AnalogInput(Cpu.AnalogChannel.ANALOG_0);

and then try to declare:

var lowPort = new OutputPort(Pins.GPIO_PIN_A0, false);

I get an error as if the first declaration took the resource on the board and is having a conflict. That makes me think that my code is actually correct and I don't know what I am doing with the potentiometer (that is highly likely).

Below is my current code taken from the book with my mods:

using System.Threading;
using Microsoft.SPOT;
using Microsoft.SPOT.Hardware;
using SecretLabs.NETMF.Hardware;
using SecretLabs.NETMF.Hardware.NetduinoPlus;

public class VoltageReader
{
    public static void Main()
    {
        const double maxVoltage = 3.3;
        const int maxAdcValue = 1023;

        //var voltagePort = new AnalogInput(Pins.GPIO_PIN_A1); //THIS HAS AN ISSUE RESOLVING
        var voltagePort = new Microsoft.SPOT.Hardware.AnalogInput(Cpu.AnalogChannel.ANALOG_1); //REPLACED LINE WITH THIS
        var lowPort = new OutputPort(Pins.GPIO_PIN_A0, false);
        var highPort = new OutputPort(Pins.GPIO_PIN_A2, true);

        while (true)
        {
            int rawValue = voltagePort.Read();
            double value = (rawValue * maxVoltage) / maxAdcValue;
            Debug.Print(rawValue + "  " + value.ToString("f"));
            Thread.Sleep(3000);                     // 3 seconds
        }
    }
}
Any help is appreciate to point me in the right direction.

Thanks!

Don



#34288 Netduino+ and Wifi

Posted by Don King on 27 August 2012 - 04:31 PM in Netduino Plus 2 (and Netduino Plus 1)

Not sure if this will help, but I ended up using a TiVo wireless N adapter that I already had and it works great. It has a cat5 cable and RJ-45 connector that plugs right into the ethernet port on the Netduino Plus. The other thing I like about it is the WPS capability for security with the router. I had it up and going in just a few minutes.

They can be found pretty cheap on eBay.

The other thing I like is that it shows the Netduino's MAC address in my router's client list and the IP address gets assigned to the Netduino. Since I am new to Netduino I don't know if there are ever problems otherwise but was happy to see that the wireless adapter just acts as an extension.

Other quick note is I am using a Belkin router but I would think could use other routers (it has the ability to enter encryption key if you don't have WPS on your router), and the adapter needs a power source.

I hope this helps.

Don



#34185 Netduino Firmware v4.2.0

Posted by Don King on 25 August 2012 - 02:06 AM in Netduino 2 (and Netduino 1)

I have installed the TinyBooter but now my Netduino is not recognized as Windows can't find a driver. I see it in my Device Manager but it says that drivers for this device are not installed. Any thoughts? I am running Windows 7 64bit. The MFDeploy doesn't see the device either and it did before. Any help is appreciated as I now just have a dead Netduino ;-) Let me know what other information I can provide. Thanks! Don




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.