Duino Joy APK

Duino Joy  Icon
0/5
0 Ratings
Developer
LekPKD
Current Version
1.1
Date Published
File Size
1.3 MB
Package ID
com.lekpkd.duinojoy
Price
$ 0.00
Downloads
269+
Category
Android Apps
Genre
Education

APK Version History

Version
1.1 (2)
Architecture
universal
Release Date
January 29, 2020
Requirement
Android 4.4+
Version
1.0 (1)
Architecture
universal
Release Date
January 04, 2020
Requirement
Android 4.4+
  • Duino Joy Screenshot
  • Duino Joy Screenshot

About Radio FM 90s

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

What's New in this version

Simple Virtual Joystick for Arduino with Bluetooth module

- Added Lao language