Projet appinventor HC-05 arduino

a marqué ce sujet comme résolu.

Bonjour, Je suis en train de rélaiser un projet en SI avec un module bluetooth lié à une carte arduino qui reçoit les informations de l’application (appinventor) et renvoie un ordre qui fait clignoter la Led du pin 13. Malheureusement je n’arrive pas à connecter mon téléphone ou il ya un problème de programme .

Ici le programme sur arduino : #include <SoftwareSerial.h> SoftwareSerial Bluetooth(11, 10);//rxPin, txPin

void setup() { Bluetooth.begin(9600) ; Serial.begin(9600); pinMode(13, OUTPUT); } void loop () { if (Bluetooth.read() == "1"){ digitalWrite(13, HIGH); delay(1000); digitalWrite(13, LOW); } }

Et ici le programme sur appinventor :

*

+0 -0
Connectez-vous pour pouvoir poster un message.
Connexion

Pas encore membre ?

Créez un compte en une minute pour profiter pleinement de toutes les fonctionnalités de Zeste de Savoir. Ici, tout est gratuit et sans publicité.
Créer un compte