Show Posts
|
|
Pages: [1]
|
|
1
|
Using Arduino / Audio / Displaying the name of song currently playing on an LCD screen
|
on: October 29, 2011, 02:29:59 am
|
Hello , I was just thinking of making a small project in which I display the name of the song that is currently playing on my media player ,on an LCD screen. I know the hardware connections of the LCD. But I'm clueless on how to collect data about the song. Also is there any media player that is better to use for this. Please help. 
|
|
|
|
|
5
|
Forum 2005-2010 (read only) / Troubleshooting / arduino software takes time to start and hangs .
|
on: January 15, 2011, 09:56:16 am
|
|
Hi , i use windows 7 32bit. And i'm using arduino 0018. But when i start the compiler it stops responding and none of the menu items work . What might be the problem ? Do i need to clear my computer ? Coz its really frustrating to wait for such a long tym to get started. I've installed the FTDI drivers and they work fine.
|
|
|
|
|
8
|
Forum 2005-2010 (read only) / Interfacing / LDRs array
|
on: March 02, 2010, 01:29:38 am
|
|
i hav learnt how LDRs work . can you guys help me by posting links so that i can make an array of LDRs and LEDs for my line following robot using arduino.
|
|
|
|
|
9
|
Forum 2005-2010 (read only) / Interfacing / Re: interfacing light dependent resistances(LDRs)
|
on: February 21, 2010, 12:13:49 am
|
|
int pwmPin = 9; //Motor's PWM pin int dPin_1 = 6;// Digital Pin to turn the motor on/off int dPin_2 = 7; int ledPin = 13; //LED pin void setup() { pinMode(dPin_1, OUTPUT); pinMode(dPin_2, OUTPUT); pinMode(ledPin, OUTPUT); } void loop() { digitalWrite(ledPin, HIGH); // turn on LED digitalWrite(dPin_1, HIGH); //turn on the motor digitalWrite(dPin_2, LOW); //Apply PWM to the motor for(int i=0; i<=255; i++) { analogWrite(pwmPin, i); delay(100); } delay(1000); //delay for a second //switch directions digitalWrite(dPin_1, LOW); digitalWrite(dPin_2, HIGH); for(int i=255; i>=0; i--) { analogWrite(pwmPin, i); delay(100); } digitalWrite(ledPin, LOW); // turn off LED digitalWrite(dPin_1, LOW); //turn off motor delay(2000); //delay for 2 seconds. }
|
|
|
|
|
10
|
Forum 2005-2010 (read only) / Interfacing / interfacing light dependent resistances(LDRs)
|
on: February 20, 2010, 09:58:16 pm
|
|
hello evryone, this is my first post and i am currently working on my first arduino project , aline following robot. i am facing problems on how to take the input from the LDRs , i mean in what form will the input be. Can you also tell me how to use the input along with the program for the L293d motor driver. Please do reply>>>>>>>>
|
|
|
|
|