williamfzc / pyminitouch

python wrapper of minitouch, for better experience
https://pyminitouch.readthedocs.io
MIT License
125 stars 25 forks source link

Sending recorded data, like minitouch. #10

Open instasck opened 5 years ago

instasck commented 5 years ago

I see only swipe and tap. Why not having regualr inputs as well like in minitouch ? I want to record touch events and repeat, what is the fastest way to implement it (I can do it..)

Thanks ! great work here .

williamfzc commented 5 years ago

image

minitouch only supports up/down/move/wait actually.

The fastest way is replaykit or something like that. And if you want to implement with pyminitouch, I think this is one of solutions.

This feature is cool and PR will be always welcome :)

instasck commented 5 years ago

@williamfzc I just reliazied that it a lot of work and the events are totally different ! The convertion table is not only one line to another, it can be multiple lines to one in minitouch. I think I will skip for now until I will find time.