Disappointed - Netduino Go - Netduino Forums
   
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.
Photo

Disappointed


Best Answer fxpa, 24 February 2013 - 07:16 PM

Hi

 

Tks For your rapid answer.

 

I'm just trying to create a first project.

I've reset everyhting

Update NGo and the shield (but I dont need it for the moment )

 

I've just the netduigo connected on usb The button and the RGB led

 

I've found a code in VB it seems to work now :-)

Go to the full post


  • Please log in to reply
3 replies to this topic

#1 fxpa

fxpa

    New Member

  • Members
  • Pip
  • 3 posts
  • LocationBordeaux FR

Posted 24 February 2013 - 09:41 AM

Hi All

 

I've decide to invest in a ArduinoGo Kit to start my first project.

The choice between Netduino and ARduino was hard to do be .Net is friendly for me so it has helped me to make my choice.

I've receive My and I've try to send My first project copied from this forum " Blinking led"

Nothing Works..

I've upgrade it 4.2.2.2, downgrade it but

 

HalSystemInfo.halVersion:               4.2.0.0

HalSystemInfo.halVendorInfo:            Netduino Go (v4.2.0.2) by Secret Labs LLC

HalSystemInfo.oemCode:                  34

HalSystemInfo.modelCode:                177

HalSystemInfo.skuCode:                  4099

HalSystemInfo.moduleSerialNumber:       00000000000000000000000000000000

HalSystemInfo.systemSerialNumber:       0000000000000000

ClrInfo.clrVersion:                     4.2.0.0

ClrInfo.clrVendorInfo:                  Netduino Go (v4.2.0.2) by Secret Labs LLC

ClrInfo.targetFrameworkVersion:         4.2.0.0

SolutionReleaseInfo.solutionVersion:    4.2.0.2

SolutionReleaseInfo.solutionVendorInfo: Netduino Go (v4.2.0.2) by Secret Labs LLC

SoftwareVersion.BuildDate:              Oct  9 2012

SoftwareVersion.CompilerVersion:        410894

FloatingPoint:                          True

SourceLevelDebugging:                   True

ThreadCreateEx:                         True

LCD.Width:                              0

LCD.Height:                             0

LCD.BitsPerPixel:                       0

AppDomains:                             True

ExceptionFilters:                       True

IncrementalDeployment:                  True

SoftReboot:                             True

Profiling:                              False

ProfilingAllocations:                   False

ProfilingCalls:                         False

IsUnknown:                              False

 

[font="arial, helvetica, sans-serif;"]When I was on 4.2.2 the module was turning on the blue led when the button was push but nothing else[/font]

[font="arial, helvetica, sans-serif;font-size:8.5px;"]I've Tried VB.NET C#, VS EXPRESS, VS 2010 ultimate, when a star the project, the module reboot but nothing [/font]after...

I've also tried other computer. Now i'm working on a macbook with //desktop but i've also tested on a xp machine.

 

I've install all SDK/KIT etc...

Everything seems to be ok and I dont know what to try more...

 

This is the last project I'm trying tu upload : 

