0

I have created an android application for face recognition and now I want to make a feature so that I can vibrate my gear s2 device whenever new face is detected.

Can you please let me know how we can communicate with Tizen and android os. Also, how we can send the alert or how we can vibrate the gear device connected to android devices.

I am very new to Tizen OS development so please help on this.

Puneet
  • 11
  • 3

1 Answers1

0

Tizen-Android Communication:

There is a Protocol called Samsung Accessory Protocol to communicate and data transfer between Samsung Gear device and Android Smart phone. An SDK is provided to develop these kind of application called Accessory SDK. Some sample apps are given with the SDK. You can use those to develop your app.

I will suggest you to follow this answer How to integrate Samsung Gear Steps in android Application? to get idea the communication between Tizen Gear and Android phone.

enter image description here enter image description here

enter image description here enter image description here

Vibration in Tizen:

Tizen provides Vibration in web app.

function singleVibration() {
     /* Vibrate for 2 seconds */
     navigator.vibrate(2000);
 }
Iqbal hossain
  • 1,778
  • 3
  • 17
  • 24