Comment Contrôler l'arduino par bluetooth à partir du PC

I wanted to make it possible to control an arduino board from my phone.
So that I could control other devices.
the easiest way seemed to be using bluetooth.

but when I received the parts needed I found it want quite as simple as I had hoped.
And after looking on the Internet I didn’t find much information to help.

so I have decided to write this guide to help other people that are thinking of doing the same thing.

Control arduino by bluetooth

Step 1: Parts needed

1 arduino board ( I used the duemilanvoe 328)
1 bluetooth serial board ( I used the sparkfun bluesmirf)
some pieces of wire
1 led
A computer with bluetooth or a usb bluetooth adaptor.
A pocket PC with bluetooth

Software needed

the arduino enviroment software
and some serial terminal software ( I used putty)

Step 2: Wiring it all up

I linked the cts1 to the rts0 on the bluetooth module.
then I wired the tx on the module to the rx on arduino
the rx on the bluetooth to the tx on arduino

I protected the bluetooth module by sealing it with heatshrink.

I then connected +5v and 0v to the bluetooth  board from arduino and supplied the arduino board with 5volts.

and pluged an LED in to socket pin 13 and ground to test it.

as shown.

Step 3: Loading the software

Before I connected the board using bluetooth. I had to load some code on to the arduino board.

The easiest way to do this is to open the arduino enviroment software program and connect the board to a computer using usb.

then go to the tools tab and make sure the correct arduino board and usb ports are selected.

then up load this code on to the board.

this code will allow you to switch on and off the led by pressing 1 for on and 0 for off.
from your terminal.

/*
simple LED test
*/

char val;         // variable to receive data from the serial port
int ledpin = 2;  // LED connected to pin 2 (on-board LED)

void setup()
{
pinMode(ledpin = 13, OUTPUT);  // pin 13 (on-board LED) as OUTPUT

Serial.begin(115200);       // start serial communication at 115200bps

}

void loop() {
if( Serial.available() )       // if data is available to read
{;}
val = Serial.read();         // read it and store it in ‘val’

if( val == ‘0’ )               // if ‘0’ was received led 13 is switched off

{
digitalWrite(ledpin, LOW);    // turn Off pin 13 off
delay(1000);                  // waits for a second
Serial.println(“13 off”);
}

if( val == ‘1’ )               // if ‘1’ was received led 13 on
{
digitalWrite(ledpin = 13, HIGH);  // turn ON pin 13 on
delay(1000);                  // waits for a second
Serial.println(“13 on”);
}
}

Control arduino by bluetooth circuit

Step 4: Connecting over bluetooth on the PC

the next step is to connect the arduino board using bluetooth.

disconnect the arduino usb cable and connect up the bluetooth module.

power the arduino board. and the red led on the bluetooth module should flash.

now open the bluetooth control panel on your pc this can be opened from the system control panel or from the icon in the bottom right of your desktop.

you will now have to add a new bluetooth device.
click my device is set up and ready to be found

then on the next screen to will see firefly-E754 or something similer. click next

on this screen select use the passkey found in the documentation and enter 1234.

on the last screen you will see which ports your computer assigns my computer set com11 for outgoing and com12 for incoming.

Major Components in Project
1 arduino board ( I used the duemilanvoe 328)
1 bluetooth serial board
some pieces of wire
1 led

 

For more detail: Comment Contrôler l'arduino par bluetooth à partir du PC


A Propos De L'Auteur

Ibrar Ayyub

Je suis expérimenté, rédacteur technique, titulaire d'une Maîtrise en informatique de BZU Multan, Pakistan à l'Université. Avec un arrière-plan couvrant diverses industries, notamment en matière de domotique et de l'ingénierie, j'ai perfectionné mes compétences dans la rédaction claire et concise du contenu. Compétent en tirant parti de l'infographie et des diagrammes, je m'efforce de simplifier des concepts complexes pour les lecteurs. Ma force réside dans une recherche approfondie et de présenter l'information de façon structurée et logique format.

Suivez-Nous:
LinkedinTwitter

Laisser un Commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

fr_FRFrench
Faire défiler vers le Haut