This is my first time trying to automate an android game and using adb. I would like to send tap commands to my phone, but it seems like they are too slow. I've seen that some solutions to this are to send either raw bytes, or to use get/sendevents, but I'm having trouble implementing them. Here is the relevant code:
if detect_tile(c1):
device.shell("input touchscreen tap 90 943")
What would you suggest for implementation?
note: my device is not rooted