[color=#0433ff;]using[/color] System;

[color=#0433ff;]using[/color] System.Threading;

[color=#0433ff;]using[/color] Microsoft.SPOT;

[color=#0433ff;]using[/color] Microsoft.SPOT.Hardware;

[color=#0433ff;]using[/color] SecretLabs.NETMF.Hardware;

[color=#0433ff;]using[/color] SecretLabs.NETMF.Hardware.NetduinoGo;

 

[color=#0433ff;]namespace[/color] ButtonApp

{

[color=#000000;]    [/color]public[color=#000000;] [/color]class[color=#000000;] [/color][color=#33a2bd;]Program[/color]

    {

        [color=#0433ff;]public[/color] [color=#0433ff;]static[/color] [color=#0433ff;]void[/color] Main()

        {

[color=#000000;]            [/color]// write your code here

            [color=#33a2bd;]OutputPort[/color] led = [color=#0433ff;]new[/color] [color=#33a2bd;]OutputPort[/color]([color=#33a2bd;]Pins[/color].ONBOARD_LED, [color=#0433ff;]false[/color]);

            [color=#33a2bd;]InputPort[/color] button = [color=#0433ff;]new[/color] [color=#33a2bd;]InputPort[/color]([color=#33a2bd;]Pins[/color].ONBOARD_SW1, [color=#0433ff;]false[/color], [color=#33a2bd;]Port[/color].[color=#33a2bd;]ResistorMode[/color].Disabled);

            [color=#0433ff;]bool[/color] buttonState = [color=#0433ff;]false[/color];

            [color=#0433ff;]while[/color] ([color=#0433ff;]true[/color])

            {

                buttonState = button.Read();

                led.Write(!buttonState);

            }

        }

    }

}

 

Debug windows on build :

 

Found debugger!

Create TS.

Loading start at 8056cf0, end 806e864

Assembly: mscorlib (4.2.0.0)

Assembly: Microsoft.SPOT.Native (4.2.0.0)

Assembly: Microsoft.SPOT.Hardware (4.2.0.0)

Assembly: Microsoft.SPOT.Hardware.SerialPort (4.2.0.0)

Assembly: Microsoft.SPOT.IO (4.2.0.0)

Assembly: System.IO (4.2.0.0)

Assembly: Microsoft.SPOT.Hardware.PWM (4.2.0.1)

Assembly: Microsoft.SPOT.Hardware.Usb (4.2.0.0)

Assembly: SecretLabs.NETMF.Diagnostics (4.2.0.0)

Assembly: SecretLabs.NETMF.IO (4.2.0.0)

Loading Deployment Assemblies.

Attaching deployed file.

Assembly: NetduinoGo.RgbLed (1.0.2.0)

Attaching deployed file.

Assembly: SecretLabs.NETMF.Hardware.Netduino (4.2.1.0)

Attaching deployed file.

Assembly: SecretLabs.NETMF.Hardware.NetduinoGo (4.2.2.0)

Attaching deployed file.

Assembly: ButtonApp (1.0.0.0)

Attaching deployed file.

Assembly: SecretLabs.NETMF.Hardware (4.2.0.0)

Attaching deployed file.

Assembly: GoBus (1.0.0.0)

Resolving.

The debugging target runtime is loading the application assemblies and starting execution.

Ready.

 

 

Target Framework is micro 4.2

Référence are ok

 

I'm lost...


Netduino Beginner...


#2 Chris Walker

Chris Walker

    Secret Labs Staff

  • Moderators
  • 7767 posts
  • LocationNew York, NY

Posted 24 February 2013 - 01:00 PM

Hi fxpa, Welcome to the Netduino community. There's a lot of information in that post, but I'm a little bit lost as to what you tried. It sounds like you've run through a number of scenarios. So first, let's get you upgraded to the latest Netduino Go firmware. There's no reason, really, to be on the old firmware. Second of all...if you're going to use Pins.ONBOARD_LED, you'll want to change the "SecretLabs.Hardware.NetduinoGo.dll" out for "SecretLabs.NETMF.Hardware.Netduino.dll" instead. Also make sure that you upgrade your Shield Base to the latest firmware. Then when you press the pushbutton, the LED on the Shield Base's GoPort should turn on. Release the pushbutton and it should turn off. Because you're using the beta Shield Base auto-detect feature...it'll take a few seconds to connect when the board reboots. Does that help you get off in the right direction? We're here to help; we just need to know what you're seeing and doing. Chris

#3 fxpa

fxpa

    New Member

  • Members
  • Pip
  • 3 posts
  • LocationBordeaux FR

Posted 24 February 2013 - 07:16 PM   Best Answer

Hi

 

Tks For your rapid answer.

 

I'm just trying to create a first project.

I've reset everyhting

Update NGo and the shield (but I dont need it for the moment )

 

I've just the netduigo connected on usb The button and the RGB led

 

I've found a code in VB it seems to work now :-)


Netduino Beginner...


#4 desowen

desowen

    New Member

  • Members
  • Pip
  • 2 posts

Posted 25 September 2013 - 06:51 PM

Hi fxpa,Welcome to the Netduino community.There's a lot of information in that post, but I'm a little bit lost as to what you tried. It sounds like you've run through a number of scenarios.So first, let's get you upgraded to the latest Netduino Go firmware. There's no reason, really, to be on the old firmware.Second of all...if you're going to use Pins.ONBOARD_LED, you'll want to change the "SecretLabs.Hardware.NetduinoGo.dll" out for "SecretLabs.NETMF.Hardware.Netduino.dll" instead. Also make sure that you upgrade your Shield Base to the latest firmware.Then when you press the pushbutton, the LED on the Shield Base's GoPort should turn on. Release the pushbutton and it should turn off. Because you're using the beta Shield Base auto-detect feature...it'll take a few seconds to connect when the board reboots.Does that help you get off in the right direction? We're here to help; we just need to know what you're seeing and doing.Chris

I'd been trying to work out why the inboard led wouldn't do anything, so this answers that question, thanks




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

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.