Arduino Bluetooth Controlled J

Arduino Bluetooth Controlled J

Uncia Robotics
Jan 19, 2021
  • 2.5 MB

    فائل سائز

  • Android 4.1+

    Android OS

About Arduino Bluetooth Controlled J

Control your robot using Virtual Joystick, Buttons or Accelerometer.

Android App Logic

There are 5 buttons on the screen namely black, red, green, yellow, blue.

Black button is joystick, same like real Joystick controller - Joystick provide 2 values

1. Angle [ 0 - 359 ]

2. Strength [ 0 - 100 ]

Rest of the buttons (red, green, yellow, blue) are normal buttons, by default there values are set to 0. You can changes the values by going to Menu > Setting.

Joystick, red, green, yellow, blue button values will be visible on the left and right of < Sending Data > in real time.

Combination of these all buttons (data) is sent through bluetooth

1. By default seven digit number is set 0000000

2. First three digit represent Angle

3. Second three digit represent Strength

4. Last one digit represent the values of button blue, green, red, yellow

Example: the seven digit number is 2700891, So

1. First three digit represent Angle i.e : 270

2. Second three digit represent Strength i.e : 089

3. Last one digit represent the values of button blue, green, red, yellow i.e : 1

Arduino Sketch (copy paste this code to see the values)

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="";

}

}

}

مزید دکھائیں

What's new in the latest 1.2

Last updated on 2021-01-20
Bugfix in Joystick mode.
مزید دکھائیں

ویڈیوز اور اسکرین شاٹس

  • Arduino Bluetooth Controlled J پوسٹر
  • Arduino Bluetooth Controlled J اسکرین شاٹ 1
  • Arduino Bluetooth Controlled J اسکرین شاٹ 2
  • Arduino Bluetooth Controlled J اسکرین شاٹ 3
  • Arduino Bluetooth Controlled J اسکرین شاٹ 4
  • Arduino Bluetooth Controlled J اسکرین شاٹ 5
  • Arduino Bluetooth Controlled J اسکرین شاٹ 6
  • Arduino Bluetooth Controlled J اسکرین شاٹ 7

کے پرانے ورژن Arduino Bluetooth Controlled J

APKPure آئیکن

APKPure ایپکےذریعےانتہائی تیزاورمحفوظڈاؤنلوڈنگ

Android پر XAPK/APK فائلیںانسٹالکرنےکےلیےایککلککریں!

ڈاؤن لوڈ کریں APKPure
thank icon
ہم آپ کے صارف کے تجربے کو بہتر بنانے کے لیے اس ویب سائٹ پر کوکیز اور دیگر ٹیکنالوجیز کا استعمال کرتے ہیں۔
اس صفحے پر کسی بھی لنک پر کلک کرکے آپ ہماری رازداری کی پالیسی اور کوکیز پالیسی پر متفق ہو رہے ہیں۔
مزید جانیں