Duino Joy Application icon

Duino Joy 1.1

1.1 MB / 10+ Downloads / Rating 4.0 - 5 reviews


See previous versions

Duino Joy, developed and published by LekPKD, has released its latest version, 1.1, on 2020-05-08. This app falls under the Education category on the Google Play Store and has achieved over 1000 installs. It currently holds an overall rating of 4.0, based on 5 reviews.

Duino Joy APK available on this page is compatible with all Android devices that meet the required specifications (Android 4.4+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: com.lekpkd.duinojoy

Updated: 5 years ago

Developer Name: LekPKD

Category: Education

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Duino Joy on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

App Rating

4.0
Total 5 reviews

Reviews

5 ★, on 2018-08-18
nice

Previous Versions

Duino Joy 1.1
2020-05-08 / 1.1 MB / Android 4.4+

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

New features

Simple Virtual Joystick for Arduino with Bluetooth module
- Added Lao language

App Permissions

Allows applications to connect to paired bluetooth devices.