Loading...
  Show Posts
Pages: 1 ... 20 21 [22] 23 24 ... 104
316  Using Arduino / Project Guidance / Re: Arduino V3 question on: March 25, 2013, 07:02:02 am
So your looking for voice recognition? There are VR shields you can buy online. Look into EasyVR.
317  Using Arduino / Project Guidance / Re: power arduino using cell phone batteries on: March 23, 2013, 07:48:59 pm
You will need at least 6V to get it to turn on, and about 7V for perfect function.
318  Using Arduino / Programming Questions / Re: Multiples Input From Keypad (dont know !!!!) on: March 23, 2013, 11:33:09 am
This should have everything you need. http://arduino.cc/forum/index.php/topic,140459.0.html
319  Using Arduino / Programming Questions / Re: Controlling an LED and Servo with Potentiometer on: March 22, 2013, 05:50:38 pm
I would use 2 map functions, one for the servo and the other for the LED. Don't use the same variable for the output of the maps.

Code:
void loop() {
   val = analogRead(potpin);
  int LED = map(val, 0, 1024, 0, 255);
  int SERVO = map(val, 0, 1024, 0, 179);
  myservo.write(SERVO);
  analogWrite(ledpin,LED);
  delay(20);
}

Try this
320  Using Arduino / Programming Questions / Re: Arduino Uno won't power up when in circuit on: March 22, 2013, 12:03:12 pm
Do you have a schematic?
321  Using Arduino / Displays / Re: HIDUINO 3.2" TFT Touchscreen for Arduino Uno R3 on: March 22, 2013, 11:32:03 am
If you bought it from Ebay, then the seller should have provided you with the libraries, or at least tell you where to get them.
322  Using Arduino / Programming Questions / Re: Please help for One push button(TMPB)to control RGB driver. on: March 22, 2013, 10:36:50 am
Your going to need a timer for one, and two, you might run into problems with
Quote
1. Press one click to on and one click to of
and
Quote
3. Press continuously to change the brightness up and down.

Being that you said you have poor programming knowledge, I suggest you get a C/C++ basic programming book and take a look at the "Blink without delay" example.
323  Using Arduino / Project Guidance / Re: Honours Project on: March 21, 2013, 05:38:10 pm
You can't communicate to the BT module with the serial monitor. You need to use Putty.
324  Using Arduino / Project Guidance / Re: TFTLCD shield takes up too many pins on arduino Uno R3 on: March 21, 2013, 04:57:58 pm
Check your data sheet, you may have at least 2 pin available. If so, you can use soft serial.
325  Using Arduino / Programming Questions / Re: What does this Error mean and can I fix it? on: March 21, 2013, 12:15:09 pm
Quote
I need to write a code that would send a serial over when I press a button to either c# or c++ that would read it and then transfer that into a keystroke
It sounds like you are going to need a Leonardo, not an UNO.
326  Using Arduino / Project Guidance / Re: Honours Project on: March 21, 2013, 11:48:58 am
Are these
Quote
const int xPin = 0;
const int yPin = 1;
on the digital side or analog side. There is a difference. If they are analog, then rename them to A0 and A1 and try that.

Also you should include Serial.println() after Serial.print(yValue);
327  Using Arduino / Project Guidance / Re: Button Help - Trying to make LED go off when button is not pushed on: March 20, 2013, 07:49:42 pm
Code?
328  Using Arduino / Displays / Re: TFT Adafruit Shield: Nothing happens when I push the button... on: March 20, 2013, 07:35:54 am
It appears that this library can not print text. Im looking at the .h file and it looks like it is just for simple boxes and lines.

It should have came with a demo, does that print text on the screen?
329  Using Arduino / Displays / Re: TFT Adafruit Shield: Nothing happens when I push the button... on: March 20, 2013, 07:22:26 am
Could you post your code and .h file?
330  Using Arduino / Project Guidance / Re: Honours Project on: March 19, 2013, 06:46:03 pm
Post your code and make sure the BT module is NOT connected to the Tx/Rx pins when you upload your sketch. Also you cannot communicate to the BT module with the serial monitor, use Putty.
Pages: 1 ... 20 21 [22] 23 24 ... 104