Duino Joy icon

Duino Joy

★★★★★
★★★★★
(4.17/5)

1.1Free2 years ago

Download Duino Joy APK latest version Free for Android

Version 1.1
Update
Size 1.15 MB (1,201,916 bytes)
Developer LekPKD
Category Apps, Education
Package Name com.lekpkd.duinojoy
OS 4.4 and up

Duino Joy APPLICATION description

virtual joystick to communicate with Arduino via bluetooth module
Duino Joy is simple virtual joystick to communicate with arduino via bluetooth module

View Example on how to use at https://www.instructables.com/id/Simple-RC-Car-Arduino-Nano-HC-05/

***********************
Testing
***********************

// Connection
// Arduino >>> bluetooth
// D10 (as RX) >>> Tx
// D11 (as TX) >>> Rx

#include

SoftwareSerial bluetooth(10, 11); // RX, TX

void setup() {
Serial.begin(19200); // Display to Arduino IDE Serial Monitor
bluetooth.begin(9600); // Communicate with Bluetooth module
}

void loop() {
while(bluetooth.available()) // Wait for data from bluetooth
{
char a = bluetooth.read(); // Read Data as Char from Software Serial
Serial.print("Recieved: ");
Serial.println(a); // Print data to Serial Monitor
}
}
↓ Read more
Duino Joy screen 1 Duino Joy screen 2