I have experience in Android , just started in Tizen. I know in Android for click/touch screen following command works.
adb shell input tap x y
Now in Tizen input command is not available.
I found fMBT project's tizen-agent , through which we can call:
sendHwFingerDown(x, y, button)
I want to know If there is any SDB or SDB Shell command for the same , to send events like click , touch up , touch down , drag , volume up , volume down , back , menu , power etc to the Tizen Device.
Thanks!
I was looking for this as well when I stumbled into the shell of my tizen watch. By running
compgen -c | grep "input"
to list all available commands and filter it to only display input ones I found there is a command calledinput_generator_tool
which can be used for example as:or
7 years later, hope this answers your question.