1.2 Biztonságos telepítése
The Android application presents a user interface with five buttons, specifically designated as black, red, green, yellow, and blue.
The black button functions as a joystick, emulating a traditional joystick controller. It provides two key values:
- Angle: Ranges from 0 to 359
- Strength: Ranges from 0 to 100
The remaining buttons (red, green, yellow, blue) are standard buttons, initially set to a value of 0. Users have the option to adjust these values through the Menu > Settings.
Real-time updates of the values for the joystick and the respective buttons are displayed on either side of the Sending Data section.
The combination of values from all buttons is transmitted via Bluetooth in the following manner:
- The default seven-digit number is initialized as 0000000.
- The first three digits represent the angle.
- The next three digits account for strength.
- The final digit indicates the status of the buttons blue, green, red, and yellow.
For instance, if the seven-digit number is 2700891:
- The first three digits denote the angle: 270
- The following three digits signify strength: 089
- The last digit reflects the values of the buttons: 1
An Arduino sketch is provided for users who wish to verify these outputs:
void setup() {
Serial.begin(9600);
}
void loop() {
if(Serial.available()>0)
{
String value = Serial.readStringUntil('#');
if(value.length()==7)
{
String angle = value.substring(0, 3);
String strength = value.substring(3, 6);
String button = value.substring(6, 8);
Serial.print("angle: ");Serial.print(angle);Serial.print('\t');
Serial.print("strength: ");Serial.print(strength);Serial.print('\t');
Serial.print("button: ");Serial.print(button);Serial.println("");
Serial.flush();
value="";
}
}
}
– Áttekintés
Arduino Bluetooth Controlled J Ingyenes szoftver szoftvere a kategória Oktatás fejlett mellett Uncia Robotics-ban.
A legutolsó változat-ból Arduino Bluetooth Controlled J a(z) 1.2, 2025. 01. 02. megjelent. Kezdetben volt hozzá, hogy az adatbázisunkban a 2025. 01. 02..
a(z) Arduino Bluetooth Controlled J a következő operációs rendszereken fut: Android.
Felhasználók Arduino Bluetooth Controlled J 4 ki 5 csillagos minősítést adott neki.
az ingyenes UpdateStar-ral.
Legutóbbi visszajelzések
![]() |
Ashampoo Burning Studio
Könnyen használható CD- és DVD-író szoftver |
![]() |
Microsoft Visual C++ 2015 Redistributable Package
Növelje a rendszer teljesítményét a Microsoft Visual C++ 2015 Redistributable Package segítségével! |
![]() |
Nero Info
Legyen tájékozott a Nero Info segítségével! |
![]() |
ZipX
Hatékony fájltömörítés ZipX by WinX Software segítségével |
![]() |
Kaspersky Password Manager
Védje jelszavait a Kaspersky Password Manager segítségével! |
![]() |
Wondershare Filmora
Alakítsa át videóit filmes remekművekké a Wondershare Filmora segítségével! |
![]() |
UpdateStar Premium Edition
A szoftver naprakészen tartása még soha nem volt ilyen egyszerű az UpdateStar Premium Edition segítségével! |
![]() |
Microsoft Edge
Új szabvány a webböngészésben |
![]() |
Google Chrome
Gyors és sokoldalú webböngésző |
![]() |
Microsoft Visual C++ 2015 Redistributable Package
Növelje a rendszer teljesítményét a Microsoft Visual C++ 2015 Redistributable Package segítségével! |
![]() |
Microsoft Visual C++ 2010 Redistributable
Alapvető összetevő Visual C++ alkalmazások futtatásához |
![]() |
Microsoft OneDrive
Egyszerűsítse fájlkezelését a Microsoft OneDrive-val |