1.2 An toàn để cài đặt
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="";
}
}
}
Tổng quan
Arduino Bluetooth Controlled J là một Phần mềm miễn phí phần mềm trong danh mục Giáo dục được phát triển bởi Uncia Robotics.
Phiên bản mới nhất của Arduino Bluetooth Controlled J là 1.2, phát hành vào ngày 02/01/2025. Vào lúc đầu, nó đã được thêm vào cơ sở dữ liệu của chúng tôi trên 02/01/2025.
Arduino Bluetooth Controlled J đã chạy trên hệ điều hành sau: Android.
Người sử dụng của Arduino Bluetooth Controlled J đánh giá xếp hạng 4 trong số 5 sao.
với phần mềm UpdateStar miễn phí.
Đánh giá mới nhất
![]() |
Ashampoo Burning Studio
Phần mềm ghi đĩa CD và DVD dễ sử dụng |
![]() |
Microsoft Visual C++ 2015 Redistributable Package
Tăng hiệu suất hệ thống của bạn với Microsoft Visual C++ 2015 Redistributable Package! |
![]() |
Nero Info
Luôn cập nhật thông tin với Nero Info! |
![]() |
ZipX
Nén tệp hiệu quả với phần mềm ZipX bằng WinX |
![]() |
Kaspersky Password Manager
Bảo mật mật khẩu của bạn với Kaspersky Password Manager! |
![]() |
Wondershare Filmora
Chuyển đổi video của bạn thành kiệt tác điện ảnh với Wondershare Filmora! |
![]() |
UpdateStar Premium Edition
Giữ cho phần mềm của bạn được cập nhật chưa bao giờ dễ dàng hơn với UpdateStar Premium Edition! |
![]() |
Microsoft Edge
Một tiêu chuẩn mới trong duyệt web |
![]() |
Google Chrome
Trình duyệt web nhanh và linh hoạt |
![]() |
Microsoft Visual C++ 2015 Redistributable Package
Tăng hiệu suất hệ thống của bạn với Microsoft Visual C++ 2015 Redistributable Package! |
![]() |
Microsoft Visual C++ 2010 Redistributable
Thành phần cần thiết để chạy các ứng dụng Visual C++ |
![]() |
Microsoft OneDrive
Hợp lý hóa việc quản lý tệp của bạn với Microsoft OneDrive |