Duino Joy 1.1 Icon

Duino Joy

LekPKD Education
0
0 Ratings
3K+
Downloads
1.1
version
Jan 29, 2020
release date
1.3 MB
file size
Free
Download

What's New

Simple Virtual Joystick for Arduino with Bluetooth module

- Added Lao language

About Duino Joy Android App

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
}
}

Other Information:

Package Name:
Requires Android:
Android 4.4+
Other Sources:

Download

This version of Duino Joy Android App comes with one universal variant which will work on all the Android devices.

Variant
2
(Jan 29, 2020)
Architecture
universal
Minimum OS
Android 4.4+
Screen DPI
nodpi (all screens)

All Versions

If you are looking to download other versions of Duino Joy Android App, We have 2 versions in our database. Please select one of them below to download.

Loading..