تطبيق التحكم بالاجهزة عن بعد مع الشرح المفصل Application icon

تطبيق التحكم بالاجهزة عن بعد مع الشرح المفصل 4.0

4.9 MB / 0+ Downloads / Rating 1.0 - 1 reviews


See previous versions

تطبيق التحكم بالاجهزة عن بعد مع الشرح المفصل, developed and published by musa almusawy, has released its latest version, 4.0, on 2018-05-17. This app falls under the Communication category on the Google Play Store and has achieved over 1 installs. It currently holds an overall rating of 1.0, based on 1 reviews.

تطبيق التحكم بالاجهزة عن بعد مع الشرح المفصل APK available on this page is compatible with all Android devices that meet the required specifications (Android 4.0+). 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.bluetooth_cone

Updated: 7 years ago

Developer Name: musa almusawy

Category: Communication

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing تطبيق التحكم بالاجهزة عن بعد مع الشرح المفصل 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

1.0
Total 1 reviews

About this app

تطبيق يتحكم بأجهزة المنزل عن بعد بواسطة البلوتوث وجهاز arduino مع شرح مفصل على قناتي على اليوتيوب للنسخة القديمة وهذة النسخة الحديثة من البرنامج تم ضافة أثنان من الازار وتطوير واجهة المستخدم لتتناسب مع كل الاجهزة .
كود arduino

#include
SoftwareSerial BT(1, 0);

void setup()
{
// set digital pin to control as an output
pinMode(13, OUTPUT);
pinMode(4, OUTPUT);
// set the data rate for the SoftwareSerial port
BT.begin(9600);
// Send test message to other device
BT.println("MUSA ALMUSAWY");
}
char a; // stores incoming character from other device
void loop()
{-
if (BT.available())
// if text arrived in from BT serial...
{
a=(BT.read());
if (a=='1')
{
digitalWrite(13, HIGH);
BT.println("LED1 on");
}
if (a=='2')
{

digitalWrite(13, LOW);
BT.println("LED1 off");
}
if (a=='4')
{

digitalWrite(4, LOW);
BT.println("LED2 off");
}
if (a=='3')
{

digitalWrite(4, HIGH);
BT.println("LED2 ON");
}

if (a=='?')
{
BT.println("Send '1' to turn LED on");
BT.println("Send '2' to turn LED on");
BT.println("Send '3' to turn LED on");
BT.println("Send '4' to turn LED on");
}
// you can add more "if" statements with other characters to add more commands
}}

New features

تطبيق التحكم بالاجهزة عن بعد مع شرح الكود وطريقة الربط

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.