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.

Adamos's Content

There have been 9 items by Adamos (Search limited from 26-April 23)


By content type

See this member's

Sort by                Order  

#21066 Class compatibility issues with microframework

Posted by Adamos on 28 November 2011 - 09:45 AM in Netduino 2 (and Netduino 1)

Hello guys, I 've implement a class on C# for path planning but i prefer to have it on netduino but collection List and Icomparable interface are not available. Is there any way to overcome this problem?? Thanking you in advance.



#20167 Xbee Wrong Text - Help

Posted by Adamos on 03 November 2011 - 03:42 PM in Netduino 2 (and Netduino 1)

Hi,

The baud rate is important, but the speed doesn't matter. As long as both the XBee and Netduino have the same setting. So if you set them both at 9600 it should work fine!


Both Xbee and Netduino have the same setting!



#20003 Xbee Wrong Text - Help

Posted by Adamos on 30 October 2011 - 02:12 PM in Netduino 2 (and Netduino 1)

Check your baud


Thanks, which rate you suggest?? i currently use 9600



#18517 Xbee Wrong Text - Help

Posted by Adamos on 27 September 2011 - 09:24 PM in Netduino 2 (and Netduino 1)

Hello guys, I ve a problem when i am sending data from netduino to the xbee attached on the pc , i m receiving some bad text and after the text that i wanted to send. I ve attached a screenshot with the code and the x-ctu application. Please help me!!!! :P Sorry for my bad english.

Attached Thumbnails

  • XBEEScrShot.png



#17119 XBee/Zigbee wireless, where to start?

Posted by Adamos on 26 August 2011 - 04:46 PM in Netduino 2 (and Netduino 1)

aloxa guys i have also buy this modules but i set the baud rate to 9600. is that wrong???



#17110 ESC - Code Problem

Posted by Adamos on 26 August 2011 - 03:05 PM in Netduino 2 (and Netduino 1)


           **** SpeedController xl5 = new SpeedController(Pins.GPIO_PIN_D5, new TRAXXAS_XL5());


Well my ESC in not a TRAXXAS one. I have seen similar code and i thing so that need a another one class in order to instansiate
SpeedController() .



#17109 ESC - Code Problem

Posted by Adamos on 26 August 2011 - 02:54 PM in Netduino 2 (and Netduino 1)

Oh dear! That did hurt I suppose? :o


Thanks guys for ur help i will try it out i will let you now about my progress!!!!

Well i am always be carefull with this things coz am using a jet motor!!!! :P (i saw similar motor working)



#17089 ESC - Code Problem

Posted by Adamos on 26 August 2011 - 09:44 AM in Netduino 2 (and Netduino 1)

Hi Adamos and welcome to the Netduino community!

Another member posted a somehow related question recently and found a solution, perhaps it'll help you?
http://forums.netdui...oller-with-pwm/


Thanks!! Well i have seen that code but i still got problems :/ using an arduino of a friend of me i hear the beeps!! but using the netduino nothing. Of course am a beginer!!



#17086 ESC - Code Problem

Posted by Adamos on 26 August 2011 - 09:27 AM in Netduino 2 (and Netduino 1)

Hello, i am having problems with controlling my ESC. I dont even hear the beep!!!!!

here is the code

namespace lets_start
{
    public class Program
    {
        public static void Main()
        {           
             
            while (true)
            {
                motorOnThenOff();
              //  motorTest();
                
            }  
        }

        static void motorOnThenOff()
        {
            OutputPort motor = new OutputPort(Pins.GPIO_PIN_D5, false);

            int onTime = 2500;  //the number of milliseconds for the motor to turn on for
            int offTime = 1000; //the number of milliseconds for the motor to turn off for

            motor.Write(true);       // turns the motor On
            Thread.Sleep(onTime);    // waits for onTime milliseconds
          //  motor.Write(false);      // turns the motor Off
          //  Thread.Sleep(offTime);   // waits for offTime milliseconds

            motor.Dispose();
        }

        static void motorTest()
        {
        
            PWM Motor = new PWM(Pins.GPIO_PIN_D5);
            
            while (true)
                
                Motor.SetDutyCycle(100);
                Thread.Sleep(500);
                Motor.SetDutyCycle(50);
                
                //Thread.Sleep(800);
                //Motor.SetDutyCycle(0);
            } 
            
          

        }

    }




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.