Loading...
  Show Posts
Pages: 1 ... 44 45 [46] 47 48 ... 106
676  Using Arduino / Project Guidance / Re: bluetooth text message notifier fo hard of hearing on: February 16, 2013, 04:11:14 pm
If she has an Android or iPhone, then there is a setting under accessibility, to have a notifier for those who can't hear the phone. It can vibrate and even use the flash to alert you when you have a call, text and voicemail.

No Arduino required.
677  Using Arduino / Project Guidance / Re: Beginner Traffic light project on: February 16, 2013, 03:48:02 pm
First: please edit this and put it in code tags #.
Second: this is overly complicated for just switching between LEDs. To simplify your code, use case statements, and/or use direct port manipulation. It will cut this code in half, or more.
678  International / Français / Re: Robot AAR-04 + kit bluetooth ARX-BT3 on: February 16, 2013, 03:40:57 pm
I found this website. http://www.dmemos.de/plotrobots/blog/?cat=7

You got it to move forward with the android, are you looking have full control of it? Left, right, forward and backwards?

Vous ai eu à aller de l'avant avec l'androïde, cherchez-vous avez le plein contrôle de celui-ci? Gauche, droite, en avant et en arrière?
679  International / Français / Re: Robot AAR-04 + kit bluetooth ARX-BT3 on: February 16, 2013, 12:02:38 pm
ok, donc tu as le téléphone pour commander la LED, Bon. Permettez-moi de regarder dans le robot en utilisant votre, et vous devriez trouver quelques exemples en ligne.

ok, so you got the phone to control the LED, Good. Let me look into the robot your using, and you should find some examples online.
680  Using Arduino / Programming Questions / Re: getting a - expected unqualified id before"{" token.. on: February 15, 2013, 04:10:14 pm
Quote
it looks like its not compatible with my library.
Or you didn't put the library in the correct folder. What IDE are you using?
681  Using Arduino / Programming Questions / Re: getting a - expected unqualified id before"{" token.. on: February 15, 2013, 03:04:39 pm
The lack of proper formatting this code has, will haunt me in my dreams.

No function?
Code:
{
  // set up the LCD's number of columns and rows:
  lcd.begin(16, 2);
  // Print a message to the LCD.
  //lcd.print("W-");


  Serial.begin(9600);
  pinMode(pinDevid1, OUTPUT);// pin 8
  //pinMode(pinDevid2, INPUT);// pin 9
  pinMode(fan, OUTPUT);//
  pinMode(pump, OUTPUT);//
 // pinMode(relay, OUTPUT);
  dht.begin();


  // start the Ethernet connection:
  if (Ethernet.begin(mac) == 0) {
    Serial.println("Failed to configure Ethernet using DHCP");

    lcd.setCursor(0,0);
    lcd.print("Disconnected ");


    //while(true);// no point in carrying on, so do nothing forevermore:

  }
  else{

    Serial.println("Ethernet ready");

    lcd.setCursor(0,0);
    lcd.print("Net OK ");
    delay(2000);
    lcd.clear();

    Serial.print("My IP address: ");// print the Ethernet board/shield's IP address:
    Serial.println(Ethernet.localIP());
    lcd.print(Ethernet.localIP());
    delay(2000);
    lcd.clear();
    FED=0;
    lcd.setCursor(10,0);
    lcd.print("F");
    lcd.print(FED);
   


  }
682  Using Arduino / Programming Questions / Re: getting a - expected unqualified id before"{" token.. on: February 15, 2013, 02:57:52 pm
Full code?
683  International / Français / Re: Robot AAR-04 + kit bluetooth ARX-BT3 on: February 15, 2013, 02:03:48 pm
The LED works right, you tried the LED blink example? The robot is like a arduino UNO on wheels, so the built-in LED is on pin 13. You have to refer to the diagrams that came with the robot.
684  International / Français / Re: Robot AAR-04 + kit bluetooth ARX-BT3 on: February 15, 2013, 01:44:13 pm
Post any code you have so far.
685  Using Arduino / Programming Questions / Re: Unable to compile on: February 15, 2013, 01:01:26 pm
KeyCode  and keyCode they are NOT the same. This type of programing is case sensitive.
686  International / Français / Re: Robot AAR-04 + kit bluetooth ARX-BT3 on: February 15, 2013, 12:51:08 pm
It looks like a regular bluetooth module. So you will need to see how the robot itself, responds to the module. I do not know of any codes off hand.

Il ressemble à un module bluetooth régulière. Vous aurez donc besoin de voir comment le robot lui-même, répond au module. Je ne sais pas de tous les codes de la main.

687  International / Français / Re: Robot AAR-04 + kit bluetooth ARX-BT3 on: February 15, 2013, 10:22:22 am
Strangely I was able to read and understand that, and I dont speak french. (even before I translated it. O_o)

ADK Bluetoothchat to get started.
Que voulez-vous dire par un besoin spécifique?

For those who want to follow along.
Quote
Hello everyone,

We are a group of students and we are working on a project for a arduino robot AAR-04.
We come to the right schedule for monitoring lines.

Now we wish to work on a bluetooth kit (ARX-BT3) on the robot to be able to remotely control a android phone.
For this we use an application that is: Arduino Robot Aress given with the kit bluetooth (on a CD).
We can make the connection between the phone and the robot, but we can order it to move forward.
Do you know if there is a specific need?

We install the kit as follows:
https://plus.google.com/photos/100614490999857774768/albums/5764397279672290337
Is this the right way to put it?

Thank you in advance
688  Using Arduino / Programming Questions / Re: Writing to a file on an SD card on: February 15, 2013, 10:16:32 am
I take back my previous post, and ask to see your full code.

Also try the example again, and break it down.
http://arduino.cc/en/Tutorial/ReadWrite
689  Using Arduino / Programming Questions / Re: Writing to a file on an SD card on: February 15, 2013, 09:43:00 am
Edit: removed
690  Using Arduino / Project Guidance / Re: transistor switch logic . very hard to solve this scenario. on: February 14, 2013, 09:24:58 pm
Not enought current maybe. If you take one of them off, does it output the correct voltage?
Pages: 1 ... 44 45 [46] 47 48 ... 106