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