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.

mutsop

Member Since 05 Jan 2012
Offline Last Active Feb 21 2013 10:11 PM
-----

Topics I've Started

What to make?

30 January 2012 - 01:54 PM

I hope this thread will be appreciated :) So the idea is to post all of your components and let others decide/suggest a great project for you. With components I mean shields/sensors/hardware(robot chassis for example)... So no types of resistors/diodes/. Please, do link to a datasheet or webshoppage. I would love to see the finished project or just a reply whether you will create the suggested project or not.

XBee choice

25 January 2012 - 09:54 AM

Hi I'm still unable to make choice between teh XBees. When I check their site I seem to find some specifications on all of their products: http://www.digi.com/xbee/ Now I'm not sure what to take into consideration. For example what differences are there in MultiPoint and Mesh network? What about the protocol are there any differences in coding? setup? As of now I would just need it for testing. Range should be minimum 150m. Any ideas? Kind regards Peter

google api issue

22 January 2012 - 04:00 PM

I'm not sure how I should name the title for this but here goes my problem:

So my first challenge with the n+ was to lit up a led whenever I get a new mail.

So a few issues goes thourgh my mind:
1- I suppose there is a limit amount of queries you can do in a certain amount of time... But how many?
2- I need an api key but where do I get it? I keep finding those for use with a domain name (which I don't have as its a standalone program)

So this is my code as for now:
using System;
using System.Net;
using System.Net.Sockets;
using System.Threading;
using System.Xml;
using Microsoft.SPOT;
using Microsoft.SPOT.Hardware;
using Microsoft.SPOT.Net;
using SecretLabs.NETMF.Hardware;
using SecretLabs.NETMF.Hardware.NetduinoPlus;
using Google.GData.Client;

namespace GmailAlert
{
    public class Program
    {
        public static void Main()
        {
            string CONSUMER_KEY = "mydomain.com";
            string CONSUMER_SECRET = "my_consumer_secret";
            string TARGET_USER = "test_user";

            OAuth2LeggedAuthenticator auth = new OAuth2LeggedAuthenticator("GmailFeedReader", CONSUMER_KEY, CONSUMER_SECRET, TARGET_USER, CONSUMER_KEY);
            HttpWebRequest request = auth.CreateHttpWebRequest("GET", new Uri("https://mail.google.com/mail/feed/atom/"));
            HttpWebResponse response = request.GetResponse() as HttpWebResponse;

            XmlReader reader = XmlReader.Create(response.GetResponseStream());

            while (reader.Read())
            {
                Debug.Print(reader.Name);
            }
        }

    }
}

I still need to implement the code to get the number of the "fullamount" node. But as for now this is a test.

But as for the questions I tried expert-exchange forum and even the google groups and none have answered so far... Quite ironic if you ask me.

So I hope you guys could help me with that :)

Also if someone knew how to get the same result for hotmail (api) you'll get a cookie!
as the only things I seem to find info on is contacts, calendar, files... but no mails.

onewire library

21 January 2012 - 11:42 AM

Hi, I've seen several post about the DS18B20 and the need to use a onewire library. The only thing I seem to find are codes without linking or attaching the library. So my question to you, where do I find this dll? :) or maybe source. I tried checking the maxim website as I do remember my work using it for their rfid Ibutton readers. But nowhere do i find a library. Regards

Debugging stops

19 January 2012 - 08:13 PM

Hi, After some successful tests with an LCD I was about to try netmftoolbox for my keypad. So I downloaded the files and used the samples. I connected everything, set the device to netduinoplus and pressed "Start Debugging". It starts to debug and then suddenly stops (and the play button is available again) but I don't get any runtime errors. The only thing I do see (in the status update) is the following message: "The debugging target is not in an initialized state, rebooting...". I'm not sure if it said the same thing the first time I've done this. But I do remember the debugging not stopping suddenly without me pressing the stop icon. Any ideas? As I'm really not in the mood to give up this wonderful hobby.

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.