mirror of
https://github.com/taigrr/adb.git
synced 2026-04-02 02:58:42 -07:00
Added Resolution type
This commit is contained in:
@@ -26,7 +26,7 @@ func main() {
|
||||
fmt.Printf("Dev `%s` is not authorized, authorize it to continue.\n", dev.SerialNo)
|
||||
continue
|
||||
}
|
||||
err := dev.GoHome(ctx)
|
||||
err := dev.Reboot(ctx)
|
||||
if err != nil {
|
||||
// handle error here
|
||||
fmt.Printf("Error: %v\n", err)
|
||||
|
||||
3
examples/tapRecorder/go.mod
Normal file
3
examples/tapRecorder/go.mod
Normal file
@@ -0,0 +1,3 @@
|
||||
module github.com/taigrr/adb/examples/tapRecorder
|
||||
|
||||
go 1.19
|
||||
45
examples/tapRecorder/main.go
Normal file
45
examples/tapRecorder/main.go
Normal file
@@ -0,0 +1,45 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/taigrr/adb"
|
||||
)
|
||||
|
||||
var command string
|
||||
|
||||
func init() {
|
||||
// TODO allow for any input to be used as the command
|
||||
command = "ls"
|
||||
}
|
||||
|
||||
func main() {
|
||||
ctx, cancel := context.WithTimeout(context.Background(), time.Second*10)
|
||||
defer cancel()
|
||||
devs, err := adb.Devices(ctx)
|
||||
if err != nil {
|
||||
fmt.Printf("Error enumerating devices: %v\n", err)
|
||||
return
|
||||
}
|
||||
for _, dev := range devs {
|
||||
if !dev.IsAuthorized {
|
||||
fmt.Printf("Dev `%s` is not authorized, authorize it to continue.\n", dev.SerialNo)
|
||||
continue
|
||||
}
|
||||
//w, h, err := dev.GetScreenResolution(ctx)
|
||||
//if err != nil {
|
||||
// // handle error here
|
||||
// fmt.Printf("Error: %v\n", err)
|
||||
//}
|
||||
fmt.Printf("Begin tapping on device %s now...\n", dev.SerialNo)
|
||||
t, err := dev.CaptureSequence(ctx)
|
||||
if err != nil {
|
||||
fmt.Printf("Error capturing sequence: %v\n", err)
|
||||
return
|
||||
}
|
||||
fmt.Println("Sequence captured, replaying now...")
|
||||
dev.ReplayTapSequence(context.TODO(), t)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user