1.2 Seguro para instalar
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="";
}
}
}
Resumen
Arduino Bluetooth Controlled J es un software de Freeware en la categoría de Educación desarrollado por Uncia Robotics.
La última versión de Arduino Bluetooth Controlled J es 1.2, aparecido en 02/01/2025. Inicialmente fue agregado a nuestra base de datos en 02/01/2025.
Arduino Bluetooth Controlled J se ejecuta en los siguientes sistemas operativos: Android.
Los usuarios de Arduino Bluetooth Controlled J le dio una calificación de 4 fuera de 5 estrellas.
Últimas reseñas
![]() |
Ashampoo Background Remover
Ashampoo Background Remover: Schnell und Effizient für Objektextraktion |
![]() |
Ashampoo Burning Studio
Software de grabación de CD y DVD fácil de usar |
![]() |
IPTInstaller
IPTInstaller by HTC: Solución eficiente de instalación de software para dispositivos HTC. |
AnyMP4 DVD Converter for Mac
Conversión de DVD fluida y eficiente con AnyMP4 DVD Converter para Mac |
|
SQLRD SSRS Data Driven Automation
Generación de informes sin esfuerzo con la automatización basada en datos SQLRD SSRS |
|
![]() |
SupportApp
Atención al cliente eficiente y confiable con SupportApp de WDR Köln |
![]() |
UpdateStar Premium Edition
¡Mantener su software actualizado nunca ha sido tan fácil con UpdateStar Premium Edition! |
![]() |
Microsoft Edge
Un nuevo estándar en la navegación web |
![]() |
Google Chrome
Navegador web rápido y versátil |
![]() |
Microsoft Visual C++ 2015 Redistributable Package
¡Aumente el rendimiento de su sistema con el paquete redistribuible de Microsoft Visual C++ 2015! |
![]() |
Microsoft Visual C++ 2010 Redistributable
Componente esencial para ejecutar aplicaciones de Visual C++ |
![]() |
Microsoft OneDrive
Optimice la administración de archivos con Microsoft OneDrive |