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
251 B

<?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)]);