Registering new motion gestures in Tizen for wearable

75 Views Asked by At

Got a bit of a last minute project for uni. I'm trying to develop an application for a Samsung wearable where you can use motion gestures to interact with IoT devices(like lights and music).

I'm looking at this sample (https://github.com/Samsung/Tizen-CSharp-Samples/tree/master/Wearable/Xamarin.Forms/GestureSensor) using gesture detector. Not sure how to register new motion gestures. Any help would be much appreciated.

1

There are 1 best solutions below

2
RexxarYrelChen On

Do you mean that you want to make a new gesture? But there are specific types of gesture. You can use "face down, pick up and wrist up" gesture in Tizen C# app. (https://samsung.github.io/TizenFX/stable/api/Tizen.Sensor.Sensor.html)

If you develop with Tizen native app, there are more types of gestures such as shaking, tilting, and snapping. (https://docs.tizen.org/application/native/api/wearable/5.0/group__CAPI__CONTEXT__GESTURE__MODULE.html#ga260f6752298cdd6c8235fd2922c147bf)

If these are not enough, you should detect them directly using an acceleration sensor or a gyroscope sensor.