|
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.
|
|
|
|
|
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.
|
|
|
|
|
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? { // 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);
}
|
|
|
|
|
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. 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/5764397279672290337Is this the right way to put it? Thank you in advance
|
|
|
|
|