Arduino Bluetooth Sesle Kontrol Application icon

Arduino Bluetooth Sesle Kontrol Arduino

3.1 MB / 0+ Downloads / Rating 5.0 - 1 reviews


See previous versions

Arduino Bluetooth Sesle Kontrol, developed and published by Ctrl Bizde, has released its latest version, Arduino, on 2020-07-24. This app falls under the Tools category on the Google Play Store and has achieved over 10 installs. It currently holds an overall rating of 5.0, based on 1 reviews.

Arduino Bluetooth Sesle Kontrol 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_ctrlbizdee.ArduinoSesKontrolBluetooth

Updated: 5 years ago

Developer Name: Ctrl Bizde

Category: Tools

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Arduino Bluetooth Sesle Kontrol 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.

Previous Versions

Arduino Bluetooth Sesle Kontrol Arduino
2020-07-24 / 3.1 MB / Android 2.1+

About this app

Arduino uygulamalarınızı bluetooth modülü aracılığıyla sesli komutlarla yönetmek için geliştirilmiştir. Devreyi tamamla, uygulamayı çalıştır, bluetooth bağlantını aç, bluetooth cihazına bağlan ve Arduino uygulamanı yönetmeye başla! Örnek kodlar ve Arduino devresi için sitemizi ziyaret edin

Örnek Kod:
#define ledKirmizi 3 //ledimizi tanımladık
String deger = "";

void setup() {
pinMode(ledKirmizi, OUTPUT);
Serial.begin(9600);
}

void loop() {
// eğer gelen veri alsa bu veriyi alıyoruz.
while (Serial.available()) {
char c = (char)Serial.read();
deger += c;
}

if (deger.length() > 0) {

if (deger == "aç")
{
digitalWrite(ledKirmizi,HIGH);
}
if (deger == "kapat") {
digitalWrite(ledKirmizi,LOW);
}
deger = "";
}
delay(100);
}

New features

Arduino'ya sesle komut gönderebilirsiniz.
Telefonunuzun bluetooth bağlanızı açın ve bluetooth cihazına bağlanın.

App Permissions

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