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.

BrunoPescarolli

Member Since 15 Jul 2012
Offline Last Active Dec 12 2014 12:46 AM
-----

Topics I've Started

Install .NET Micro FramessssworSDK-Mono , on Linux?

08 July 2013 - 05:05 PM

Just download the. NET Micro FrameworkSDK-mono site https://github.com/s...ameworkSDK-Mono. I would cono how to install it it so I can use it on Mono Develop? I am user Linux Mint 11 (linux distribution based on Ubuntu 11.04)


CHMOD via FTP

31 July 2012 - 03:00 AM

Hi i ran FTP sever in my netduino OK! but no support command CHMOD Anyone know of some code in C # chmod me to add my netduino?

WebSever Netduino running , but not load

25 July 2012 - 03:11 AM

Hi I ran a code websever netduino plus, but at the time of typing the address as connection reset the code is based on this link: http://netduinohacki...ello-world.html the output it ok to give the address where the web server is working in my case is 192.168.0.107 but when I type it returns the address in my firefox "The connection was reset" and the application responds connections but the number of bytes remaining = 0. what I do to solve this problem? my router a D-Link DIR-601

start multi-projetc's on netduino

24 July 2012 - 09:59 PM

How do I create dll for my project netduino and also as I run several projects simultaneously in netduino? Run two projects in the same solution. as it does?

Problem Detect the presence of SD in Netduino Plus

19 July 2012 - 10:23 PM

Hello

I am setting up a code to detect the presence of the Micro Sd with Netduino Plus.

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

public class SD_CARD1

{

    static InterruptPort SDPORTA = new InterruptPort((Cpu.Pin)57, false, Port.ResistorMode.PullUp, Port.InterruptMode.InterruptEdgeBoth);
   public static void Main()
   {

       OutputPort SD = new OutputPort((Cpu.Pin)25, false);
       InputPort SD_DETECTADO = new InputPort((Cpu.Pin)57, false, Port.ResistorMode.PullUp);

       Debug.Print("SD CARD DETECTADO!" + (SD_DETECTADO.Read().ToString()));
       SD_DETECTADO.Dispose();

       SDPORTA.OnInterrupt += SDPORTA_OnInterrupt;
   }


   static void SDPORTA_OnInterrupt(uint data1, uint data2, DateTime data)
   {
       Debug.Print("SD CARD foi: " + ((!SDPORTA.Read()) ? "LOCALIZADO" : "REMOVIDO"));
   }
}


By compiling the code OK! but when you start the application returns an error writing the Following:
"An unhandled exception of type 'System.Exception' occurred in Microsoft.SPOT.Hardware.dll"

I do not know if there's anything wrong with the code!

but if something wrong can someone help me?

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.