1.2 Sicher
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="";
}
}
}
Übersicht
Arduino Bluetooth Controlled J ist eine Freeware-Software aus der Kategorie Bildung & Wissen, die von Uncia Robotics entwickelt wird.
Die neueste Version von Arduino Bluetooth Controlled J ist 1.2, veröffentlicht am 02.01.2025. Die erste Version wurde unserer Datenbank am 02.01.2025 hinzugefügt.
Arduino Bluetooth Controlled J läuft auf folgenden Betriebssystemen: Android.
Die Nutzer haben Arduino Bluetooth Controlled J eine Bewertung von 4 von 5 Sternen gegeben.
Neueste Reviews
![]() |
Ashampoo Burning Studio
Einfach zu bedienende CD- und DVD-Brennsoftware |
![]() |
Softdiv PDF Split and Merge
Mühelose PDF-Verwaltung mit Softdiv PDF Split and Merge |
![]() |
1AVCenter Licensed to Registered User
1AVCenter: All-in-One-Multimedia-Lösung |
BitTorrent
Effizientes Filesharing mit BitTorrent |
|
![]() |
Stellarium
Entdecken Sie die Wunder des Nachthimmels mit Stellarium! |
![]() |
ROBLOX Studio for user
Lassen Sie Ihrer Kreativität freien Lauf mit ROBLOX Studio! |
![]() |
UpdateStar Premium Edition
Mit der UpdateStar Premium Edition war es noch nie so einfach, Ihre Software auf dem neuesten Stand zu halten! |
![]() |
Microsoft Edge
Ein neuer Standard beim Surfen im Internet |
![]() |
Google Chrome
Schneller und vielseitiger Webbrowser |
![]() |
Microsoft Visual C++ 2015 Redistributable Package
Steigern Sie Ihre Systemleistung mit Microsoft Visual C++ 2015 Redistributable Package! |
![]() |
Microsoft Visual C++ 2010 Redistributable
Wesentliche Komponente zum Ausführen von Visual C++-Anwendungen |
![]() |
Microsoft OneDrive
Optimieren Sie Ihre Dateiverwaltung mit Microsoft OneDrive |