Use APKPure App
Get Duino Joy old version APK for Android
joystick virtuel pour communiquer avec Arduino via le module Bluetooth
Duino Joy est simple joystick virtuel pour communiquer avec Arduino via le module Bluetooth
Voir l'exemple sur la façon d'utiliser au https://www.instructables.com/id/Simple-RC-Car-Arduino-Nano-HC-05/
***********************
Essai
***********************
// Connexion
// >>> Arduino Bluetooth
// D10 (comme RX) >>> Tx
// D11 (comme TX) >>> Rx
#include
SoftwareSerial Bluetooth (10, 11); // RX, TX
void setup() {
Serial.begin (19200); // Affichage à Arduino IDE Serial Monitor
bluetooth.begin (9600); // Communiquer avec le module Bluetooth
}
void loop () {
while (bluetooth.available ()) // attente des données de Bluetooth
{
char a = bluetooth.read (); // Lecture des données en tant que char de série du logiciel
Serial.print ( "Recieved:");
Serial.println (a); // données d'impression Serial Monitor
}
}
Last updated on Jan 29, 2020
Simple Virtual Joystick for Arduino with Bluetooth module
- Added Lao language
Telechargé par
Eduardo Antonio Valenzuela Esquer
Nécessite Android
Android 4.4+
Catégories
Signaler
Duino Joy
1.1 by LekPKD
Jan 29, 2020