fxpa's Content - 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.

fxpa's Content

There have been 3 items by fxpa (Search limited from 24-June 23)


By content type

See this member's

Sort by                Order  

#46573 Rainbow Ring

Posted by fxpa on 03 March 2013 - 09:27 AM in General Discussion

Hello everyone

Did someone have allready tried to make some codes for this Feature :

http://www.dfrobot.c...ainbow_Ring_V3_(SKU:DFR0141)

 

 




#46172 Disappointed

Posted by fxpa on 24 February 2013 - 07:16 PM in Netduino Go

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 :-)




#46162 Disappointed

Posted by fxpa on 24 February 2013 - 09:41 AM in Netduino Go

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...





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.