homekit/localwebsite/classes/GPIORelaydClient.php
2022-05-21 01:45:56 +03:00

18 lines
336 B
PHP

<?php
class GPIORelaydClient extends MySimpleSocketClient {
const STATUS_ON = 'on';
const STATUS_OFF = 'off';
public function setStatus(string $status) {
$this->send($status);
return $this->recv();
}
public function getStatus() {
$this->send('get');
return $this->recv();
}
}