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 24-June 23)


By content type

See this member's


Sort by                Order  

#49346 Netduino Go with battery pack, any ready inexpensive ideas

Posted by eplaksienko on 10 May 2013 - 05:55 PM in Netduino Go

Hi!

 

Anybody aware Netduino Go with AA battery pack, any ready inexpensive ideas?

 




#53006 Netduino Plus vs Netduino Go

Posted by eplaksienko on 30 September 2013 - 07:27 PM in General Discussion

NGO, despite it is a great idea of plug and play modules looks like abandoned due lack of resources Secret Labs has, unfortunately I wouldn't suggest to go with this platform yet 




#50300 NetduinoGo Shieldbase SPI hookup

Posted by eplaksienko on 05 June 2013 - 03:20 PM in Netduino Go

There is no i2c on SB yet




#50301 NetduinoGo Shieldbase SPI hookup

Posted by eplaksienko on 05 June 2013 - 03:21 PM in Netduino Go

I am also waiting till something changes there




#50424 NetduinoGo Shieldbase SPI hookup

Posted by eplaksienko on 11 June 2013 - 02:11 PM in Netduino Go

Unfortunately I feel this project is dead, particularly after announcement of watch I feel it abandoned




#50622 NetduinoGo Shieldbase SPI hookup

Posted by eplaksienko on 18 June 2013 - 08:41 PM in Netduino Go

Honestly I like idea of NGO better, I am quiet thinking to try Raspberry Pi + Ala Mode




#50629 NetduinoGo Shieldbase SPI hookup

Posted by eplaksienko on 19 June 2013 - 12:05 AM in Netduino Go

I just ordered one, my problem is I try to tech kids this staff, and NGO is just great solution, but 1 thing, lack of realization




#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




#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




#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



#48071 NEW MODULE: DigIO

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

PS: What about interrupts?




#48067 NEW MODULE: DigIO

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

What about libs?




#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




#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




#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




#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




#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




#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);
             
            }
 
 
        }
 
    }



#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?




#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?




#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




#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 :(



#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+?





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.