Skip navigation

community

1 ... 23 24 25 26 27 ... 32 Previous Next 58049 Views 466 Replies Latest reply: May 25, 2012 11:20 PM by billabott RSS Branched to a new discussion. Go to original post
  • Currently Being Moderated
    360. Feb 19, 2012 11:29 AM (in response to mablackops)
    Re: Have a question about Arduino? Ask me!

    I think you need another chip to drive a usb

    port.  You can learn about it at  the official web

    site arduino.cc.

  • Currently Being Moderated
    361. Feb 19, 2012 10:02 PM (in response to billabott)
    Re: Have a question about Arduino? Ask me!

    Thank you very much. I was afraid of that. Maybe I will find a serial to USB convertor chip.

  • Currently Being Moderated
    362. Feb 19, 2012 11:49 PM (in response to billpenner)
    Re: Have a question about Arduino? Ask me!

    I saw one at sparkfun or adafruit recently.

  • Currently Being Moderated
    363. Feb 22, 2012 2:27 PM (in response to Jeremy Blum)
    Re: Have a question about Arduino? Ask me!

    i ask this before but  i need help if you have any idea about

    connect my arduino with pic 16f877a to compelet my project can i do this

    and how use to use pic16f877a with altrasonic to compute the range from any object

  • Currently Being Moderated
    364. Feb 25, 2012 1:01 AM (in response to Jeremy Blum)
    Re: Have a question about Arduino? Ask me!

    hi Jeremy, i have a cuestion,,,, it is posible play a sound in a pc conected with de arduino uno ,, this sound file is played when a one input digital is present ,, example i want to monitoring th state of the 4 input and one input relation with one sound file is to make a parlant report alarm,,, thanks for you help

  • Currently Being Moderated
    365. Feb 25, 2012 8:05 AM (in response to mablackops)
    Re: Have a question about Arduino? Ask me!

    In additions to Bills correct response, you can buy quite cheaply an FTDI board that will do the missing USB part for you, I`v been in exactly your position having made many arduino type boards and find this FTDI board invaluable!

    you`ll need to make sure it`s the 5v version and not the True serial (MAX232 type signal levels), these FTDI boards will simply require that you have a 5 pin Male pin header on your board(s) with which to program it through.

    the board plugs into your USB, and the other end plugs into your Arduino board.

    I really wouldn`t try buying just the Chip itself though, as they are SMT devices and don`t mate well with .1 Inch spacing Vero type boards unless you buy an additional breakout board, and for that cost you may as well just buy a plain old 5v FTDI board brand new

    I`m not sure if the 8u2 is available in DIP packaging, but that may be another option if your 100% determined.

     

    all the best

  • Currently Being Moderated
    366. Feb 26, 2012 3:01 PM (in response to Jeremy Blum)
    Re: Have a question about Arduino? Ask me!

    I have purchased the AVR-CAN development board from Newark. I am using the USB-to-CAN Compact avaliable from IXXAT to establish the transmition of Controller Area Network (CAN) messages. I have downloaded the AVR studio source code from the Olimex website for communication over the RJ232 connector and cannot seem to establish any communication between the two nodes. Is there some kind of jumper requirement that is not mentioned on the data sheet? Is there a known bug with the AVR-CAN board from your website? Time is a factor with this project and any information would be appreciated.

     

    Thank you,

    Kevin

  • Currently Being Moderated
    367. Feb 29, 2012 8:26 PM (in response to Jeremy Blum)
    Re: Have a question about Arduino? Ask me!

    Hello,

     

    Is the color LCD display shield also compatible with Mini? or Nano?

    It is only compatible with uno or higher?

    I need to sense an analog voltage from -10V ~ +10v. I realize mini's alanog input is 0-7. What can I do about this?

  • Currently Being Moderated
    368. Mar 1, 2012 2:26 PM (in response to Jeremy Blum)
    Re: Have a question about Arduino? Ask me!

    Harbor Freight is selling an attractive tool box like Storage Organizer at their B&M locations.  It just screams: "Store your Arduino inside me!" for only $5.  And if you have or purchase some antistatic bubble bags like these or even regular ones like these bags it would be perfect.  It looks cool with the round blue/green and yellow arduino stickers on the top!

     

    - = Syntax matters = -

  • Currently Being Moderated
    369. Mar 3, 2012 9:35 AM (in response to kf4ixm)
    Re: Have a question about Ardunio? Ask me!

    Hi Jeremy,

     

    Am building an automatic railway gate control and track switching using the arduino Uno.

    Need help with programming an IR transmitter and receiver circuit to send a signal to a stepper motor when there is a interruption between the transmitter and receiver allowing the stepper motor to rotate in particular direction and retrun to the intial state after some seconds. During this process, an LED will switch to red to prevent motorist from crossing the railway.

    I already have a canakit stepper motor and easy driver stepper motor.

    Thanks.

  • Currently Being Moderated
    370. Mar 5, 2012 3:48 AM (in response to freddyflo)
    Re: Have a question about Ardunio? Ask me!

    //define pins. I used pins 4 and 5

    #define irLedPin 4          // IR Led on this pin

    #define irSensorPin 5       // IR sensor on this pin

     

    int irRead(int readPin, int triggerPin); //function prototype

     

    void setup()

    {

      pinMode(irSensorPin, INPUT);

      pinMode(irLedPin, OUTPUT);

      Serial.begin(9600);

      // prints title with ending line break

      Serial.println("Program Starting");

      // wait for the long string to be sent

      delay(100);

    }

     

    void loop()

                  //  call a StreetLights() function here if you wish

                       // or at end of the setup()

      if (irRead(irSensorPin, irLedPin))=0

      {

         lowerCrossingGate();

      }

    }

     

    void lowerCrossingGate()

    {

                             // turn on traffic light code here

                            //  put motor control code here

                   //  here is a tutorial for steppers that may help you:

                   //  http://www.arduino.cc/en/Tutorial/StepperUnipolar

                             // turn off traffic light after motor position reversed

    }

     

     

    /******************************************************************************

    * This function can be used with a panasonic pna4602m ir sensor

    * it returns a zero if something is detected by the sensor, and a 1 otherwise

    * The function bit bangs a 38.5khZ waveform to an IR led connected to the

    * triggerPin for 1 millisecond, and then reads the IR sensor pin to see if

    * the reflected IR has been detected

    ******************************************************************************/

    int irRead(int readPin, int triggerPin)

    {

      int halfPeriod = 13; //one period at 38.5khZ is aproximately 26 microseconds

      int cycles = 38; //26 microseconds * 38 is more or less 1 millisecond

      int i;

      for (i=0; i <=cycles; i++)

      {

        digitalWrite(triggerPin, HIGH);

        delayMicroseconds(halfPeriod);

        digitalWrite(triggerPin, LOW);

        delayMicroseconds(halfPeriod - 1);     // - 1 to make up for digitaWrite overhead   

      }

      return digitalRead(readPin);

    }

     

    Modified from original Source:  http://www.arduino.cc/playground/Main/PanasonicIrSensor

     

    -= Syntax Matters =-

  • Currently Being Moderated
    371. Mar 5, 2012 1:21 PM (in response to Jeremy Blum)
    Re: Have a question about Arduino? Ask me!

    Jeremy, I'm going to use the Arduino uno as my main support for a Blimp that I want to make.  I was wondering how to make it wireless and be able to use one of my old ps2 or xbox controllers.  From what I've research it looks like the Xbee is my best choice.  What would you choose. 

    Thanks 23drums

    23drums@gmail.com

  • Currently Being Moderated
    372. Mar 5, 2012 6:04 PM (in response to billabott)
    Re: Have a question about Ardunio? Ask me!

    Thanks. I'll try this out.

  • Currently Being Moderated
    373. Mar 6, 2012 2:51 PM (in response to Jeremy Blum)
    Re: Have a question about Arduino? Ask me!

    Hey i watched all your videos on Arduino Tutorials,

    and was thinking i have a old LCD screen that work

    how would i be able to hook it up using the arduino to

    hook it up to a game consle or dvd player and would it

    be even possible to do that thanks a lot.

    - Anthony

  • Currently Being Moderated
    374. Mar 7, 2012 6:32 AM (in response to AntonD0)
    Re: Have a question about Arduino? Ask me!

    Replied direct to member via email.

1 ... 23 24 25 26 27 ... 32 Previous Next

Related Content


Related Products
Discussions
  • Retrieving data ...

Bookmarked By (4)