Discover

Topics

Jarvis Bluetooth

Jarvis Bluetooth APK

Jarvis Bluetooth APK

1.1 FreeICE Kiwi ⇣ Download APK (5.62 MB)

an application that allows you to communicate your phone circuit you have installed

What's Jarvis Bluetooth APK?

Jarvis Bluetooth is a app for Android, It's developed by ICE Kiwi author.
First released on google play in 54 years ago and latest version released in 7 years ago.
This app has 11.8K download times on Google play and rated as 3.90 stars with 51 rated times.
This product is an app in Productivity category. More infomartion of Jarvis Bluetooth on google play
Arduino, PIC gibi ve mikrodenetleyicilerle kurmuş olduğunuz devreleri Android cihazınızla Bluetooth protokolü aracılığıyla iletişim kurmasını sağlayan bir uygulamadır. Aç ve kapat komutları için 1-0 kodları yollar. Ev, işyeri aydınlatması, elektronik cihaz kontrolü gibi alanlarda kullanılabilir. Otomatik Kapı açmak gibi güvenlik gereken yerlerde kullanılmak isteniyorsa devrenizde kullandığınız bluetooth modülünün şifresini değiştirmeniz önerilir.
Örnek Arduino Uygulaması aşağıdadır.


char veri;
void setup() {
Serial.begin(9600);
pinMode(13,OUTPUT);
Serial.println("Jarvis BLUETOOTH Uzaktan Erisim Sistemi");
}

void loop() {
if (Serial.available()>0){

veri=Serial.read();

if(veri=='1'){
digitalWrite(13,HIGH);
}

if (veri=='0'){
digitalWrite(13,LOW);
}
}
delay(100);
}