You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
251 B
12 lines
251 B
|
5 years ago
|
<?php
|
||
|
|
|
||
|
|
$axiosRequest = json_decode(file_get_contents('php://input'));
|
||
|
|
|
||
|
|
include_once 'ADBService.php';
|
||
|
|
const HOST = '192.168.1.132';
|
||
|
|
|
||
|
|
$service = new ADBService(HOST);
|
||
|
|
$service->connect();
|
||
|
|
|
||
|
|
echo json_encode([$service->sendKey($axiosRequest->keyCode)]);
|