Load Google Translate I think you need another chip to drive a usb
port. You can learn about it at the official web
site arduino.cc.
Thank you very much. I was afraid of that. Maybe I will find a serial to USB convertor chip.
I saw one at sparkfun or adafruit recently.
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 pic16f877a with altrasonic to compute the range from any object
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
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 ![]()
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
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?
- = Syntax matters = -
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.
//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 =-
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
Thanks. I'll try this out.
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
Replied direct to member via email.
© 2009 Premier Farnell plc. All Rights Reserved
Premier Farnell plc, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE