Arduino Voice Control Application icon

Arduino Voice Control 1.2

2.8 MB / 50K+ Downloads / Rating 3.9 - 170 reviews


See previous versions

Arduino Voice Control, developed and published by Cem PEHLİVAN, has released its latest version, 1.2, on 2018-02-28. This app falls under the Tools category on the Google Play Store and has achieved over 50000 installs. It currently holds an overall rating of 3.9, based on 170 reviews.

Arduino Voice Control APK available on this page is compatible with all Android devices that meet the required specifications (Android 2.1+). 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: appinventor.ai_cempehlivan92.Arduino_Sesli_Kontrol

Updated: 7 years ago

Developer Name: Cem PEHLİVAN

Category: Tools

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Arduino Voice Control 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

3.9
Total 170 reviews

Reviews

5 ★, on 2020-07-02
Can it connect to nodemcu... Via wifi... I will appreciate very much if you modify it... And also a trigger command will make it better..🙂

4 ★, on 2019-02-13
Great app. works perfect. Is there a way to voice activate it instead of pressing the button on screen ? so it could be totally hands free once Bluetooth is paired.

5 ★, on 2020-02-09
Good job! Used the app and works fine! Also thank you for add-free app! Hope you will make the app fully voice command based and hand free operation once the Bluetooth is connected. Wish you good luck!

4 ★, on 2018-09-27
Could anyone tell me what is the end of line character for the code to be written in Arduino using this app?

4 ★, on 2019-04-30
Just like the question of your other app user, is there a way to voice activate this app rather than pressing the button? Thank you.

5 ★, on 2018-11-24
Very good app But further the language option only shows the initials of language , language name can be specified

Previous Versions

Arduino Voice Control 1.2
2018-02-28 / 2.8 MB / Android 2.1+

About this app

Bluetooth üzerinden Arduino'nuza sesli komutlar gönderin, işlemi tamamlayın ve Serial.print ile geri yanıt verin. Verdiğiniz yanıtı mobil cihazınızdan sesli olarak alacaksınız!

Örnek Arduino Kodu (Example Arduino Code):


String readString = "";
#define led 13 //

void setup() {
pinMode(led, OUTPUT);
digitalWrite(led, LOW);
Serial.begin(9600);
}

void loop() {
while (Serial.available()) {
char c = (char)Serial.read();
readString += c;
}

if (readString.length() > 0) {

if (readString == "aç") {
digitalWrite(led, HIGH);
Serial.print("açıldı");
}
else if (readString == "kapat") {
digitalWrite(led, LOW);
Serial.print("kapandı");
}
else if (readString == "ev kaç derece") {
//derece hesaplama işlemleri vb.
Serial.print("ev şuan 21 derece");
}
else if (readString == "İngilizce konuş") {
Serial.print("Hi, how are you?");
}
else {
Serial.print("Seni anlayamadım.");
}


readString = "";
}

delay(100);
}

New features

Arduino'nuza sesli komut gönderebildiğiniz gibi sesli yanıt alabileceksiniz! Arduino'nuza sorular sorun ve gelen cevabı sesli dinleyin!

You will receive an audio response as you can send voice commands to your Arduino! Ask your Arduino and listen to the answer!

App Permissions

Allows applications to connect to paired bluetooth devices.
Allows applications to open network sockets.
Allows applications to access information about Wi-Fi networks.
Allows applications to discover and pair bluetooth devices.
Allows applications to access information about networks.