The batteries of my nvidia shield tv sucks so i made a web remote for linux with adb installed
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.

11 lines
241 B

5 years ago
<?php
$axiosRequest = json_decode(file_get_contents('php://input'));
include_once 'ADBService.php';
$service = new ADBService(ADBService::DEFAULT_HOST);
5 years ago
$service->connect();
echo json_encode([$service->sendKey($axiosRequest->keyCode)]);