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.

eplaksienko's Content

There have been 107 items by eplaksienko (Search limited from 17-June 23)


By content type

See this member's


Sort by                Order  

#48770 Shield base pins reassignment

Posted by eplaksienko on 26 April 2013 - 03:37 PM in Netduino Go

A first chance exception of type 'System.Exception' occurred in Microsoft.SPOT.Hardware.dll
An unhandled exception of type 'System.Exception' occurred in Microsoft.SPOT.Hardware.dll
 
on [color=rgb(40,40,40);font-family:helvetica, arial, sans-serif;]op1.Dispose();[/color]



#53443 Shield Base Firmware (beta 7)

Posted by eplaksienko on 21 October 2013 - 07:25 PM in Netduino Go

Chris Tristate is great, will try to test it today.

1 more issue related to mis-synchronization NGO and SB, you need to put a thread.sleep before NGO initialized then it can initialize SB




#45927 Shield Base Firmware (beta 6)

Posted by eplaksienko on 20 February 2013 - 11:35 PM in Netduino Go

Folks, help please :(




#53440 Shield Base Firmware (beta 6)

Posted by eplaksienko on 21 October 2013 - 07:11 PM in Netduino Go

Is it possible to program SB with computer directly?




#45931 Shield Base Firmware (beta 6)

Posted by eplaksienko on 21 February 2013 - 02:53 AM in Netduino Go

Ok, it worked from bus #4

 

Chris, is there some reason?




#45930 Shield Base Firmware (beta 6)

Posted by eplaksienko on 21 February 2013 - 02:47 AM in Netduino Go

Chris thx, this worked, but then I got exception here in STM32Bootloader.cs

 

 

bool GetAck()
        {
            if (_isDisposed)
                throw new ObjectDisposedException();
 
            byte[] readBuffer = new byte[1];
            int bytesRead = 0;
 
            bytesRead = _serialPort.Read(readBuffer, 0, readBuffer.Length);
 
            if (bytesRead == 0)
                throw new Exception(); // timeout exception
 
            if (readBuffer[0] == 0x79)
                return true;
            else if (readBuffer[0] == 0x1F)
                return false;
            else
                throw new Exception(); // invalid byte
        }
 
The message
An unhandled exception of type 'System.Exception' occurred in STM32ReflashApp.exe . looks like similar to 
wernerotten



#47384 Shield Base Firmware (beta 6)

Posted by eplaksienko on 19 March 2013 - 03:32 PM in Netduino Go

NGO with SB doesn't work independently on it's own power supply, Each time to start the app I have to connect to computer and load program from VS C#




#52870 Shield Base Firmware (beta 6)

Posted by eplaksienko on 23 September 2013 - 02:24 PM in Netduino Go

Chris, technically, how different SB and Netduino+?




#53441 Shield Base Firmware (beta 6)

Posted by eplaksienko on 21 October 2013 - 07:12 PM in Netduino Go

And also I think I burnt NGO, I used on SB DF Robot Motoroshield and when I used external batteries on motorshield (6V) it went craze with both NGO and SB. Any idea why?




#45896 Shield Base Firmware (beta 6)

Posted by eplaksienko on 20 February 2013 - 01:11 PM in Netduino Go

Hi!
 
Get error in a beginning to re flash Shield Base, even not able to reach a point to push button on Go
 
Error 1 Device not found or cannot be opened - USB:NetduinoGo
 
Heeeeeeeelp :(



#47862 Serial port on SB

Posted by eplaksienko on 01 April 2013 - 12:56 AM in Netduino Go

Doesn't matter found




#47853 Serial port on SB

Posted by eplaksienko on 31 March 2013 - 08:22 PM in Netduino Go

Hi!

 

Question, how to use, code example any?

 

Thanks




#47306 SB with NGO much slower then Arduino

Posted by eplaksienko on 17 March 2013 - 09:32 PM in Netduino Go

Chris, in additional is there any hacks to send some more native way?




#47286 SB with NGO much slower then Arduino

Posted by eplaksienko on 17 March 2013 - 03:25 AM in Netduino Go

Hi!

 

may be I misunderstand something, but it seems me processing NGO with SB much slower then with Arduino, I am playing with step motor and I can see difference, I made everything easy, but still I can not get rotate it quicker, and signal lamps are just visible much slower then with arduino, may be there is any hack or anything I am doing wrong, the same code with arduino just fly. Any advise really appreciated

 

PS: I use Stepper Motor+ Driver Board ULN2003 5V 4-phase 5 line

 

 public class Program
    {
     
     
     
        public static void Main()
        {
            // write your code here
            NetduinoGo.ShieldBase sb = new NetduinoGo.ShieldBase((GoBus.GoSocket)4);
            OutputPort op1 = new OutputPort(sb.Pins.GPIO_PIN_D8, false);
            OutputPort op2 = new OutputPort(sb.Pins.GPIO_PIN_D9, false);
            OutputPort op3 = new OutputPort(sb.Pins.GPIO_PIN_D10, false);
            OutputPort op4 = new OutputPort(sb.Pins.GPIO_PIN_D11, false);
 
            bool[][] positions = { new bool[] { false, false, false, true }, new bool[] { false, false, true, true }, new bool[] { false, false, true, false }, new bool[] { false, true, true, false }, new bool[] { false, true, false, false }, new bool[] { true, true, false, false }, new bool[] { true, false, false, false }, new bool[] { false, false, false, false } };
 
            Debug.Print("started");
         
            while (true)
            {
                 
                    op1.Write(positions[0][0]);
                    op2.Write(positions[0][1]);
                    op3.Write(positions[0][2]);
                    op4.Write(positions[0][3]);
                    op1.Write(positions[1][0]);
                    op2.Write(positions[1][1]);
                    op3.Write(positions[1][2]);
                    op4.Write(positions[1][3]);
                    op1.Write(positions[2][0]);
                    op2.Write(positions[2][1]);
                    op3.Write(positions[2][2]);
                    op4.Write(positions[2][3]);
                    op1.Write(positions[3][0]);
                    op2.Write(positions[3][1]);
                    op3.Write(positions[3][2]);
                    op4.Write(positions[3][3]);
                    op1.Write(positions[4][0]);
                    op2.Write(positions[4][1]);
                    op3.Write(positions[4][2]);
                    op4.Write(positions[4][3]);
                    op1.Write(positions[5][0]);
                    op2.Write(positions[5][1]);
                    op3.Write(positions[5][2]);
                    op4.Write(positions[5][3]);
                    op1.Write(positions[6][0]);
                    op2.Write(positions[6][1]);
                    op3.Write(positions[6][2]);
                    op4.Write(positions[6][3]);
                    op1.Write(positions[7][0]);
                    op2.Write(positions[7][1]);
                    op3.Write(positions[7][2]);
                    op4.Write(positions[7][3]);
                    Thread.Sleep(1);
             
            }
 
 
        }
 
    }



#47305 SB with NGO much slower then Arduino

Posted by eplaksienko on 17 March 2013 - 09:31 PM in Netduino Go

Chris, do you mean to send all 4 channels the same time, use 255 bit pwm to split, then I win x4?




#49195 OutputExpander - How to Make a Netduino GO! Module

Posted by eplaksienko on 07 May 2013 - 08:04 PM in Netduino Go

Mark, it would be nice to have it built similar to Arduino Mega, to accept ready to use Arduino modules




#45969 NGO to Gadgeteer module

Posted by eplaksienko on 21 February 2013 - 02:55 PM in Netduino Go

Hi Chris

 

Any news about NGO to Gadgeteer module?

 

Do you have already libs and examples for one you presented me on makers fare?

 

Thanks a lot

 

Eugene




#46014 NGO to Gadgeteer module

Posted by eplaksienko on 22 February 2013 - 12:09 AM in Netduino Go

Chris thx for update, I always feel discomfort with disabled toys :D




#46015 NGO to Gadgeteer module

Posted by eplaksienko on 22 February 2013 - 12:10 AM in Netduino Go

PS: separate thanks for helping with flashing firmware




#53117 NGO to Gadgeteer module

Posted by eplaksienko on 10 October 2013 - 02:06 PM in Netduino Go

Alfred, they didn't announce anything yet




#48071 NEW MODULE: DigIO

Posted by eplaksienko on 05 April 2013 - 03:04 PM in Netduino Go

PS: What about interrupts?




#48083 NEW MODULE: DigIO

Posted by eplaksienko on 05 April 2013 - 06:06 PM in Netduino Go

Hi! Thanks 1st and 3rd I already realized what to do

About interrupts it would be great to have it since Shield Base doesn't solve problems with sensors like sonic range finder. If you get it working I would buy several of then :D

 

I think you would be able to do it somehow if you can control internal ones




#48069 NEW MODULE: DigIO

Posted by eplaksienko on 05 April 2013 - 02:39 PM in Netduino Go

Checkout stack on shipping

 

 

Step 4: Delivery Method

Please select the preferred shipping method to use on this order.

United States Postal Service
Missing value for ZipDestination.

Add Comments About Your Order



#48067 NEW MODULE: DigIO

Posted by eplaksienko on 05 April 2013 - 02:35 PM in Netduino Go

What about libs?




#48181 NEW MODULE: DigIO

Posted by eplaksienko on 08 April 2013 - 01:47 PM in Netduino Go

Arron, are you going to publish for sell your modules?

 

Thanks





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.